about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/gekitchen/default.nix
blob: 8dc5bbdb3ae61ebd7033bb4c4ee4c482509e00c3 (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
47
48
49
50
51
52
53
{ lib
, aiohttp
, bidict
, buildPythonPackage
, fetchFromGitHub
, humanize
, lxml
, pytestCheckHook
, pythonOlder
, requests
, slixmpp
, websockets
}:

buildPythonPackage rec {
  pname = "gekitchen";
  version = "0.2.19";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "ajmarks";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-eKGundh7j9LqFd71bx86rNBVu2iAcgLN25JfFa39+VA=";
  };

  propagatedBuildInputs = [
    aiohttp
    bidict
    humanize
    lxml
    requests
    slixmpp
    websockets
  ];

  checkInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "gekitchen"
  ];

  meta = with lib; {
    description = "Python SDK for GE smart appliances";
    homepage = "https://github.com/ajmarks/gekitchen";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}