{ buildPythonPackage , lib , fetchPypi , isPy27 , mock , pytest , pytestrunner , sh , coverage , docopt , requests , urllib3 , git , isPy3k }: buildPythonPackage rec { pname = "coveralls"; version = "2.1.2"; disabled = isPy27; # wanted by tests src = fetchPypi { inherit pname version; sha256 = "4430b862baabb3cf090d36d84d331966615e4288d8a8c5957e0fd456d0dd8bd6"; }; 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; }; }