mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
python312Packages.nice-go: init at 0.3.8
This commit is contained in:
parent
a75ce75e11
commit
2f172d3656
59
pkgs/development/python-modules/nice-go/default.nix
Normal file
59
pkgs/development/python-modules/nice-go/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user