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:12:39 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-01-20 14:12:39 +0100
commitee91c45f89e4f82c73158fcfb10755f081a0cded (patch)
tree892c50c7e33e5a1790a0f9a3782c02b99a8345ed /pkgs/development/python-modules
parent7f77cce9ed5c09f4276c31f73a9b6131962fcce4 (diff)
downloadnixlib-ee91c45f89e4f82c73158fcfb10755f081a0cded.tar
nixlib-ee91c45f89e4f82c73158fcfb10755f081a0cded.tar.gz
nixlib-ee91c45f89e4f82c73158fcfb10755f081a0cded.tar.bz2
nixlib-ee91c45f89e4f82c73158fcfb10755f081a0cded.tar.lz
nixlib-ee91c45f89e4f82c73158fcfb10755f081a0cded.tar.xz
nixlib-ee91c45f89e4f82c73158fcfb10755f081a0cded.tar.zst
nixlib-ee91c45f89e4f82c73158fcfb10755f081a0cded.zip
python.pkgs.pytest_32: remove old version
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/pytest/3_2.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkgs/development/python-modules/pytest/3_2.nix b/pkgs/development/python-modules/pytest/3_2.nix
deleted file mode 100644
index d7a0b1bdad34..000000000000
--- a/pkgs/development/python-modules/pytest/3_2.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ stdenv, buildPythonPackage, fetchPypi, isPy26, argparse, hypothesis, py
-, setuptools_scm, setuptools
-}:
-buildPythonPackage rec {
-  version = "3.2.5";
-  pname = "pytest";
-
-  preCheck = ''
-    # don't test bash builtins
-    rm testing/test_argcomplete.py
-  '';
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "6d5bd4f7113b444c55a3bbb5c738a3dd80d43563d063fc42dcb0aaefbdd78b81";
-  };
-
-  checkInputs = [ hypothesis ];
-  buildInputs = [ setuptools_scm ];
-  propagatedBuildInputs = [ py setuptools ]
-    ++ (stdenv.lib.optional isPy26 argparse);
-
-  meta = with stdenv.lib; {
-    maintainers = with maintainers; [ domenkozar lovek323 madjar lsix ];
-    platforms = platforms.unix;
-  };
-}
\ No newline at end of file