Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / freebox-api / default.nix
blobcb56a789dedab170d3a0ebf62b541be5a470cbea
1 { lib
2 , aiohttp
3 , buildPythonPackage
4 , fetchFromGitHub
5 , poetry-core
6 , pytestCheckHook
7 , pythonOlder
8 , pythonRelaxDepsHook
9 , urllib3
12 buildPythonPackage rec {
13   pname = "freebox-api";
14   version = "1.1.0";
15   format = "pyproject";
17   disabled = pythonOlder "3.8";
19   src = fetchFromGitHub {
20     owner = "hacf-fr";
21     repo = pname;
22     rev = "refs/tags/v${version}";
23     hash = "sha256-3i9I2RRRxLgyfzegnqjO4g+ad1v4phx6xa8HpWP1cck=";
24   };
26   nativeBuildInputs = [
27     poetry-core
28     pythonRelaxDepsHook
29   ];
31   pythonRelaxDeps = [
32     "urllib3"
33   ];
35   propagatedBuildInputs = [
36     aiohttp
37     urllib3
38   ];
40   nativeCheckInputs = [
41     pytestCheckHook
42   ];
44   pythonImportsCheck = [
45     "freebox_api"
46   ];
48   meta = with lib; {
49     description = "Python module to interact with the Freebox OS API";
50     mainProgram = "freebox_api";
51     homepage = "https://github.com/hacf-fr/freebox-api";
52     changelog = "https://github.com/hacf-fr/freebox-api/releases/tag/v${version}";
53     license = with licenses; [ gpl3Only ];
54     maintainers = with maintainers; [ fab ];
55   };