mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
Merge pull request #335183 from Tochiaha/ilcli
python312Packages.ilcli: init at 0.3.2
This commit is contained in:
commit
afe63a0ea0
34
pkgs/development/python-modules/ilcli/default.nix
Normal file
34
pkgs/development/python-modules/ilcli/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user