2018-10-18 04:40:16 +02:00
|
|
|
{ stdenv, buildPythonPackage, pythonOlder, fetchPypi, attrs, hypothesis, py
|
2018-04-04 20:15:54 +02:00
|
|
|
, setuptools_scm, setuptools, six, pluggy, funcsigs, isPy3k, more-itertools
|
2018-08-13 09:31:19 +02:00
|
|
|
, atomicwrites, mock, writeText, pathlib2
|
2017-08-24 19:34:20 +02:00
|
|
|
}:
|
2017-01-24 20:06:52 +01:00
|
|
|
buildPythonPackage rec {
|
2018-10-24 15:43:05 +02:00
|
|
|
version = "3.9.2";
|
2017-05-27 11:25:35 +02:00
|
|
|
pname = "pytest";
|
2017-01-24 20:06:52 +01:00
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
# don't test bash builtins
|
|
|
|
rm testing/test_argcomplete.py
|
|
|
|
'';
|
|
|
|
|
2017-08-25 18:39:49 +02:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-10-24 15:43:05 +02:00
|
|
|
sha256 = "212be78a6fa5352c392738a49b18f74ae9aeec1040f47c81cadbfd8d1233c310";
|
2017-01-24 20:06:52 +01:00
|
|
|
};
|
|
|
|
|
2018-06-21 07:37:18 +02:00
|
|
|
checkInputs = [ hypothesis mock ];
|
2017-11-11 16:23:47 +01:00
|
|
|
buildInputs = [ setuptools_scm ];
|
2018-06-12 18:47:06 +02:00
|
|
|
propagatedBuildInputs = [ attrs py setuptools six pluggy more-itertools atomicwrites]
|
2018-10-18 04:40:16 +02:00
|
|
|
++ stdenv.lib.optionals (!isPy3k) [ funcsigs ]
|
|
|
|
++ stdenv.lib.optionals (pythonOlder "3.6") [ pathlib2 ];
|
2017-01-24 20:06:52 +01:00
|
|
|
|
2018-06-12 18:47:06 +02:00
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
|
|
|
$out/bin/py.test -x testing/
|
|
|
|
runHook postCheck
|
|
|
|
'';
|
|
|
|
|
2018-08-05 11:51:03 +02:00
|
|
|
# Remove .pytest_cache when using py.test in a Nix build
|
2018-07-22 09:45:26 +02:00
|
|
|
setupHook = writeText "pytest-hook" ''
|
2018-09-01 11:57:08 +02:00
|
|
|
pytestcachePhase() {
|
|
|
|
find $out -name .pytest_cache -type d -exec rm -rf {} +
|
|
|
|
}
|
|
|
|
|
|
|
|
preDistPhases+=" pytestcachePhase"
|
2018-07-22 09:45:26 +02:00
|
|
|
'';
|
|
|
|
|
2017-01-24 20:06:52 +01:00
|
|
|
meta = with stdenv.lib; {
|
2018-10-10 03:23:37 +02:00
|
|
|
homepage = https://docs.pytest.org;
|
|
|
|
description = "Framework for writing tests";
|
2017-01-24 20:08:17 +01:00
|
|
|
maintainers = with maintainers; [ domenkozar lovek323 madjar lsix ];
|
2018-10-10 03:23:37 +02:00
|
|
|
license = licenses.mit;
|
2017-01-24 20:06:52 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|