about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/yalesmartalarmclient/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/yalesmartalarmclient/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/yalesmartalarmclient/default.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/yalesmartalarmclient/default.nix b/nixpkgs/pkgs/development/python-modules/yalesmartalarmclient/default.nix
index a4ca97e27ac0..ce0dc34c0b40 100644
--- a/nixpkgs/pkgs/development/python-modules/yalesmartalarmclient/default.nix
+++ b/nixpkgs/pkgs/development/python-modules/yalesmartalarmclient/default.nix
@@ -1,4 +1,5 @@
 { lib
+, backoff
 , buildPythonPackage
 , fetchFromGitHub
 , requests
@@ -6,16 +7,19 @@
 
 buildPythonPackage rec {
   pname = "yalesmartalarmclient";
-  version = "0.3.1";
+  version = "0.3.4";
 
   src = fetchFromGitHub {
     owner = "domwillcode";
     repo = "yale-smart-alarm-client";
     rev = "v${version}";
-    sha256 = "0fscp9n66h8a8khvjs2rjgm95xsdckpknadnyxqdmhw3hlj0aw6h";
+    sha256 = "sha256-waWi3QnH7xQZh5iYklISCvfAaBdH5k+Y10huZuTNlSc=";
   };
 
-  propagatedBuildInputs = [ requests ];
+  propagatedBuildInputs = [
+    backoff
+    requests
+  ];
 
   # Project has no tests
   doCheck = false;
@@ -23,7 +27,7 @@ buildPythonPackage rec {
 
   meta = with lib; {
     description = "Python module to interface with Yale Smart Alarm Systems";
-    homepage = "https://github.com/mampfes/python-wiffi";
+    homepage = "https://github.com/domwillcode/yale-smart-alarm-client";
     license = with licenses; [ asl20 ];
     maintainers = with maintainers; [ fab ];
   };