python: pytest_37: init at 3.7.4

Needed at least by pyjwt.
This commit is contained in:
Franz Pletz 2018-11-22 22:25:48 +01:00
parent 20b3d00621
commit eb2d56cb27
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4
2 changed files with 51 additions and 38 deletions

View File

@ -2,9 +2,11 @@
, setuptools_scm, setuptools, six, pluggy, funcsigs, isPy3k, more-itertools , setuptools_scm, setuptools, six, pluggy, funcsigs, isPy3k, more-itertools
, atomicwrites, mock, writeText, pathlib2 , atomicwrites, mock, writeText, pathlib2
}: }:
buildPythonPackage rec {
version = "3.9.3"; let generic = { version, sha256 }:
buildPythonPackage rec {
pname = "pytest"; pname = "pytest";
inherit version;
preCheck = '' preCheck = ''
# don't test bash builtins # don't test bash builtins
@ -12,8 +14,7 @@ buildPythonPackage rec {
''; '';
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version sha256;
sha256 = "a9e5e8d7ab9d5b0747f37740276eb362e6a76275d76cebbb52c6049d93b475db";
}; };
checkInputs = [ hypothesis mock ]; checkInputs = [ hypothesis mock ];
@ -44,4 +45,16 @@ buildPythonPackage rec {
license = licenses.mit; license = licenses.mit;
platforms = platforms.unix; platforms = platforms.unix;
}; };
};
in {
pytest_39 = generic {
version = "3.9.3";
sha256 = "a9e5e8d7ab9d5b0747f37740276eb362e6a76275d76cebbb52c6049d93b475db";
};
pytest_37 = generic {
version = "3.7.4";
sha256 = "2d7c49e931316cc7d1638a3e5f54f5d7b4e5225972b3c9838f3584788d27f349";
};
} }

View File

@ -1349,10 +1349,10 @@ in {
pytest = self.pytest_39; 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 tests require pytest that causes dependency cycle
hypothesis = self.hypothesis.override { doCheck = false; }; hypothesis = self.hypothesis.override { doCheck = false; };
}; }) pytest_39 pytest_37;
pytest-httpbin = callPackage ../development/python-modules/pytest-httpbin { }; pytest-httpbin = callPackage ../development/python-modules/pytest-httpbin { };