about summary refs log tree commit diff
path: root/pkgs/development/python-modules/plugwise
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-05-07 00:14:28 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2021-05-10 20:53:44 +0200
commita8a2a2362b75750335687b3d9c4f1af6a744461b (patch)
tree7ef3ee07bf61713e5a5c8fcfe080ab61ba40b085 /pkgs/development/python-modules/plugwise
parentc9fb926b3db4766ee85eb4a6441f7913a785b11e (diff)
python3Packages.plugwise: 0.9.3 -> 0.9.4
Diffstat (limited to 'pkgs/development/python-modules/plugwise')
-rw-r--r--pkgs/development/python-modules/plugwise/default.nix23
1 files changed, 11 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/plugwise/default.nix b/pkgs/development/python-modules/plugwise/default.nix
index 289f1871f338f..d62c2e8bb72bc 100644
--- a/pkgs/development/python-modules/plugwise/default.nix
+++ b/pkgs/development/python-modules/plugwise/default.nix
@@ -1,31 +1,31 @@
 { lib
-, buildPythonPackage
-, fetchFromGitHub
 , aiohttp
 , async-timeout
+, buildPythonPackage
 , crcmod
 , defusedxml
-, pyserial
-, pytz
-, python-dateutil
-, semver
+, fetchFromGitHub
 , jsonpickle
+, munch
 , mypy
+, pyserial
 , pytest-aiohttp
 , pytest-asyncio
-, pytest-cov
 , pytestCheckHook
+, python-dateutil
+, pytz
+, semver
 }:
 
 buildPythonPackage rec {
   pname = "plugwise";
-  version = "0.9.3";
+  version = "0.9.4";
 
   src = fetchFromGitHub {
     owner = pname;
     repo = "python-plugwise";
     rev = version;
-    sha256 = "sha256-MZ4R55vGUyWmR0Md83eNerzsgtYMch1vfQ3sqbm12bM=";
+    sha256 = "sha256-5r+Xe3EKLjuR7mPGEPOKzhE7G6OzNEClf847Px9VdWU=";
   };
 
   propagatedBuildInputs = [
@@ -33,9 +33,10 @@ buildPythonPackage rec {
     async-timeout
     crcmod
     defusedxml
+    munch
     pyserial
-    pytz
     python-dateutil
+    pytz
     semver
   ];
 
@@ -44,8 +45,6 @@ buildPythonPackage rec {
     mypy
     pytest-aiohttp
     pytest-asyncio
-    pytest-cov
-    pytest-asyncio
     pytestCheckHook
   ];