ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / connect_box / default.nix
blobcfcb1d9468249c845896128cc8537fe9c62da1ee
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , aiohttp
5 , attrs
6 , defusedxml
7 }:
9 buildPythonPackage rec {
10   pname = "connect-box";
11   version = "0.3.0";
13   src = fetchPypi {
14     pname = "connect_box";
15     inherit version;
16     sha256 = "sha256-d1KqVKaHlZDm2o1GJ7r8KoONwfd1lxXexJxavCvjfW8=";
17   };
19   propagatedBuildInputs = [
20     aiohttp
21     attrs
22     defusedxml
23   ];
25   # no tests are present
26   doCheck = false;
28   pythonImportsCheck = [ "connect_box" ];
30   meta = with lib; {
31     description = "Interact with a Compal CH7465LG cable modem/router";
32     longDescription = ''
33       Python Client for interacting with the cable modem/router Compal
34       CH7465LG which is provided under different names by various ISP
35       in Europe, e.g., UPC Connect Box (CH), Irish Virgin Media Super
36       Hub 3.0 (IE), Ziggo Connectbox (NL) or Unitymedia Connect Box (DE).
37     '';
38     homepage = "https://github.com/home-assistant-ecosystem/python-connect-box";
39     license = with licenses; [ mit ];
40     maintainers = with maintainers; [ fab ];
41   };