summary refs log tree commit diff
path: root/pkgs/development/python-modules/logi-circle/default.nix
blob: 51d66dd406722e62c6aa32900318cf449f18c898 (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
45
46
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, aiohttp
, python-slugify
, pytz
, aresponses
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "logi-circle";
  version = "0.2.3";

  disabled = pythonOlder "3.6";

  format = "setuptools";

  src = fetchFromGitHub {
    owner = "evanjd";
    repo = "python-logi-circle";
    rev = "v${version}";
    hash = "sha256-Q+uoaimJjn6MiO3jXGYyZ6cS0tqI06Azkq1QbNq2FN8=";
  };

  propagatedBuildInputs = [
    aiohttp
    python-slugify
    pytz
  ];

  nativeCheckInputs = [
    aresponses
    pytestCheckHook
  ];

  pythonImportsCheck = [ "logi_circle" ];

  meta = {
    description = "A Python library to communicate with Logi Circle cameras";
    homepage = "https://github.com/evanjd/python-logi-circle";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ dotlambda ];
  };
}