From 7c9b6ae465e5d7cdccb9ea1c433d12e2125b4611 Mon Sep 17 00:00:00 2001 From: "P. R. d. O" Date: Sat, 21 May 2022 11:07:34 -0600 Subject: [PATCH] python3Packages.python-barcode: 0.13.1 -> 0.14.0 --- .../python-modules/python-barcode/default.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/python-barcode/default.nix b/pkgs/development/python-modules/python-barcode/default.nix index 7a586c2caed..165cb5cc5d2 100644 --- a/pkgs/development/python-modules/python-barcode/default.nix +++ b/pkgs/development/python-modules/python-barcode/default.nix @@ -3,29 +3,32 @@ , fetchPypi , pythonOlder , setuptools-scm -, imagesSupport ? false , pillow , pytestCheckHook }: buildPythonPackage rec { pname = "python-barcode"; - version = "0.13.1"; + version = "0.14.0"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - sha256 = "sha256-+vukqiTp2Wl3e+UhwpT/GPbCs2rWO1/C8hCNly4jslI="; + sha256 = "sha256-JBs0qlxctqmImIL5QJsBgpA6LF0ZtCGL42Cc271f/fk="; }; propagatedBuildInputs = [ setuptools-scm - ] ++ lib.optionals (imagesSupport) [ - pillow ]; + passthru.extras-require = { + images = [ + pillow + ]; + }; + postPatch = '' substituteInPlace setup.cfg \ --replace "--cov=barcode" "" \ @@ -35,7 +38,7 @@ buildPythonPackage rec { checkInputs = [ pytestCheckHook - ]; + ] ++ passthru.extras-require.images; pythonImportsCheck = [ "barcode" ];