ef4442e827
See f63eb5857352705665411130d4f1638d55dd8c58 The `requests2` attribute now throws an error informing that `requests` should be used instead.
52 lines
798 B
Nix
52 lines
798 B
Nix
{ buildPythonPackage
|
|
, lib
|
|
, fetchPypi
|
|
, mock
|
|
, pytest_27
|
|
, sh
|
|
, coverage
|
|
, docopt
|
|
, requests
|
|
, git
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "coveralls";
|
|
name = "${pname}-python-${version}";
|
|
version = "1.1";
|
|
|
|
# wanted by tests
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0238hgdwbvriqxrj22zwh0rbxnhh9c6hh75i39ll631vq62h65il";
|
|
};
|
|
|
|
buildInputs = [
|
|
mock
|
|
sh
|
|
pytest_27
|
|
git
|
|
];
|
|
|
|
# FIXME: tests requires .git directory to be present
|
|
doCheck = false;
|
|
|
|
checkPhase = ''
|
|
python setup.py test
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
coverage
|
|
docopt
|
|
requests
|
|
];
|
|
|
|
meta = {
|
|
description = "Show coverage stats online via coveralls.io";
|
|
homepage = https://github.com/coveralls-clients/coveralls-python;
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|
|
|
|
|