pythonPackages.pytest_30: 3.0.5 -> 3.0.6
This commit is contained in:
parent
18b2c31eaa
commit
86a26322e8
@ -1,7 +1,7 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchurl, hypothesis, py }:
|
{ stdenv, buildPythonPackage, fetchurl, isPy26, argparse, hypothesis, py }:
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
name = "pytest-${version}";
|
name = "pytest-${version}";
|
||||||
version = "3.0.5";
|
version = "3.0.6";
|
||||||
|
|
||||||
preCheck = ''
|
preCheck = ''
|
||||||
# don't test bash builtins
|
# don't test bash builtins
|
||||||
@ -10,13 +10,15 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://pypi/p/pytest/${name}.tar.gz";
|
url = "mirror://pypi/p/pytest/${name}.tar.gz";
|
||||||
sha256 = "1z9pj39w0r2gw5hsqndlmsqa80kgbrann5kfma8ww8zhaslkl02a";
|
sha256 = "0h6rfp7y7c5mqwfm9fy5fq4l9idnp160c82ylcfjg251y6lk8d34";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ hypothesis py ];
|
buildInputs = [ hypothesis ];
|
||||||
|
propagatedBuildInputs = [ py ]
|
||||||
|
++ (stdenv.lib.optional isPy26 argparse);
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
maintainers = with maintainers; [ domenkozar lovek323 madjar ];
|
maintainers = with maintainers; [ domenkozar lovek323 madjar lsix ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user