2018-06-25 01:50:44 -07:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, attrs, hypothesis, py
|
2018-04-04 11:15:54 -07:00
|
|
|
, setuptools_scm, setuptools, six, pluggy, funcsigs, isPy3k, more-itertools
|
2018-08-13 00:31:19 -07:00
|
|
|
, atomicwrites, mock, writeText, pathlib2
|
2017-08-24 10:34:20 -07:00
|
|
|
}:
|
2017-01-24 11:06:52 -08:00
|
|
|
buildPythonPackage rec {
|
2018-08-30 08:42:48 -07:00
|
|
|
version = "3.7.4";
|
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-08-30 08:42:48 -07:00
|
|
|
sha256 = "2d7c49e931316cc7d1638a3e5f54f5d7b4e5225972b3c9838f3584788d27f349";
|
2017-01-24 11:06:52 -08:00
|
|
|
};
|
|
|
|
|
2018-06-20 22:37:18 -07:00
|
|
|
checkInputs = [ hypothesis mock ];
|
2017-11-11 07:23:47 -08:00
|
|
|
buildInputs = [ setuptools_scm ];
|
2018-06-12 09:47:06 -07:00
|
|
|
propagatedBuildInputs = [ attrs py setuptools six pluggy more-itertools atomicwrites]
|
2018-08-13 00:31:19 -07:00
|
|
|
++ stdenv.lib.optionals (!isPy3k) [ funcsigs pathlib2 ];
|
2017-01-24 11:06:52 -08:00
|
|
|
|
2018-06-12 09:47:06 -07:00
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
|
|
|
$out/bin/py.test -x testing/
|
|
|
|
runHook postCheck
|
|
|
|
'';
|
|
|
|
|
2018-08-05 02:51:03 -07:00
|
|
|
# Remove .pytest_cache when using py.test in a Nix build
|
2018-07-22 00:45:26 -07:00
|
|
|
setupHook = writeText "pytest-hook" ''
|
2018-07-24 08:06:01 -07:00
|
|
|
postFixupHooks+=(
|
2018-08-05 02:51:03 -07:00
|
|
|
'find $out -name .pytest_cache -type d -exec rm -rf {} +'
|
2018-07-24 08:06:01 -07:00
|
|
|
)
|
2018-07-22 00:45:26 -07:00
|
|
|
'';
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|