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

28 lines
683 B
Nix
Raw Normal View History

2017-08-25 16:39:49 +00:00
{ stdenv, buildPythonPackage, fetchPypi, isPy26, argparse, hypothesis, py
2017-08-24 17:34:20 +00:00
, setuptools_scm
}:
buildPythonPackage rec {
2017-08-24 17:34:20 +00:00
version = "3.2.1";
pname = "pytest";
name = "${pname}-${version}";
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-08-24 17:34:20 +00:00
sha256 = "4c2159d2be2b4e13fa293e7a72bdf2f06848a017150d5c6d35112ce51cfd74ce";
};
2017-08-24 17:34:20 +00:00
buildInputs = [ hypothesis setuptools_scm ];
propagatedBuildInputs = [ py ]
++ (stdenv.lib.optional isPy26 argparse);
meta = with stdenv.lib; {
maintainers = with maintainers; [ domenkozar lovek323 madjar lsix ];
platforms = platforms.unix;
};
}