biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / nice-go / default.nix
blob946d129e95c445c2948e9f1f02f332ba9bf81354
2   buildPythonPackage,
3   fetchFromGitHub,
4   aiobotocore,
5   aiohttp,
6   lib,
7   poetry-core,
8   pycognito,
9   pytest-aiohttp,
10   pytest-asyncio,
11   pytest-cov-stub,
12   pytestCheckHook,
13   syrupy,
14   tenacity,
15   yarl,
18 buildPythonPackage rec {
19   pname = "nice-go";
20   version = "0.3.9";
21   pyproject = true;
23   src = fetchFromGitHub {
24     owner = "IceBotYT";
25     repo = "nice-go";
26     rev = "refs/tags/${version}";
27     hash = "sha256-Gb6VDHADtqmVXMPwic0NokWm5GmhTpy7g+o/rYxrBZk=";
28   };
30   build-system = [ poetry-core ];
32   pythonRelaxDeps = [ "tenacity" ];
34   dependencies = [
35     aiobotocore
36     aiohttp
37     pycognito
38     tenacity
39     yarl
40   ];
42   pythonImportsCheck = [ "nice_go" ];
44   nativeCheckInputs = [
45     pytest-aiohttp
46     pytest-asyncio
47     pytest-cov-stub
48     pytestCheckHook
49     syrupy
50   ];
52   meta = {
53     changelog = "https://github.com/IceBotYT/nice-go/blob/${src.rev}/CHANGELOG.md";
54     description = "Control various Nice access control products";
55     homepage = "https://github.com/IceBotYT/nice-go";
56     license = lib.licenses.mit;
57     maintainers = with lib.maintainers; [ dotlambda ];
58   };