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