evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / konnected / default.nix
blobe7d7055dfa7dec6e9babb04d4727ea9c645b3098
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   aiohttp,
6 }:
8 buildPythonPackage rec {
9   pname = "konnected";
10   version = "1.2.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "b8b4e15c3228b01c9fad3651e09fea1654357ae8c333096e759a1b7d0eb4e789";
16   };
18   propagatedBuildInputs = [ aiohttp ];
20   # no tests implemented
21   doCheck = false;
23   pythonImportsCheck = [ "konnected" ];
25   meta = with lib; {
26     description = "Async Python library for interacting with Konnected home automation controllers";
27     homepage = "https://github.com/konnected-io/konnected-py";
28     license = licenses.mit;
29     maintainers = with maintainers; [ dotlambda ];
30   };