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-09-10 14:48:49 +02:00
parent 792b414e24
commit dc6318b1f3
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

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