1 { lib, buildPythonPackage, fetchPypi, isPy27
2 , pytest, pytest-runner, pytestCheckHook }:
4 buildPythonPackage rec {
11 inherit pname version;
12 sha256 = "12ax07n81vxbyayhwzi1q6x7gfmwmvrvwm1n4ii6qa6fqlp9pzj7";
15 nativeBuildInputs = [ pytest-runner ]; # pytest-runner included in setup-requires
16 checkInputs = [ pytest pytestCheckHook ];
18 pythonImportsCheck = [ "ci" ];
21 description = "Library for working with Continuous Integration services";
22 homepage = "https://github.com/grantmcconnaughey/ci.py";
23 license = licenses.mit;
24 maintainers = with maintainers; [ bcdarwin ];