python3Packages.brother: 1.2.3 -> 2.0.0

https://github.com/bieniu/brother/releases/tag/2.0.0
This commit is contained in:
Martin Weinelt
2022-10-06 01:20:11 +02:00
parent 792b414e24
commit dc6318b1f3
@@ -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
];