59 lines
917 B
Nix
59 lines
917 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.9.2";
|
||
|
|
||
|
# wanted by tests
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "8e3315e8620bb6b3c6f3179a75f498e7179c93b3ddc440352404f941b1f70524";
|
||
|
};
|
||
|
|
||
|
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;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
|