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

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.2.0";
# wanted by tests
src = fetchPypi {
inherit pname version;
sha256 = "510682001517bcca1def9f6252df6ce730fcb9831c62d9fff7c7d55b6fdabdf3";
};
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;
};
}