Merge pull request #335183 from Tochiaha/ilcli

python312Packages.ilcli: init at 0.3.2
This commit is contained in:
OTABI Tomoya 2024-08-23 09:39:20 +09:00 committed by GitHub
commit afe63a0ea0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{
buildPythonPackage,
fetchFromGitHub,
lib,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "ilcli";
version = "0.3.2";
pyproject = true;
src = fetchFromGitHub {
owner = "cloudant";
repo = "ilcli";
# no tags
rev = "2c033240a18603dd99c2dd8f6185ad0f0169c8c7";
hash = "sha256-6aLkzpeS1xeIbTwFFIT7V1KWOaFLLq3opjIxnUuXOBE=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "ilcli" ];
meta = {
description = "I like command-line interfaces";
homepage = "https://github.com/cloudant/ilcli";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ tochiaha ];
};
}

View File

@ -5924,6 +5924,8 @@ self: super: with self; {
ilua = callPackage ../development/python-modules/ilua { };
ilcli = callPackage ../development/python-modules/ilcli { };
imagecodecs-lite = callPackage ../development/python-modules/imagecodecs-lite { };
imagecorruptions = callPackage ../development/python-modules/imagecorruptions { };