summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/blinkpy/default.nix
blob: d5f6bae0a912a66bb739db29d511d8842ce45f1a (plain)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  aiofiles,
  aiohttp,
  pytest-asyncio,
  pytestCheckHook,
  python-dateutil,
  python-slugify,
  requests,
  setuptools,
  sortedcontainers,
}:

buildPythonPackage (finalAttrs: {
  pname = "blinkpy";
  version = "0.25.9";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "fronzbot";
    repo = "blinkpy";
    tag = "v${finalAttrs.version}";
    hash = "sha256-D85AXTvpIZhWhY6wZefe7tcdk9RJrYdBM1hdyN0Vsas=";
  };

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace-fail "wheel>=0.40,<0.48" wheel \
      --replace-fail "setuptools>=68,<84" setuptools
  '';

  build-system = [ setuptools ];

  pythonRelaxDeps = [
    "aiohttp"
    "requests"
  ];

  dependencies = [
    aiofiles
    aiohttp
    python-dateutil
    python-slugify
    requests
    sortedcontainers
  ];

  nativeCheckInputs = [
    pytest-asyncio
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "blinkpy"
    "blinkpy.api"
    "blinkpy.auth"
    "blinkpy.blinkpy"
    "blinkpy.camera"
    "blinkpy.helpers.util"
    "blinkpy.sync_module"
  ];

  meta = {
    description = "Python library for the Blink Camera system";
    homepage = "https://github.com/fronzbot/blinkpy";
    changelog = "https://github.com/fronzbot/blinkpy/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ dotlambda ];
  };
})