mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
python310Packages.pyisbn: remove unused input
This commit is contained in:
parent
1d8eaba0c1
commit
ec62674cb0
@ -1,10 +1,9 @@
|
||||
{ buildPythonPackage
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, hypothesis
|
||||
, pythonOlder
|
||||
, pytestCheckHook
|
||||
, lib
|
||||
, pytest
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -24,14 +23,19 @@ buildPythonPackage rec {
|
||||
--replace "--cov pyisbn --cov-report term-missing --no-cov-on-fail" ""
|
||||
'';
|
||||
|
||||
checkInputs = [ pytestCheckHook hypothesis ];
|
||||
checkInputs = [
|
||||
hypothesis
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "pyisbn" ];
|
||||
pythonImportsCheck = [
|
||||
"pyisbn"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
license = licenses.gpl3Plus;
|
||||
homepage = "https://github.com/JNRowe/pyisbn";
|
||||
description = "Python module for working with 10- and 13-digit ISBNs";
|
||||
homepage = "https://github.com/JNRowe/pyisbn";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ eigengrau ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user