python312Packages.bitlist: relax parts constraint

This commit is contained in:
Martin Weinelt
2024-06-24 12:18:22 +02:00
parent aa97d2b213
commit c57817e34b
@@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "bitlist";
version = "1.2.0";
format = "pyproject";
pyproject = true;
disabled = pythonOlder "3.7";
@@ -23,15 +23,17 @@ buildPythonPackage rec {
postPatch = ''
substituteInPlace pyproject.toml \
--replace '--cov=bitlist --cov-report term-missing' ""
--replace-fail '--cov=bitlist --cov-report term-missing' ""
'';
nativeBuildInputs = [
build-system = [
setuptools
wheel
];
propagatedBuildInputs = [ parts ];
pythonRelaxDeps = [ "parts" ];
dependencies = [ parts ];
nativeCheckInputs = [ pytestCheckHook ];