1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-03 19:15:39 +00:00
nixpkgs/pkgs/development/python-modules/coveralls/default.nix

52 lines
798 B
Nix
Raw Normal View History

2017-04-26 18:35:22 +01:00
{ buildPythonPackage
, lib
, fetchPypi
, mock
, pytest_27
, sh
, coverage
, docopt
, requests
, git
2017-04-26 18:35:22 +01:00
}:
buildPythonPackage rec {
2017-04-26 18:35:22 +01:00
pname = "coveralls";
name = "${pname}-python-${version}";
2017-04-26 18:35:22 +01:00
version = "1.1";
# wanted by tests
src = fetchPypi {
inherit pname version;
2017-04-26 18:35:22 +01:00
sha256 = "0238hgdwbvriqxrj22zwh0rbxnhh9c6hh75i39ll631vq62h65il";
};
buildInputs = [
mock
sh
pytest_27
git
2017-04-26 18:35:22 +01:00
];
# 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
];
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;
};
}