summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-01-20 12:55:44 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-01-20 12:55:44 +0100
commit56c3535d067b78c00957fb16ebdc91e96930195f (patch)
tree7b178e4ad59eddd23a84af1c592a58e6b54189ac
parent2c3c847d64dfe458d81bcb51afebdecaa4ad0cb5 (diff)
downloadnixlib-56c3535d067b78c00957fb16ebdc91e96930195f.tar
nixlib-56c3535d067b78c00957fb16ebdc91e96930195f.tar.gz
nixlib-56c3535d067b78c00957fb16ebdc91e96930195f.tar.bz2
nixlib-56c3535d067b78c00957fb16ebdc91e96930195f.tar.lz
nixlib-56c3535d067b78c00957fb16ebdc91e96930195f.tar.xz
nixlib-56c3535d067b78c00957fb16ebdc91e96930195f.tar.zst
nixlib-56c3535d067b78c00957fb16ebdc91e96930195f.zip
python.pkgs.pytest_28: remove old version
-rw-r--r--pkgs/development/python-modules/pytest/2_8.nix30
-rw-r--r--pkgs/top-level/python-packages.nix2
2 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/development/python-modules/pytest/2_8.nix b/pkgs/development/python-modules/pytest/2_8.nix
deleted file mode 100644
index 963154b11ce1..000000000000
--- a/pkgs/development/python-modules/pytest/2_8.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ stdenv, pkgs, buildPythonPackage, fetchurl, isPy26, argparse, py, selenium }:
-buildPythonPackage rec {
-  pname = "pytest";
-  version = "2.8.7";
-  name = pname + "-" + version;
-
-  src = fetchurl {
-    url = "mirror://pypi/p/pytest/${name}.tar.gz";
-    sha256 = "1bwb06g64x2gky8x5hcrfpg6r351xwvafimnhm5qxq7wajz8ck7w";
-  };
-
-  # Disabled temporarily because of Hydra issue with namespaces
-  doCheck = false;
-
-  preCheck = ''
-    # don't test bash builtins
-    rm testing/test_argcomplete.py
-  '';
-
-  propagatedBuildInputs = [ py ]
-    ++ (stdenv.lib.optional isPy26 argparse)
-    ++ stdenv.lib.optional
-      pkgs.config.pythonPackages.pytest.selenium or false
-      selenium;
-
-  meta = with stdenv.lib; {
-    maintainers = with maintainers; [ domenkozar lovek323 madjar ];
-    platforms = platforms.unix;
-  };
-}
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 39c3ebdf4083..6cd94286add2 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -3245,8 +3245,6 @@ in {
 
   pytest = self.pytest_33;
 
-  pytest_28 = callPackage ../development/python-modules/pytest/2_8.nix {};
-
   pytest_29 = callPackage ../development/python-modules/pytest/2_9.nix {};
 
   pytest_32 = callPackage ../development/python-modules/pytest/3_2.nix{