python3Packages.aiosenz: drop

This commit is contained in:
Robert Schütz
2025-12-29 14:55:36 -08:00
parent be37f47e66
commit aaa5d5a673
3 changed files with 1 additions and 45 deletions
@@ -1,43 +0,0 @@
{
lib,
authlib,
buildPythonPackage,
fetchFromGitHub,
httpx,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "aiosenz";
version = "1.0.0";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "milanmeu";
repo = "aiosenz";
rev = version;
hash = "sha256-ODdWPS14zzptxuS6mff51f0s1SYnIqjF40DmvT0sL0w=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
httpx
authlib
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "aiosenz" ];
meta = {
description = "Python wrapper for the nVent Raychem SENZ RestAPI";
homepage = "https://github.com/milanmeu/aiosenz";
license = with lib.licenses; [ lgpl3Plus ];
maintainers = with lib.maintainers; [ fab ];
};
}
+1
View File
@@ -58,6 +58,7 @@ mapAliases {
# keep-sorted start case=no numeric=yes
abodepy = throw "'abodepy' has been renamed to/replaced by 'jaraco-abode'"; # Converted to throw 2025-10-29
aiosenz = throw "aiosenz was removed because Home Assistant switched to pysenz"; # added 2025-12-29
amazon-kclpy = throw "amazon-kclpy has been removed because it has been marked as broken since at least November 2024."; # Added 2025-10-03
amazon_kclpy = throw "'amazon_kclpy' has been renamed to/replaced by 'amazon-kclpy'"; # Converted to throw 2025-10-29
amqplib = throw "amqplib has been removed as it was unmaintained upstream"; # Added 2025-11-22
-2
View File
@@ -482,8 +482,6 @@ self: super: with self; {
aiosendspin = callPackage ../development/python-modules/aiosendspin { };
aiosenz = callPackage ../development/python-modules/aiosenz { };
aioserial = callPackage ../development/python-modules/aioserial { };
aioshelly = callPackage ../development/python-modules/aioshelly { };