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

37 lines
1006 B
Nix
Raw Normal View History

2017-12-30 11:26:35 +00:00
{ stdenv, buildPythonPackage, fetchPypi, isPy26, argparse, attrs, hypothesis, py
2018-04-04 18:15:54 +00:00
, setuptools_scm, setuptools, six, pluggy, funcsigs, isPy3k, more-itertools
2018-06-12 16:47:06 +00:00
, atomicwrites
2017-08-24 17:34:20 +00:00
}:
buildPythonPackage rec {
2018-06-12 16:47:06 +00:00
version = "3.6.1";
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-06-12 16:47:06 +00:00
sha256 = "32c49a69566aa7c333188149ad48b58ac11a426d5352ea3d8f6ce843f88199cb";
};
checkInputs = [ hypothesis ];
buildInputs = [ setuptools_scm ];
2018-06-12 16:47:06 +00:00
propagatedBuildInputs = [ attrs py setuptools six pluggy more-itertools atomicwrites]
2017-12-30 11:26:35 +00:00
++ (stdenv.lib.optional (!isPy3k) funcsigs)
++ (stdenv.lib.optional isPy26 argparse);
2018-06-12 16:47:06 +00:00
checkPhase = ''
runHook preCheck
$out/bin/py.test -x testing/
runHook postCheck
'';
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";
};
}