nixpkgs/pkgs/development/python-modules/pytest/default.nix

48 lines
1.3 KiB
Nix
Raw Normal View History

{ 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
}:
buildPythonPackage rec {
2018-10-24 15:43:05 +02:00
version = "3.9.2";
pname = "pytest";
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";
};
2018-06-21 07:37:18 +02:00
checkInputs = [ hypothesis mock ];
buildInputs = [ setuptools_scm ];
2018-06-12 18:47:06 +02:00
propagatedBuildInputs = [ attrs py setuptools six pluggy more-itertools atomicwrites]
++ stdenv.lib.optionals (!isPy3k) [ funcsigs ]
++ stdenv.lib.optionals (pythonOlder "3.6") [ pathlib2 ];
2018-06-12 18:47:06 +02:00
checkPhase = ''
runHook preCheck
$out/bin/py.test -x testing/
runHook postCheck
'';
# Remove .pytest_cache when using py.test in a Nix build
setupHook = writeText "pytest-hook" ''
pytestcachePhase() {
find $out -name .pytest_cache -type d -exec rm -rf {} +
}
preDistPhases+=" pytestcachePhase"
'';
meta = with stdenv.lib; {
2018-10-10 03:23:37 +02:00
homepage = https://docs.pytest.org;
description = "Framework for writing tests";
maintainers = with maintainers; [ domenkozar lovek323 madjar lsix ];
2018-10-10 03:23:37 +02:00
license = licenses.mit;
platforms = platforms.unix;
};
}