2017-08-25 16:39:49 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, isPy26, argparse, hypothesis, py
|
2017-08-24 17:34:20 +00:00
|
|
|
, setuptools_scm
|
|
|
|
}:
|
2017-01-24 19:06:52 +00:00
|
|
|
buildPythonPackage rec {
|
2017-10-25 18:04:35 +00:00
|
|
|
version = "3.2.3";
|
2017-05-27 09:25:35 +00: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
|
|
|
|
'';
|
|
|
|
|
2017-08-25 16:39:49 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-10-25 18:04:35 +00:00
|
|
|
sha256 = "27fa6617efc2869d3e969a3e75ec060375bfb28831ade8b5cdd68da3a741dc3c";
|
2017-01-24 19:06:52 +00:00
|
|
|
};
|
|
|
|
|
2017-08-24 17:34:20 +00: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;
|
|
|
|
};
|
|
|
|
}
|