python312Packages.rebulk: fix test inputs, cleanup (#371457)

This commit is contained in:
Arne Keller
2025-03-10 13:25:58 +01:00
committed by GitHub
@@ -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" ];