at master 704 B view raw
1{ 2 buildPythonPackage, 3 fetchFromGitHub, 4 lib, 5 pytestCheckHook, 6 setuptools, 7}: 8 9buildPythonPackage { 10 pname = "ilcli"; 11 version = "0.3.2"; 12 pyproject = true; 13 14 src = fetchFromGitHub { 15 owner = "cloudant"; 16 repo = "ilcli"; 17 # no tags 18 rev = "2c033240a18603dd99c2dd8f6185ad0f0169c8c7"; 19 hash = "sha256-6aLkzpeS1xeIbTwFFIT7V1KWOaFLLq3opjIxnUuXOBE="; 20 }; 21 22 build-system = [ setuptools ]; 23 24 nativeCheckInputs = [ pytestCheckHook ]; 25 26 pythonImportsCheck = [ "ilcli" ]; 27 28 meta = { 29 description = "I like command-line interfaces"; 30 homepage = "https://github.com/cloudant/ilcli"; 31 license = lib.licenses.asl20; 32 maintainers = with lib.maintainers; [ tochiaha ]; 33 }; 34}