about summary refs log tree commit diff
path: root/pkgs/development/python-modules
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 /pkgs/development/python-modules
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
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/pytest/2_9.nix30
1 files changed, 0 insertions, 30 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;
-  };
-}