2018-06-25 08:50:44 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, attrs, hypothesis, py
|
2018-04-04 18:15:54 +00:00
|
|
|
, setuptools_scm, setuptools, six, pluggy, funcsigs, isPy3k, more-itertools
|
2018-07-22 07:45:26 +00:00
|
|
|
, atomicwrites, mock, writeText
|
2017-08-24 17:34:20 +00:00
|
|
|
}:
|
2017-01-24 19:06:52 +00:00
|
|
|
buildPythonPackage rec {
|
2018-07-22 10:18:25 +00:00
|
|
|
version = "3.6.3";
|
2017-05-27 09:25:35 +00: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 16:39:49 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-07-22 10:18:25 +00:00
|
|
|
sha256 = "0453c8676c2bee6feb0434748b068d5510273a916295fd61d306c4f22fbfd752";
|
2017-01-24 19:06:52 +00:00
|
|
|
};
|
|
|
|
|
2018-06-21 05:37:18 +00:00
|
|
|
checkInputs = [ hypothesis mock ];
|
2017-11-11 15:23:47 +00:00
|
|
|
buildInputs = [ setuptools_scm ];
|
2018-06-12 16:47:06 +00:00
|
|
|
propagatedBuildInputs = [ attrs py setuptools six pluggy more-itertools atomicwrites]
|
2018-06-25 08:50:44 +00:00
|
|
|
++ (stdenv.lib.optional (!isPy3k) funcsigs);
|
2017-01-24 19:06:52 +00:00
|
|
|
|
2018-06-12 16:47:06 +00:00
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
|
|
|
$out/bin/py.test -x testing/
|
|
|
|
runHook postCheck
|
|
|
|
'';
|
|
|
|
|
2018-07-22 07:45:26 +00:00
|
|
|
# Don't create .pytest-cache when using py.test in a Nix build
|
|
|
|
setupHook = writeText "pytest-hook" ''
|
|
|
|
export PYTEST_ADDOPTS="-p no:cacheprovider"
|
|
|
|
'';
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|