forked from mirrors/nixpkgs
Merge pull request #187566 from eigengrau/add-pyisbn
python310Packages.pyisbn: init at 1.3.1
This commit is contained in:
commit
5f4f29e35e
41
pkgs/development/python-modules/pyisbn/default.nix
Normal file
41
pkgs/development/python-modules/pyisbn/default.nix
Normal file
|
@ -0,0 +1,41 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, hypothesis
|
||||
, pythonOlder
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyisbn";
|
||||
version = "1.3.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "06fm9rn31cb4b61hzy63cnwfjpppgyy517k8a04gzcv9g60n7xbh";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.cfg \
|
||||
--replace "--cov pyisbn --cov-report term-missing --no-cov-on-fail" ""
|
||||
'';
|
||||
|
||||
checkInputs = [
|
||||
hypothesis
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pyisbn"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python module for working with 10- and 13-digit ISBNs";
|
||||
homepage = "https://github.com/JNRowe/pyisbn";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ eigengrau ];
|
||||
};
|
||||
}
|
|
@ -7776,6 +7776,8 @@ in {
|
|||
|
||||
pyiqvia = callPackage ../development/python-modules/pyiqvia { };
|
||||
|
||||
pyisbn = callPackage ../development/python-modules/pyisbn { };
|
||||
|
||||
pyjet = callPackage ../development/python-modules/pyjet { };
|
||||
|
||||
pyjks = callPackage ../development/python-modules/pyjks { };
|
||||
|
|
Loading…
Reference in a new issue