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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
1.0 KiB
Nix
Raw Normal View History

2017-04-26 17:35:22 +00:00
{ buildPythonPackage
, lib
, fetchPypi
, isPy27
, mock
, pytest
, pytest-runner
, sh
, coverage
, docopt
, requests
, urllib3
, git
, isPy3k
2017-04-26 17:35:22 +00:00
}:
buildPythonPackage rec {
2017-04-26 17:35:22 +00:00
pname = "coveralls";
version = "3.3.1";
format = "setuptools";
disabled = isPy27;
2017-04-26 17:35:22 +00:00
# wanted by tests
src = fetchPypi {
inherit pname version;
sha256 = "b32a8bb5d2df585207c119d6c01567b81fba690c9c10a753bfe27a335bfc43ea";
2017-04-26 17:35:22 +00:00
};
nativeCheckInputs = [
mock
sh
pytest
git
2017-04-26 17:35:22 +00:00
];
buildInputs = [
pytest-runner
];
postPatch = ''
sed -i "s/'coverage>=\([^,]\+\),.*',$/'coverage>=\1',/" setup.py
'';
# FIXME: tests requires .git directory to be present
2017-04-26 17:35:22 +00:00
doCheck = false;
checkPhase = ''
python setup.py test
'';
propagatedBuildInputs = [
coverage
docopt
requests
] ++ lib.optional (!isPy3k) urllib3;
2017-04-26 17:35:22 +00:00
meta = {
description = "Show coverage stats online via coveralls.io";
homepage = "https://github.com/coveralls-clients/coveralls-python";
2017-04-26 17:35:22 +00:00
license = lib.licenses.mit;
};
}