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

52 lines
800 B
Nix
Raw Normal View History

2017-04-26 17:35:22 +00:00
{ buildPythonPackage
, lib
, fetchPypi
, mock
, pytest_27
, sh
, coverage
, docopt
, requests2
, git
2017-04-26 17:35:22 +00:00
}:
buildPythonPackage rec {
2017-04-26 17:35:22 +00:00
pname = "coveralls";
name = "${pname}-python-${version}";
2017-04-26 17:35:22 +00:00
version = "1.1";
# wanted by tests
src = fetchPypi {
inherit pname version;
2017-04-26 17:35:22 +00:00
sha256 = "0238hgdwbvriqxrj22zwh0rbxnhh9c6hh75i39ll631vq62h65il";
};
buildInputs = [
mock
sh
pytest_27
git
2017-04-26 17:35:22 +00:00
];
# FIXME: tests requires .git directory to be present
2017-04-26 17:35:22 +00:00
doCheck = false;
checkPhase = ''
python setup.py test
'';
propagatedBuildInputs = [
coverage
docopt
requests2
];
2017-04-26 17:35:22 +00:00
meta = {
description = "Show coverage stats online via coveralls.io";
homepage = https://github.com/coveralls-clients/coveralls-python;
2017-04-26 17:35:22 +00:00
license = lib.licenses.mit;
};
}