30 lines
878 B
Nix
30 lines
878 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, isPy26, argparse, attrs, hypothesis, py
|
|
, setuptools_scm, setuptools, six, pluggy, funcsigs, isPy3k, more-itertools
|
|
}:
|
|
buildPythonPackage rec {
|
|
version = "3.5.0";
|
|
pname = "pytest";
|
|
|
|
preCheck = ''
|
|
# don't test bash builtins
|
|
rm testing/test_argcomplete.py
|
|
'';
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "fae491d1874f199537fd5872b5e1f0e74a009b979df9d53d1553fd03da1703e1";
|
|
};
|
|
|
|
checkInputs = [ hypothesis ];
|
|
buildInputs = [ setuptools_scm ];
|
|
propagatedBuildInputs = [ attrs py setuptools six pluggy more-itertools ]
|
|
++ (stdenv.lib.optional (!isPy3k) funcsigs)
|
|
++ (stdenv.lib.optional isPy26 argparse);
|
|
|
|
meta = with stdenv.lib; {
|
|
maintainers = with maintainers; [ domenkozar lovek323 madjar lsix ];
|
|
platforms = platforms.unix;
|
|
description = "Framework for writing tests";
|
|
};
|
|
}
|