python3Packages.python-barcode: 0.13.1 -> 0.14.0

main
P. R. d. O 2 years ago committed by Robert Schütz
parent bfa8abf3b0
commit 7c9b6ae465
  1. 15
      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" ];

Loading…
Cancel
Save