python3Packages.lazy-object-proxy: remove upper constraint

This commit is contained in:
Frederik Rietdijk
2021-04-03 17:49:43 +02:00
parent 9fd8ec2368
commit 0e5ab73b0e
@@ -1,7 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pytest , pytestCheckHook
, setuptools_scm , setuptools_scm
}: }:
@@ -14,13 +14,19 @@ buildPythonPackage rec {
sha256 = "489000d368377571c6f982fba6497f2aa13c6d1facc40660963da62f5c379726"; sha256 = "489000d368377571c6f982fba6497f2aa13c6d1facc40660963da62f5c379726";
}; };
nativeBuildInputs = [ setuptools_scm ]; nativeBuildInputs = [
setuptools_scm
];
checkInputs = [ pytest ]; postPatch = ''
checkPhase = '' substituteInPlace pyproject.toml --replace ",<6.0" ""
py.test tests substituteInPlace setup.cfg --replace ",<6.0" ""
''; '';
checkInputs = [
pytestCheckHook
];
# Broken tests. Seem to be fixed upstream according to Travis. # Broken tests. Seem to be fixed upstream according to Travis.
doCheck = false; doCheck = false;