1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

python.pkgs.pytest_29: remove old version

This commit is contained in:
Frederik Rietdijk 2018-01-20 14:11:56 +01:00
parent 75c2a76773
commit 7f77cce9ed
2 changed files with 0 additions and 32 deletions

View file

@ -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;
};
}

View file

@ -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