python312Packages.rebulk: fix test inputs, cleanup

This commit is contained in:
FliegendeWurst
2025-01-06 15:10:54 +01:00
parent 844f2a5fff
commit 9bda12a60b
@@ -5,12 +5,13 @@
pytestCheckHook,
pythonOlder,
regex,
setuptools,
}:
buildPythonPackage rec {
pname = "rebulk";
version = "3.2.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
@@ -19,9 +20,11 @@ buildPythonPackage rec {
hash = "sha256-DTC/gPygD6nGlxhaxHXarJveX2Rs4zOMn/XV3B69/rw=";
};
propagatedBuildInputs = [ regex ];
build-system = [ setuptools ];
buildInputs = [ pytestCheckHook ];
dependencies = [ regex ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "rebulk" ];