pythonPackages.pytest_*: move to pkgs/development/python-modules
This commit is contained in:
parent
b6e5976d4b
commit
18b2c31eaa
28
pkgs/development/python-modules/pytest/2_7.nix
Normal file
28
pkgs/development/python-modules/pytest/2_7.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ stdenv, pkgs, buildPythonPackage, fetchurl, isPy26, argparse, py, selenium }:
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "pytest-2.7.3";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://pypi/p/pytest/${name}.tar.gz";
|
||||||
|
sha256 = "1z4yi986f9n0p8qmzmn21m21m8j1x78hk3505f89baqm6pdw7afm";
|
||||||
|
};
|
||||||
|
|
||||||
|
# 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;
|
||||||
|
};
|
||||||
|
}
|
28
pkgs/development/python-modules/pytest/2_8.nix
Normal file
28
pkgs/development/python-modules/pytest/2_8.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ stdenv, pkgs, buildPythonPackage, fetchurl, isPy26, argparse, py, selenium }:
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "pytest-2.8.7";
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
28
pkgs/development/python-modules/pytest/2_9.nix
Normal file
28
pkgs/development/python-modules/pytest/2_9.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ stdenv, pkgs, buildPythonPackage, fetchurl, isPy26, argparse, py, selenium }:
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "pytest-2.9.2";
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
22
pkgs/development/python-modules/pytest/default.nix
Normal file
22
pkgs/development/python-modules/pytest/default.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchurl, hypothesis, py }:
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "pytest-${version}";
|
||||||
|
version = "3.0.5";
|
||||||
|
|
||||||
|
preCheck = ''
|
||||||
|
# don't test bash builtins
|
||||||
|
rm testing/test_argcomplete.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://pypi/p/pytest/${name}.tar.gz";
|
||||||
|
sha256 = "1z9pj39w0r2gw5hsqndlmsqa80kgbrann5kfma8ww8zhaslkl02a";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ hypothesis py ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
maintainers = with maintainers; [ domenkozar lovek323 madjar ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
@ -4997,61 +4997,13 @@ in {
|
|||||||
|
|
||||||
pytest = self.pytest_29;
|
pytest = self.pytest_29;
|
||||||
|
|
||||||
pytest_27 = buildPythonPackage rec {
|
pytest_27 = callPackage ../development/python-modules/pytest/2_7.nix {};
|
||||||
name = "pytest-2.7.3";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
pytest_28 = callPackage ../development/python-modules/pytest/2_8.nix {};
|
||||||
url = "mirror://pypi/p/pytest/${name}.tar.gz";
|
|
||||||
sha256 = "1z4yi986f9n0p8qmzmn21m21m8j1x78hk3505f89baqm6pdw7afm";
|
|
||||||
};
|
|
||||||
|
|
||||||
# Disabled temporarily because of Hydra issue with namespaces
|
pytest_29 = callPackage ../development/python-modules/pytest/2_9.nix {};
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
preCheck = ''
|
pytest_30 = callPackage ../development/python-modules/pytest {};
|
||||||
# don't test bash builtins
|
|
||||||
rm testing/test_argcomplete.py
|
|
||||||
'';
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ py ]
|
|
||||||
++ (optional isPy26 argparse)
|
|
||||||
++ stdenv.lib.optional
|
|
||||||
pkgs.config.pythonPackages.pytest.selenium or false
|
|
||||||
self.selenium;
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
maintainers = with maintainers; [ domenkozar lovek323 madjar ];
|
|
||||||
platforms = platforms.unix;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
pytest_28 = self.pytest_27.override rec {
|
|
||||||
name = "pytest-2.8.7";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/p/pytest/${name}.tar.gz";
|
|
||||||
sha256 = "1bwb06g64x2gky8x5hcrfpg6r351xwvafimnhm5qxq7wajz8ck7w";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
pytest_29 = self.pytest_27.override rec {
|
|
||||||
name = "pytest-2.9.2";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/p/pytest/${name}.tar.gz";
|
|
||||||
sha256 = "1n6igbc1b138wx1q5gca4pqw1j6nsyicfxds5n0b5989kaxqmh8j";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
pytest_30 = self.pytest_27.override rec {
|
|
||||||
name = "pytest-3.0.5";
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ hypothesis py ];
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/p/pytest/${name}.tar.gz";
|
|
||||||
sha256 = "1z9pj39w0r2gw5hsqndlmsqa80kgbrann5kfma8ww8zhaslkl02a";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
pytestcache = buildPythonPackage rec {
|
pytestcache = buildPythonPackage rec {
|
||||||
name = "pytest-cache-1.0";
|
name = "pytest-cache-1.0";
|
||||||
|
Loading…
Reference in New Issue
Block a user