From 7afc940da13917a95da2af2aeacd3142a21dd0d9 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Wed, 1 Jun 2016 13:41:56 +0200 Subject: [PATCH] pythonPackages.pytest_29: init at 2.9.2 --- pkgs/top-level/python-packages.nix | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7c213e472de..36773fe6055 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -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 {