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

60 lines
908 B
Nix
Raw Normal View History

2017-04-26 18:35:22 +01:00
{ buildPythonPackage
, lib
, fetchPypi
, isPy27
, mock
, pytest
, pytestrunner
, sh
, coverage
, docopt
, requests
, urllib3
, git
, isPy3k
2017-04-26 18:35:22 +01:00
}:
buildPythonPackage rec {
2017-04-26 18:35:22 +01:00
pname = "coveralls";
2020-06-06 07:47:02 +01:00
version = "2.0.0";
disabled = isPy27;
2017-04-26 18:35:22 +01:00
# wanted by tests
src = fetchPypi {
inherit pname version;
2020-06-06 07:47:02 +01:00
sha256 = "d213f5edd49053d03f0db316ccabfe17725f2758147afc9a37eaca9d8e8602b5";
2017-04-26 18:35:22 +01:00
};
checkInputs = [
mock
sh
pytest
git
2017-04-26 18:35:22 +01:00
];
buildInputs = [
pytestrunner
];
# FIXME: tests requires .git directory to be present
2017-04-26 18:35:22 +01:00
doCheck = false;
checkPhase = ''
python setup.py test
'';
propagatedBuildInputs = [
coverage
docopt
requests
] ++ lib.optional (!isPy3k) urllib3;
2017-04-26 18:35:22 +01:00
meta = {
description = "Show coverage stats online via coveralls.io";
homepage = "https://github.com/coveralls-clients/coveralls-python";
2017-04-26 18:35:22 +01:00
license = lib.licenses.mit;
};
}