summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-06-18 12:21:07 +0200
committerGitHub <noreply@github.com>2021-06-18 12:21:07 +0200
commite73e145846279b199f3cd56cc65ec8e0704b77dd (patch)
treebb945ed0407f6f5eafdc85d79d174069ff5da935
parent325bafc1da83cdd93e8b9e4a26b0bc8fad83ab3f (diff)
parent6afc384f86c701f057e6eb5d4bbfcb171bd649c2 (diff)
downloadnixpkgs-e73e145846279b199f3cd56cc65ec8e0704b77dd.tar
nixpkgs-e73e145846279b199f3cd56cc65ec8e0704b77dd.tar.gz
nixpkgs-e73e145846279b199f3cd56cc65ec8e0704b77dd.tar.bz2
nixpkgs-e73e145846279b199f3cd56cc65ec8e0704b77dd.tar.lz
nixpkgs-e73e145846279b199f3cd56cc65ec8e0704b77dd.tar.xz
nixpkgs-e73e145846279b199f3cd56cc65ec8e0704b77dd.tar.zst
nixpkgs-e73e145846279b199f3cd56cc65ec8e0704b77dd.zip
Merge pull request #127267 from fabaff/bump-pydaikin
python3Packages.pydaikin: 2.4.2 -> 2.4.3
-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 fbb205bb9f7..9b2eda85abe 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.2";
+  version = "2.4.3";
   disabled = pythonOlder "3.6";
 
   src = fetchFromBitbucket {
     owner = "mustang51";
     repo = pname;
     rev = "v${version}";
-    sha256 = "13cslszjhd1x7j0ja0n0wpy62hb2sdmkrmjl3qhwqfggps2w2wy1";
+    sha256 = "0i013ma2fs6an3izak6zbs9lbr4l7b5x54d0xagw6gqf5n8dsclq";
   };
 
   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.2
+  # while they have tests, they do not run them in their CI and they fail as of 2.4.3
   # AttributeError: 'DaikinBRP069' object has no attribute 'last_hour_cool_energy_consumption'
   doCheck = false;