nixpkgs/pkgs/development/python-modules/coveralls/default.nix
2018-04-08 11:34:53 +02:00

59 lines
915 B
Nix

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