mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
37 lines
1,006 B
Nix
37 lines
1,006 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, isPy26, argparse, attrs, hypothesis, py
|
|
, setuptools_scm, setuptools, six, pluggy, funcsigs, isPy3k, more-itertools
|
|
, atomicwrites
|
|
}:
|
|
buildPythonPackage rec {
|
|
version = "3.6.1";
|
|
pname = "pytest";
|
|
|
|
preCheck = ''
|
|
# don't test bash builtins
|
|
rm testing/test_argcomplete.py
|
|
'';
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "32c49a69566aa7c333188149ad48b58ac11a426d5352ea3d8f6ce843f88199cb";
|
|
};
|
|
|
|
checkInputs = [ hypothesis ];
|
|
buildInputs = [ setuptools_scm ];
|
|
propagatedBuildInputs = [ attrs py setuptools six pluggy more-itertools atomicwrites]
|
|
++ (stdenv.lib.optional (!isPy3k) funcsigs)
|
|
++ (stdenv.lib.optional isPy26 argparse);
|
|
|
|
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;
|
|
description = "Framework for writing tests";
|
|
};
|
|
}
|