python313Packages.niko-home-control: drop

This commit is contained in:
Robert Schütz
2025-01-09 04:08:25 -08:00
parent b4276ef1fd
commit 5df8a84392
3 changed files with 1 additions and 44 deletions
@@ -1,42 +0,0 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
nclib,
netaddr,
netifaces,
pythonOlder,
}:
buildPythonPackage rec {
pname = "niko-home-control";
version = "0.3.0";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "NoUseFreak";
repo = pname;
rev = version;
sha256 = "sha256-n/uQAX2LgxeGTRF56+G5vm5wbeTQQQODV4EKaPgKw1k=";
};
propagatedBuildInputs = [
nclib
netaddr
netifaces
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "nikohomecontrol" ];
meta = with lib; {
description = "Python SDK for Niko Home Control";
homepage = "https://github.com/NoUseFreak/niko-home-control";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}
+1
View File
@@ -379,6 +379,7 @@ mapAliases ({
mypy-boto3-mobile = throw "mypy-boto3-mobile was removed because it is unmaintained"; # added 2024-09-04
net2grid = gridnet; # add 2022-04-22
nghttp2 = throw "in 1.52.0 removed deprecated python bindings."; # added 2023-06-08
niko-home-control = throw "niko-home-control was removed because Home Assistant switched to nhc"; # added 2025-01-09
ninja-python = ninja; # add 2022-08-03
nose = throw "nose has been removed since it has been deprecated and unmaintained for almost a decade and does not work on Python 3.12; please switch to pytest or another test runner/framework"; # added 2024-07-28
nose3 = throw "nose3 has been removed since it is unmaintained and does not work with Python 3.12"; # added 2024-07-28
-2
View File
@@ -9242,8 +9242,6 @@ self: super: with self; {
nikola = callPackage ../development/python-modules/nikola { };
niko-home-control = callPackage ../development/python-modules/niko-home-control { };
nilearn = callPackage ../development/python-modules/nilearn { };
niluclient = callPackage ../development/python-modules/niluclient { };