depot/third_party/nixpkgs/pkgs/development/python-modules/connect_box/default.nix
Default email ec92d4d331 Project import generated by Copybara.
GitOrigin-RevId: 540dccb2aeaffa9dc69bfdc41c55abd7ccc6baa3
2021-05-28 11:39:13 +02:00

42 lines
1 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, aiohttp
, attrs
, defusedxml
}:
buildPythonPackage rec {
pname = "connect-box";
version = "0.3.0";
src = fetchPypi {
pname = "connect_box";
inherit version;
sha256 = "sha256-d1KqVKaHlZDm2o1GJ7r8KoONwfd1lxXexJxavCvjfW8=";
};
propagatedBuildInputs = [
aiohttp
attrs
defusedxml
];
# no tests are present
doCheck = false;
pythonImportsCheck = [ "connect_box" ];
meta = with lib; {
description = "Interact with a Compal CH7465LG cable modem/router";
longDescription = ''
Python Client for interacting with the cable modem/router Compal
CH7465LG which is provided under different names by various ISP
in Europe, e.g., UPC Connect Box (CH), Irish Virgin Media Super
Hub 3.0 (IE), Ziggo Connectbox (NL) or Unitymedia Connect Box (DE).
'';
homepage = "https://github.com/home-assistant-ecosystem/python-connect-box";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}