python312Packages.nice-go: init at 0.3.8

This commit is contained in:
Robert Schütz 2024-08-31 19:29:51 -07:00
parent a75ce75e11
commit 2f172d3656
2 changed files with 61 additions and 0 deletions

View File

@ -0,0 +1,59 @@
{
buildPythonPackage,
fetchFromGitHub,
aiobotocore,
aiohttp,
lib,
poetry-core,
pycognito,
pytest-aiohttp,
pytest-asyncio,
pytest-cov-stub,
pytestCheckHook,
syrupy,
tenacity,
yarl,
}:
buildPythonPackage rec {
pname = "nice-go";
version = "0.3.8";
pyproject = true;
src = fetchFromGitHub {
owner = "IceBotYT";
repo = "nice-go";
rev = "refs/tags/${version}";
hash = "sha256-d035AA8N2yjkUJh2TBqkp2RLvH89cJXC4mFrny1sJ6k=";
};
build-system = [ poetry-core ];
pythonRelaxDeps = [ "tenacity" ];
dependencies = [
aiobotocore
aiohttp
pycognito
tenacity
yarl
];
pythonImportsCheck = [ "nice_go" ];
nativeCheckInputs = [
pytest-aiohttp
pytest-asyncio
pytest-cov-stub
pytestCheckHook
syrupy
];
meta = {
changelog = "https://github.com/IceBotYT/nice-go/blob/${src.rev}/CHANGELOG.md";
description = "Control various Nice access control products";
homepage = "https://github.com/IceBotYT/nice-go";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}

View File

@ -8822,6 +8822,8 @@ self: super: with self; {
nibe = callPackage ../development/python-modules/nibe { };
nice-go = callPackage ../development/python-modules/nice-go { };
nidaqmx = callPackage ../development/python-modules/nidaqmx { };
nikola = callPackage ../development/python-modules/nikola { };