9 buildPythonPackage rec {
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
17 inherit pname version;
18 hash = "sha256-R/6bLsXOKGxiJDZUvvOuvLp3usEhfg698qvvgOwBXYk=";
22 substituteInPlace setup.py \
23 --replace "'pytest-runner', " ""
26 nativeCheckInputs = [ pytestCheckHook ];
28 pythonImportsCheck = [ "ci" ];
31 description = "Library for working with Continuous Integration services";
32 homepage = "https://github.com/grantmcconnaughey/ci.py";
33 changelog = "https://github.com/grantmcconnaughey/ci.py/blob/master/CHANGELOG.md";
34 license = licenses.mit;
35 maintainers = with maintainers; [ bcdarwin ];