python.pkgs.pytest_32: remove old version
This commit is contained in:
parent
7f77cce9ed
commit
ee91c45f89
2 changed files with 0 additions and 35 deletions
|
@ -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;
|
||||
};
|
||||
}
|
|
@ -3218,14 +3218,6 @@ in {
|
|||
|
||||
pytest = self.pytest_33;
|
||||
|
||||
pytest_32 = callPackage ../development/python-modules/pytest/3_2.nix{
|
||||
hypothesis = self.hypothesis.override {
|
||||
# hypothesis requires pytest that causes dependency cycle
|
||||
doCheck = false;
|
||||
pytest = null;
|
||||
};
|
||||
};
|
||||
|
||||
pytest_33 = callPackage ../development/python-modules/pytest/default.nix{
|
||||
hypothesis = self.hypothesis.override {
|
||||
# hypothesis requires pytest that causes dependency cycle
|
||||
|
|
Loading…
Reference in a new issue