ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / konnected / default.nix
blobb2117aab2d5db6dffa7885f54c920bdf5748262b
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , aiohttp
5 }:
7 buildPythonPackage rec {
8   pname = "konnected";
9   version = "1.2.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "b8b4e15c3228b01c9fad3651e09fea1654357ae8c333096e759a1b7d0eb4e789";
14   };
16   propagatedBuildInputs = [
17     aiohttp
18   ];
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   };