2017-08-24 18:34:20 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchurl, isPy26, argparse, hypothesis, py
|
|
|
|
, setuptools_scm
|
|
|
|
}:
|
2017-01-24 19:06:52 +00:00
|
|
|
buildPythonPackage rec {
|
2017-08-24 18:34:20 +01:00
|
|
|
version = "3.2.1";
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "pytest";
|
|
|
|
name = "${pname}-${version}";
|
2017-01-24 19:06:52 +00:00
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
# don't test bash builtins
|
|
|
|
rm testing/test_argcomplete.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://pypi/p/pytest/${name}.tar.gz";
|
2017-08-24 18:34:20 +01:00
|
|
|
sha256 = "4c2159d2be2b4e13fa293e7a72bdf2f06848a017150d5c6d35112ce51cfd74ce";
|
2017-01-24 19:06:52 +00:00
|
|
|
};
|
|
|
|
|
2017-08-24 18:34:20 +01:00
|
|
|
buildInputs = [ hypothesis setuptools_scm ];
|
2017-01-24 19:08:17 +00:00
|
|
|
propagatedBuildInputs = [ py ]
|
|
|
|
++ (stdenv.lib.optional isPy26 argparse);
|
2017-01-24 19:06:52 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-01-24 19:08:17 +00:00
|
|
|
maintainers = with maintainers; [ domenkozar lovek323 madjar lsix ];
|
2017-01-24 19:06:52 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|