summary refs log tree commit diff
path: root/pkgs/development/python-modules/pydaikin
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-07-02 11:08:54 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-07-02 11:08:54 +0200
commit008615ed74e19f9fd1db97686dc5f9fa090b5c72 (patch)
tree8ca77f980d8e4cc2b3d1dd4bf312277427202727 /pkgs/development/python-modules/pydaikin
parent752035e0788f0f50ae1e2ddb338bdef9b3ba92f7 (diff)
downloadnixpkgs-008615ed74e19f9fd1db97686dc5f9fa090b5c72.tar
nixpkgs-008615ed74e19f9fd1db97686dc5f9fa090b5c72.tar.gz
nixpkgs-008615ed74e19f9fd1db97686dc5f9fa090b5c72.tar.bz2
nixpkgs-008615ed74e19f9fd1db97686dc5f9fa090b5c72.tar.lz
nixpkgs-008615ed74e19f9fd1db97686dc5f9fa090b5c72.tar.xz
nixpkgs-008615ed74e19f9fd1db97686dc5f9fa090b5c72.tar.zst
nixpkgs-008615ed74e19f9fd1db97686dc5f9fa090b5c72.zip
python3Packages.pydaikin: 2.4.3 -> 2.4.4
Diffstat (limited to 'pkgs/development/python-modules/pydaikin')
-rw-r--r--pkgs/development/python-modules/pydaikin/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/pydaikin/default.nix b/pkgs/development/python-modules/pydaikin/default.nix
index 9b2eda85abe..5eefe5ade5e 100644
--- a/pkgs/development/python-modules/pydaikin/default.nix
+++ b/pkgs/development/python-modules/pydaikin/default.nix
@@ -12,14 +12,14 @@
 
 buildPythonPackage rec {
   pname = "pydaikin";
-  version = "2.4.3";
+  version = "2.4.4";
   disabled = pythonOlder "3.6";
 
   src = fetchFromBitbucket {
     owner = "mustang51";
     repo = pname;
     rev = "v${version}";
-    sha256 = "0i013ma2fs6an3izak6zbs9lbr4l7b5x54d0xagw6gqf5n8dsclq";
+    sha256 = "sha256-G7SShq2zjd9KGM7t1KsAMehqm2onB5cYdcOO3k8Sb30=";
   };
 
   propagatedBuildInputs = [
@@ -28,7 +28,7 @@ buildPythonPackage rec {
     urllib3
   ];
 
-  # while they have tests, they do not run them in their CI and they fail as of 2.4.3
+  # while they have tests, they do not run them in their CI and they fail as of 2.4.4
   # AttributeError: 'DaikinBRP069' object has no attribute 'last_hour_cool_energy_consumption'
   doCheck = false;