python: pytest_37: init at 3.7.4
Needed at least by pyjwt.
This commit is contained in:
parent
20b3d00621
commit
eb2d56cb27
@ -2,9 +2,11 @@
|
||||
, setuptools_scm, setuptools, six, pluggy, funcsigs, isPy3k, more-itertools
|
||||
, atomicwrites, mock, writeText, pathlib2
|
||||
}:
|
||||
|
||||
let generic = { version, sha256 }:
|
||||
buildPythonPackage rec {
|
||||
version = "3.9.3";
|
||||
pname = "pytest";
|
||||
inherit version;
|
||||
|
||||
preCheck = ''
|
||||
# don't test bash builtins
|
||||
@ -12,8 +14,7 @@ buildPythonPackage rec {
|
||||
'';
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "a9e5e8d7ab9d5b0747f37740276eb362e6a76275d76cebbb52c6049d93b475db";
|
||||
inherit pname version sha256;
|
||||
};
|
||||
|
||||
checkInputs = [ hypothesis mock ];
|
||||
@ -44,4 +45,16 @@ buildPythonPackage rec {
|
||||
license = licenses.mit;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
};
|
||||
|
||||
in {
|
||||
pytest_39 = generic {
|
||||
version = "3.9.3";
|
||||
sha256 = "a9e5e8d7ab9d5b0747f37740276eb362e6a76275d76cebbb52c6049d93b475db";
|
||||
};
|
||||
|
||||
pytest_37 = generic {
|
||||
version = "3.7.4";
|
||||
sha256 = "2d7c49e931316cc7d1638a3e5f54f5d7b4e5225972b3c9838f3584788d27f349";
|
||||
};
|
||||
}
|
||||
|
@ -1349,10 +1349,10 @@ in {
|
||||
|
||||
pytest = self.pytest_39;
|
||||
|
||||
pytest_39 = callPackage ../development/python-modules/pytest {
|
||||
inherit (callPackage ../development/python-modules/pytest {
|
||||
# hypothesis tests require pytest that causes dependency cycle
|
||||
hypothesis = self.hypothesis.override { doCheck = false; };
|
||||
};
|
||||
}) pytest_39 pytest_37;
|
||||
|
||||
pytest-httpbin = callPackage ../development/python-modules/pytest-httpbin { };
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user