pythonPackages.gradient-utils: relax wheel depedency

This commit is contained in:
Sandro Jäckel 2021-03-11 23:14:11 +01:00
parent fbd9d8e3a5
commit c3c1358ca2
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -26,7 +26,7 @@ buildPythonPackage rec {
substituteInPlace pyproject.toml \
--replace 'numpy = "1.18.5"' 'numpy = "^1.18.5"' \
--replace 'hyperopt = "0.1.2"' 'hyperopt = ">=0.1.2"' \
--replace 'wheel = "^0.35.1"' 'wheel = "^0.36"'
--replace 'wheel = "^0.35.1"' 'wheel = "*"'
'';
nativeBuildInputs = [ poetry-core ];