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

30 lines
835 B
Nix
Raw Normal View History

2017-12-30 12:26:35 +01:00
{ stdenv, buildPythonPackage, fetchPypi, isPy26, argparse, attrs, hypothesis, py
, setuptools_scm, setuptools, six, pluggy, funcsigs, isPy3k
2017-08-24 19:34:20 +02:00
}:
buildPythonPackage rec {
2018-04-01 13:48:13 +02:00
version = "3.4.2";
pname = "pytest";
preCheck = ''
# don't test bash builtins
rm testing/test_argcomplete.py
'';
2017-08-25 18:39:49 +02:00
src = fetchPypi {
inherit pname version;
2018-04-01 13:48:13 +02:00
sha256 = "1idq7s8da2p82ynf9fcg77rzj1dsagg3bpsrlslf31x7q4vasyqi";
};
checkInputs = [ hypothesis ];
buildInputs = [ setuptools_scm ];
2017-12-30 12:26:35 +01:00
propagatedBuildInputs = [ attrs py setuptools six pluggy ]
++ (stdenv.lib.optional (!isPy3k) funcsigs)
++ (stdenv.lib.optional isPy26 argparse);
meta = with stdenv.lib; {
maintainers = with maintainers; [ domenkozar lovek323 madjar lsix ];
platforms = platforms.unix;
2017-12-30 12:26:35 +01:00
description = "Framework for writing tests";
};
}