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