nixpkgs/pkgs/development/python-modules/pytest/default.nix
2017-04-18 11:33:22 +02:00

25 lines
651 B
Nix

{ stdenv, buildPythonPackage, fetchurl, isPy26, argparse, hypothesis, py }:
buildPythonPackage rec {
name = "pytest-${version}";
version = "3.0.7";
preCheck = ''
# don't test bash builtins
rm testing/test_argcomplete.py
'';
src = fetchurl {
url = "mirror://pypi/p/pytest/${name}.tar.gz";
sha256 = "b70696ebd1a5e6b627e7e3ac1365a4bc60aaf3495e843c1e70448966c5224cab";
};
buildInputs = [ hypothesis ];
propagatedBuildInputs = [ py ]
++ (stdenv.lib.optional isPy26 argparse);
meta = with stdenv.lib; {
maintainers = with maintainers; [ domenkozar lovek323 madjar lsix ];
platforms = platforms.unix;
};
}