pythonPackages.pytest_29: init at 2.9.2

This commit is contained in:
Frederik Rietdijk 2016-06-01 13:41:56 +02:00
parent 8a63f7e067
commit 7afc940da1

View File

@ -4374,7 +4374,9 @@ in modules // {
};
};
pytest = buildPythonPackage rec {
pytest = self.pytest_27;
pytest_27 = buildPythonPackage rec {
name = "pytest-2.7.3";
src = pkgs.fetchurl {
@ -4399,7 +4401,7 @@ in modules // {
};
};
pytest_28 = self.pytest.override rec {
pytest_28 = self.pytest_27.override rec {
name = "pytest-2.8.6";
src = pkgs.fetchurl {
@ -4408,6 +4410,15 @@ in modules // {
};
};
pytest_29 = self.pytest_27.override rec {
name = "pytest-2.9.2";
src = pkgs.fetchurl {
url = "mirror://pypi/p/pytest/${name}.tar.gz";
sha256 = "1n6igbc1b138wx1q5gca4pqw1j6nsyicfxds5n0b5989kaxqmh8j";
};
};
pytestcache = buildPythonPackage rec {
name = "pytest-cache-1.0";
src = pkgs.fetchurl {