2017-12-30 11:26:35 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, isPy26, argparse, attrs, hypothesis, py
|
2018-04-04 19:15:54 +01:00
|
|
|
, setuptools_scm, setuptools, six, pluggy, funcsigs, isPy3k, more-itertools
|
2018-06-21 06:37:18 +01:00
|
|
|
, atomicwrites, mock
|
2017-08-24 18:34:20 +01:00
|
|
|
}:
|
2017-01-24 19:06:52 +00:00
|
|
|
buildPythonPackage rec {
|
2018-06-21 06:37:18 +01:00
|
|
|
version = "3.6.2";
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "pytest";
|
2017-01-24 19:06:52 +00:00
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
# don't test bash builtins
|
|
|
|
rm testing/test_argcomplete.py
|
|
|
|
'';
|
|
|
|
|
2017-08-25 17:39:49 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-06-21 06:37:18 +01:00
|
|
|
sha256 = "8ea01fc4fcc8e1b1e305252b4bc80a1528019ab99fd3b88666c9dc38d754406c";
|
2017-01-24 19:06:52 +00:00
|
|
|
};
|
|
|
|
|
2018-06-21 06:37:18 +01:00
|
|
|
checkInputs = [ hypothesis mock ];
|
2017-11-11 15:23:47 +00:00
|
|
|
buildInputs = [ setuptools_scm ];
|
2018-06-12 17:47:06 +01:00
|
|
|
propagatedBuildInputs = [ attrs py setuptools six pluggy more-itertools atomicwrites]
|
2017-12-30 11:26:35 +00:00
|
|
|
++ (stdenv.lib.optional (!isPy3k) funcsigs)
|
2017-01-24 19:08:17 +00:00
|
|
|
++ (stdenv.lib.optional isPy26 argparse);
|
2017-01-24 19:06:52 +00:00
|
|
|
|
2018-06-12 17:47:06 +01:00
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
|
|
|
$out/bin/py.test -x testing/
|
|
|
|
runHook postCheck
|
|
|
|
'';
|
|
|
|
|
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;
|
2017-12-30 11:26:35 +00:00
|
|
|
description = "Framework for writing tests";
|
2017-01-24 19:06:52 +00:00
|
|
|
};
|
|
|
|
}
|