Merge pull request #279773 from fabaff/connect-box-bump

python311Packages.connect-box: 0.3.0 -> 0.3.1
This commit is contained in:
Nick Cao 2024-01-09 13:10:29 -05:00 committed by GitHub
commit 324bc1863a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,19 +1,23 @@
{ lib
, buildPythonPackage
, fetchPypi
, aiohttp
, attrs
, buildPythonPackage
, defusedxml
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "connect-box";
version = "0.3.0";
version = "0.3.1";
format = "setuptools";
disabled = pythonOlder "3.9";
src = fetchPypi {
pname = "connect_box";
inherit version;
hash = "sha256-d1KqVKaHlZDm2o1GJ7r8KoONwfd1lxXexJxavCvjfW8=";
hash = "sha256-x1ozcj3IL+iI/QtS12yEudCqNknCmyb5ew88Z39xaLA=";
};
propagatedBuildInputs = [
@ -22,10 +26,12 @@ buildPythonPackage rec {
defusedxml
];
# no tests are present
# No tests are present
doCheck = false;
pythonImportsCheck = [ "connect_box" ];
pythonImportsCheck = [
"connect_box"
];
meta = with lib; {
description = "Interact with a Compal CH7465LG cable modem/router";
@ -36,6 +42,7 @@ buildPythonPackage rec {
Hub 3.0 (IE), Ziggo Connectbox (NL) or Unitymedia Connect Box (DE).
'';
homepage = "https://github.com/home-assistant-ecosystem/python-connect-box";
changelog = "https://github.com/home-assistant-ecosystem/python-connect-box/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};