2018-06-25 09:50:44 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, attrs, hypothesis, py
|
2018-04-04 19:15:54 +01:00
|
|
|
, setuptools_scm, setuptools, six, pluggy, funcsigs, isPy3k, more-itertools
|
2018-08-13 08:31:19 +01:00
|
|
|
, atomicwrites, mock, writeText, pathlib2
|
2017-08-24 18:34:20 +01:00
|
|
|
}:
|
2017-01-24 19:06:52 +00:00
|
|
|
buildPythonPackage rec {
|
2018-08-30 16:42:48 +01:00
|
|
|
version = "3.7.4";
|
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-08-30 16:42:48 +01:00
|
|
|
sha256 = "2d7c49e931316cc7d1638a3e5f54f5d7b4e5225972b3c9838f3584788d27f349";
|
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]
|
2018-08-13 08:31:19 +01:00
|
|
|
++ stdenv.lib.optionals (!isPy3k) [ funcsigs pathlib2 ];
|
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
|
|
|
|
'';
|
|
|
|
|
2018-08-05 10:51:03 +01:00
|
|
|
# Remove .pytest_cache when using py.test in a Nix build
|
2018-07-22 08:45:26 +01:00
|
|
|
setupHook = writeText "pytest-hook" ''
|
2018-09-01 10:57:08 +01:00
|
|
|
pytestcachePhase() {
|
|
|
|
find $out -name .pytest_cache -type d -exec rm -rf {} +
|
|
|
|
}
|
|
|
|
|
|
|
|
preDistPhases+=" pytestcachePhase"
|
2018-07-22 08:45:26 +01:00
|
|
|
'';
|
|
|
|
|
2017-01-24 19:06:52 +00:00
|
|
|
meta = with stdenv.lib; {
|
2018-10-10 02:23:37 +01:00
|
|
|
homepage = https://docs.pytest.org;
|
|
|
|
description = "Framework for writing tests";
|
2017-01-24 19:08:17 +00:00
|
|
|
maintainers = with maintainers; [ domenkozar lovek323 madjar lsix ];
|
2018-10-10 02:23:37 +01:00
|
|
|
license = licenses.mit;
|
2017-01-24 19:06:52 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|