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

59 lines
915 B
Nix
Raw Normal View History

2017-04-26 20:35:22 +03:00
{ buildPythonPackage
, lib
, fetchPypi
, mock
, pytest
, pytestrunner
, sh
, coverage
, docopt
, requests
, urllib3
, git
, isPy3k
2017-04-26 20:35:22 +03:00
}:
buildPythonPackage rec {
2017-04-26 20:35:22 +03:00
pname = "coveralls";
name = "${pname}-python-${version}";
2018-11-04 13:34:56 +03:00
version = "1.5.1";
2017-04-26 20:35:22 +03:00
# wanted by tests
src = fetchPypi {
inherit pname version;
2018-11-04 13:34:56 +03:00
sha256 = "ab638e88d38916a6cedbf80a9cd8992d5fa55c77ab755e262e00b36792b7cd6d";
2017-04-26 20:35:22 +03:00
};
checkInputs = [
mock
sh
pytest
git
2017-04-26 20:35:22 +03:00
];
buildInputs = [
pytestrunner
];
# FIXME: tests requires .git directory to be present
2017-04-26 20:35:22 +03:00
doCheck = false;
checkPhase = ''
python setup.py test
'';
propagatedBuildInputs = [
coverage
docopt
requests
] ++ lib.optional (!isPy3k) urllib3;
2017-04-26 20:35:22 +03:00
meta = {
description = "Show coverage stats online via coveralls.io";
homepage = https://github.com/coveralls-clients/coveralls-python;
2017-04-26 20:35:22 +03:00
license = lib.licenses.mit;
};
}