mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
python310Packages.galois: fix broken dep constraints
This commit is contained in:
parent
9943682b02
commit
6cc0b5f0a6
@ -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" ];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user