about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-02-01 22:53:19 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-02-02 04:38:15 +0100
commitc0156b1cc8075a6e0361848d5f04b9867bc44e57 (patch)
tree8e7387efed01fcc7be23d571bafa3e9e214b0cbe
parent83e7b31732033552ba15b666e3681c164933f7ea (diff)
python3Packages.axis: 44 -> 46
https://github.com/Kane610/axis/releases/tag/v45
https://github.com/Kane610/axis/releases/tag/v46
-rw-r--r--pkgs/development/python-modules/axis/default.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/axis/default.nix b/pkgs/development/python-modules/axis/default.nix
index b926a1abc25be..e09a1fa7d4bc9 100644
--- a/pkgs/development/python-modules/axis/default.nix
+++ b/pkgs/development/python-modules/axis/default.nix
@@ -1,26 +1,31 @@
 { lib
+, async-timeout
 , attrs
 , buildPythonPackage
 , fetchFromGitHub
 , httpx
+, orjson
 , packaging
 , xmltodict
 }:
 
 buildPythonPackage rec {
   pname = "axis";
-  version = "44";
+  version = "46";
+  format = "setuptools";
 
   src = fetchFromGitHub {
     owner = "Kane610";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-GC8GiDP/QHU+8swe60VFPRx8kSMMHuXjIPEKCja8HPE=";
+    hash = "sha256-alhezwRPag+6JoC4zbusWdxFyZQ2dZl04Uj1PkiN4qo=";
   };
 
   propagatedBuildInputs = [
+    async-timeout
     attrs
     httpx
+    orjson
     packaging
     xmltodict
   ];
@@ -32,6 +37,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "Python library for communicating with devices from Axis Communications";
     homepage = "https://github.com/Kane610/axis";
+    changelog = "https://github.com/Kane610/axis/releases/tag/v${version}";
     license = with licenses; [ mit ];
     maintainers = with maintainers; [ fab ];
   };