forked from mirrors/nixpkgs
python310Packages.python-barcode: init at 0.13.1
This commit is contained in:
parent
3cab98701d
commit
322a82a0ad
48
pkgs/development/python-modules/python-barcode/default.nix
Normal file
48
pkgs/development/python-modules/python-barcode/default.nix
Normal file
|
@ -0,0 +1,48 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, setuptools-scm
|
||||
, imagesSupport ? false
|
||||
, pillow
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-barcode";
|
||||
version = "0.13.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-+vukqiTp2Wl3e+UhwpT/GPbCs2rWO1/C8hCNly4jslI=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
setuptools-scm
|
||||
] ++ lib.optionals (imagesSupport) [
|
||||
pillow
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.cfg \
|
||||
--replace "--cov=barcode" "" \
|
||||
--replace "--cov-report=term-missing:skip-covered" "" \
|
||||
--replace "--no-cov-on-fail" ""
|
||||
'';
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "barcode" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Create standard barcodes with Python";
|
||||
homepage = "https://github.com/WhyNotHugo/python-barcode";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ wolfangaukang ];
|
||||
};
|
||||
}
|
|
@ -8139,6 +8139,8 @@ in {
|
|||
|
||||
python-axolotl-curve25519 = callPackage ../development/python-modules/python-axolotl-curve25519 { };
|
||||
|
||||
python-barcode = callPackage ../development/python-modules/python-barcode { };
|
||||
|
||||
python-baseconv = callPackage ../development/python-modules/python-baseconv { };
|
||||
|
||||
python-benedict = callPackage ../development/python-modules/python-benedict { };
|
||||
|
|
Loading…
Reference in a new issue