summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-01-20 14:11:56 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-01-20 14:11:56 +0100
commit7f77cce9ed5c09f4276c31f73a9b6131962fcce4 (patch)
treed1857bf906d132fbebc63213cc532185d26d96a6
parent75c2a7677368eba3cd78304faae81a1454ff7817 (diff)
downloadnixlib-7f77cce9ed5c09f4276c31f73a9b6131962fcce4.tar
nixlib-7f77cce9ed5c09f4276c31f73a9b6131962fcce4.tar.gz
nixlib-7f77cce9ed5c09f4276c31f73a9b6131962fcce4.tar.bz2
nixlib-7f77cce9ed5c09f4276c31f73a9b6131962fcce4.tar.lz
nixlib-7f77cce9ed5c09f4276c31f73a9b6131962fcce4.tar.xz
nixlib-7f77cce9ed5c09f4276c31f73a9b6131962fcce4.tar.zst
nixlib-7f77cce9ed5c09f4276c31f73a9b6131962fcce4.zip
python.pkgs.pytest_29: remove old version
-rw-r--r--pkgs/development/python-modules/pytest/2_9.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_9.nix b/pkgs/development/python-modules/pytest/2_9.nix
deleted file mode 100644
index 2d28517441b0..000000000000
--- a/pkgs/development/python-modules/pytest/2_9.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ stdenv, pkgs, buildPythonPackage, fetchurl, isPy26, argparse, py, selenium }:
-buildPythonPackage rec {
-  pname = "pytest";
-  version = "2.9.2";
-  name = pname + "-" + version;
-
-  src = fetchurl {
-    url = "mirror://pypi/p/pytest/${name}.tar.gz";
-    sha256 = "1n6igbc1b138wx1q5gca4pqw1j6nsyicfxds5n0b5989kaxqmh8j";
-  };
-
-  # 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 fce71ec752bb..efca8123f3a2 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -3218,8 +3218,6 @@ in {
 
   pytest = self.pytest_33;
 
-  pytest_29 = callPackage ../development/python-modules/pytest/2_9.nix {};
-
   pytest_32 = callPackage ../development/python-modules/pytest/3_2.nix{
     hypothesis = self.hypothesis.override {
       # hypothesis requires pytest that causes dependency cycle