From dc6318b1f3c98554ca81f55ce09b196f58aef6d2 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 10 Sep 2022 14:48:49 +0200 Subject: [PATCH] python3Packages.brother: 1.2.3 -> 2.0.0 https://github.com/bieniu/brother/releases/tag/2.0.0 --- pkgs/development/python-modules/brother/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/brother/default.nix b/pkgs/development/python-modules/brother/default.nix index 7dbab50b63bf..297f1161fe2a 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 ];