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 ];