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

28 lines
695 B
Nix
Raw Normal View History

2017-08-25 16:39:49 +00:00
{ stdenv, buildPythonPackage, fetchPypi, isPy26, argparse, hypothesis, py
, setuptools_scm, setuptools
2017-08-24 17:34:20 +00:00
}:
buildPythonPackage rec {
2017-11-15 20:25:32 +00:00
version = "3.2.5";
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;
2017-11-15 20:25:32 +00:00
sha256 = "6d5bd4f7113b444c55a3bbb5c738a3dd80d43563d063fc42dcb0aaefbdd78b81";
};
checkInputs = [ hypothesis ];
buildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ py setuptools ]
++ (stdenv.lib.optional isPy26 argparse);
meta = with stdenv.lib; {
maintainers = with maintainers; [ domenkozar lovek323 madjar lsix ];
platforms = platforms.unix;
};
}