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

43 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, attrs, hypothesis, py
2018-04-04 18:15:54 +00:00
, setuptools_scm, setuptools, six, pluggy, funcsigs, isPy3k, more-itertools
2018-08-13 07:31:19 +00:00
, atomicwrites, mock, writeText, pathlib2
2017-08-24 17:34:20 +00:00
}:
buildPythonPackage rec {
2018-08-25 05:49:17 +00:00
version = "3.7.2";
pname = "pytest";
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-08-25 05:49:17 +00:00
sha256 = "3459a123ad5532852d36f6f4501dfe1acf4af1dd9541834a164666aa40395b02";
};
2018-06-21 05:37:18 +00:00
checkInputs = [ hypothesis mock ];
buildInputs = [ setuptools_scm ];
2018-06-12 16:47:06 +00:00
propagatedBuildInputs = [ attrs py setuptools six pluggy more-itertools atomicwrites]
2018-08-13 07:31:19 +00:00
++ stdenv.lib.optionals (!isPy3k) [ funcsigs pathlib2 ];
2018-06-12 16:47:06 +00: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" ''
postFixupHooks+=(
'find $out -name .pytest_cache -type d -exec rm -rf {} +'
)
'';
meta = with stdenv.lib; {
maintainers = with maintainers; [ domenkozar lovek323 madjar lsix ];
platforms = platforms.unix;
2017-12-30 11:26:35 +00:00
description = "Framework for writing tests";
};
}