about summary refs log tree commit diff
path: root/pkgs/development/python-modules/lakeside/default.nix
blob: bb33367d9647f14fe384f1f94abfd3979dca15d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{ lib
, buildPythonPackage
, fetchFromGitHub
, protobuf
, pycryptodome
, pythonOlder
, requests
}:

buildPythonPackage rec {
  pname = "lakeside";
  version = "0.13";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "nkgilley";
    repo = "python-lakeside";
    rev = "refs/tags/${version}";
    hash = "sha256-Y5g78trkwOF3jsbgTv0uVkvfB1HZN+w1T6xIorxGAhg=";
  };

  propagatedBuildInputs = [
    protobuf
    pycryptodome
    requests
  ];

  # Module has no tests
  doCheck = false;

  pythonImportsCheck = [
    "lakeside"
  ];

  meta = with lib; {
    description = "Library for controlling LED bulbs from Eufy";
    homepage = "https://github.com/nkgilley/python-lakeside";
    changelog = "https://github.com/nkgilley/python-lakeside/releases/tag/${version}";
    license = licenses.asl20;
    maintainers = with maintainers; [ fab ];
  };
}