From 1f3bde659a2b08e1b2ba7a85d4f4846e983d8652 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 1 Sep 2024 14:07:08 -0700 Subject: [PATCH] python312Packages.brother: 4.2.0 -> 4.3.0 Diff: https://github.com/bieniu/brother/compare/refs/tags/4.2.0...4.3.0 Changelog: https://github.com/bieniu/brother/releases/tag/4.3.0 --- .../python-modules/brother/default.nix | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/pkgs/development/python-modules/brother/default.nix b/pkgs/development/python-modules/brother/default.nix index 49a12f7c3a0c..e6b79fb3bcdd 100644 --- a/pkgs/development/python-modules/brother/default.nix +++ b/pkgs/development/python-modules/brother/default.nix @@ -15,26 +15,21 @@ buildPythonPackage rec { pname = "brother"; - version = "4.2.0"; + version = "4.3.0"; pyproject = true; disabled = pythonOlder "3.11"; src = fetchFromGitHub { owner = "bieniu"; - repo = pname; + repo = "brother"; rev = "refs/tags/${version}"; - hash = "sha256-5fd+UznnOFnqYL8CPX90Y2z6q35oUH638mz4l+Ux6oE="; + hash = "sha256-JnIJgR8OiN6y6ib0Y+FXa98Q/4dtvJ8q2r6tgQSRvN4="; }; - postPatch = '' - substituteInPlace requirements.txt \ - --replace-fail pysnmp-lextudio pysnmp - ''; + build-system = [ setuptools ]; - nativeBuildInputs = [ setuptools ]; - - propagatedBuildInputs = [ + dependencies = [ dacite pysnmp ];