2017-12-30 14:26:35 +03:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, isPy26, argparse, attrs, hypothesis, py
|
|
|
|
, setuptools_scm, setuptools, six, pluggy, funcsigs, isPy3k
|
2017-08-24 20:34:20 +03:00
|
|
|
}:
|
2017-01-24 22:06:52 +03:00
|
|
|
buildPythonPackage rec {
|
2018-01-07 11:01:06 +03:00
|
|
|
version = "3.3.2";
|
2017-05-27 12:25:35 +03:00
|
|
|
pname = "pytest";
|
2017-01-24 22:06:52 +03:00
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
# don't test bash builtins
|
|
|
|
rm testing/test_argcomplete.py
|
|
|
|
'';
|
|
|
|
|
2017-08-25 19:39:49 +03:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-01-07 11:01:06 +03:00
|
|
|
sha256 = "53548280ede7818f4dc2ad96608b9f08ae2cc2ca3874f2ceb6f97e3583f25bc4";
|
2017-01-24 22:06:52 +03:00
|
|
|
};
|
|
|
|
|
2017-11-11 18:23:47 +03:00
|
|
|
checkInputs = [ hypothesis ];
|
|
|
|
buildInputs = [ setuptools_scm ];
|
2017-12-30 14:26:35 +03:00
|
|
|
propagatedBuildInputs = [ attrs py setuptools six pluggy ]
|
|
|
|
++ (stdenv.lib.optional (!isPy3k) funcsigs)
|
2017-01-24 22:08:17 +03:00
|
|
|
++ (stdenv.lib.optional isPy26 argparse);
|
2017-01-24 22:06:52 +03:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-01-24 22:08:17 +03:00
|
|
|
maintainers = with maintainers; [ domenkozar lovek323 madjar lsix ];
|
2017-01-24 22:06:52 +03:00
|
|
|
platforms = platforms.unix;
|
2017-12-30 14:26:35 +03:00
|
|
|
description = "Framework for writing tests";
|
2017-01-24 22:06:52 +03:00
|
|
|
};
|
|
|
|
}
|