python311Packages.gitignore-parser: refactor

This commit is contained in:
Fabian Affolter
2024-01-20 08:18:06 +01:00
parent a0b5c9221f
commit a40ba77503
@@ -2,13 +2,14 @@
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "gitignore-parser";
version = "0.1.11";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
@@ -19,6 +20,10 @@ buildPythonPackage rec {
hash = "sha256-y8A8OLgJccYWvKTJs7um8RwFFM0CswbwRojknBmk3TY=";
};
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
unittestCheckHook
];