summary refs log tree commit diff
path: root/pkgs/development/python-modules/konnected/default.nix
blob: b2117aab2d5db6dffa7885f54c920bdf5748262b (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
{ lib
, buildPythonPackage
, fetchPypi
, aiohttp
}:

buildPythonPackage rec {
  pname = "konnected";
  version = "1.2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "b8b4e15c3228b01c9fad3651e09fea1654357ae8c333096e759a1b7d0eb4e789";
  };

  propagatedBuildInputs = [
    aiohttp
  ];

  # no tests implemented
  doCheck = false;

  pythonImportsCheck = [ "konnected" ];

  meta = with lib; {
    description = "Async Python library for interacting with Konnected home automation controllers";
    homepage = "https://github.com/konnected-io/konnected-py";
    license = licenses.mit;
    maintainers = with maintainers; [ dotlambda ];
  };
}