summary refs log tree commit diff
path: root/pkgs/development/python-modules/btsmarthub_devicelist/default.nix
blob: 59fb071c744c79d8d747a9be168dfa104d6a8a8b (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,
  pytestCheckHook,
  pythonOlder,
  requests,
  responses,
}:
buildPythonPackage rec {
  pname = "btsmarthub_devicelist";
  version = "0.2.3";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "jxwolstenholme";
    repo = "btsmarthub_devicelist";
    rev = "${version}";
    hash = "sha256-7ncxCpY+A2SuSFa3k21QchrmFs1dPRUMb1r1z/laa6M=";
  };

  propagatedBuildInputs = [
    requests
  ];

  nativeCheckInputs = [
    responses
    requests
    pytestCheckHook
  ];

  disabledTests = [
    "test_btsmarthub2_detection_neither_router_present"
  ];

  meta = with lib; {
    description = "Retrieve a list of devices from a bt smarthub or bt smarthub 2 on a local network";
    homepage = "https://github.com/jxwolstenholme/btsmarthub_devicelist";
    license = licenses.mit;
    maintainers = with maintainers; [jamiemagee];
  };
}