python310Packages.galois: fix broken dep constraints

This commit is contained in:
Chris Pattison 2023-04-10 20:37:06 -07:00
parent 9943682b02
commit 6cc0b5f0a6

View File

@ -2,6 +2,7 @@
, buildPythonPackage , buildPythonPackage
, setuptools-scm , setuptools-scm
, pythonOlder , pythonOlder
, pythonRelaxDepsHook
, fetchFromGitHub , fetchFromGitHub
, pytestCheckHook , pytestCheckHook
, pytest-xdist , pytest-xdist
@ -28,6 +29,7 @@ buildPythonPackage rec {
nativeBuildInputs = [ nativeBuildInputs = [
setuptools-scm setuptools-scm
pythonRelaxDepsHook
]; ];
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -41,11 +43,7 @@ buildPythonPackage rec {
pytest-xdist pytest-xdist
]; ];
postPatch = '' pythonRelaxDeps = [ "numpy" "numba" ];
substituteInPlace pyproject.toml \
--replace "numpy >= 1.18.4, < 1.24" "numpy >= 1.18.4" \
--replace "numba >= 0.53, < 0.57" "numba >= 0.53" \
'';
pythonImportsCheck = [ "galois" ]; pythonImportsCheck = [ "galois" ];