Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / dirigera / default.nix
blob453c12e6844542014a2ccb5b0c075d958169c785
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pydantic,
6   pytestCheckHook,
7   pythonOlder,
8   requests,
9   setuptools,
10   websocket-client,
13 buildPythonPackage rec {
14   pname = "dirigera";
15   version = "1.1.5";
16   pyproject = true;
18   disabled = pythonOlder "3.7";
20   src = fetchFromGitHub {
21     owner = "Leggin";
22     repo = "dirigera";
23     rev = "refs/tags/v${version}";
24     hash = "sha256-nR3L2Uwoxyr2TqzuaDoRqJlaVuunusOBV2B05cG6V8E=";
25   };
27   build-system = [ setuptools ];
29   dependencies = [
30     pydantic
31     requests
32     websocket-client
33   ];
35   nativeCheckInputs = [ pytestCheckHook ];
37   pythonImportsCheck = [ "dirigera" ];
39   meta = with lib; {
40     description = "Module for controlling the IKEA Dirigera Smart Home Hub";
41     homepage = "https://github.com/Leggin/dirigera";
42     changelog = "https://github.com/Leggin/dirigera/releases/tag/v${version}";
43     license = licenses.mit;
44     maintainers = with maintainers; [ fab ];
45     mainProgram = "generate-token";
46   };