summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-09-10 14:48:49 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-10-06 01:20:11 +0200
commitdc6318b1f3c98554ca81f55ce09b196f58aef6d2 (patch)
tree47a42c1dfbfb5ac8dca12cee797616cbdb1bd55b
parent792b414e246d828b415af90d149e5faa8203488e (diff)
downloadnixpkgs-dc6318b1f3c98554ca81f55ce09b196f58aef6d2.tar
nixpkgs-dc6318b1f3c98554ca81f55ce09b196f58aef6d2.tar.gz
nixpkgs-dc6318b1f3c98554ca81f55ce09b196f58aef6d2.tar.bz2
nixpkgs-dc6318b1f3c98554ca81f55ce09b196f58aef6d2.tar.lz
nixpkgs-dc6318b1f3c98554ca81f55ce09b196f58aef6d2.tar.xz
nixpkgs-dc6318b1f3c98554ca81f55ce09b196f58aef6d2.tar.zst
nixpkgs-dc6318b1f3c98554ca81f55ce09b196f58aef6d2.zip
python3Packages.brother: 1.2.3 -> 2.0.0
https://github.com/bieniu/brother/releases/tag/2.0.0
-rw-r--r--pkgs/development/python-modules/brother/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/brother/default.nix b/pkgs/development/python-modules/brother/default.nix
index 7dbab50b63b..297f1161fe2 100644
--- a/pkgs/development/python-modules/brother/default.nix
+++ b/pkgs/development/python-modules/brother/default.nix
@@ -1,6 +1,7 @@
 { lib
 , buildPythonPackage
 , fetchFromGitHub
+, dacite
 , pysnmplib
 , pytest-asyncio
 , pytest-error-for-skips
@@ -10,7 +11,7 @@
 
 buildPythonPackage rec {
   pname = "brother";
-  version = "1.2.3";
+  version = "2.0.0";
   format = "setuptools";
 
   disabled = pythonOlder "3.8";
@@ -19,10 +20,11 @@ buildPythonPackage rec {
     owner = "bieniu";
     repo = pname;
     rev = "refs/tags/${version}";
-    hash = "sha256-+o6hv63u6FBEu57mD02lss0LQPwgBnXsP8CKQ+/74/Q=";
+    hash = "sha256-pk9VBFha2NfQWI+fbWwGKcGFa93eKr5Cqh85r1CAXpI=";
   };
 
   propagatedBuildInputs = [
+    dacite
     pysnmplib
   ];