diff options
| author | P. R. d. O <d.ol.rod@tutanota.com> | 2022-05-21 11:07:34 -0600 |
|---|---|---|
| committer | Robert Schütz <github@dotlambda.de> | 2022-05-21 10:26:58 -0700 |
| commit | 7c9b6ae465e5d7cdccb9ea1c433d12e2125b4611 (patch) | |
| tree | 7083c4de40f81913c53b5b32b101a82293a7a3c7 /pkgs/development/python-modules/python-barcode | |
| parent | bfa8abf3b0c1b867a8cfc62098d44a6e495d0a1f (diff) | |
python3Packages.python-barcode: 0.13.1 -> 0.14.0
Diffstat (limited to 'pkgs/development/python-modules/python-barcode')
| -rw-r--r-- | pkgs/development/python-modules/python-barcode/default.nix | 15 |
1 files 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 7a586c2caed2..165cb5cc5d27 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" ]; |
