python3Packages.aioinflux: drop (#480504)

This commit is contained in:
Fernando Rodrigues
2026-01-20 09:41:27 +00:00
committed by GitHub
3 changed files with 1 additions and 46 deletions
@@ -1,44 +0,0 @@
{
lib,
buildPythonPackage,
fetchPypi,
aiohttp,
ciso8601,
setuptools,
pandas,
}:
buildPythonPackage rec {
pname = "aioinflux";
version = "0.9.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-cg0FapBprDaI+Ds1eGsjTIkK+3yaN560IeU3nh6rxcs=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
ciso8601
pandas
];
# Tests require InfluxDB server
doCheck = false;
pythonImportsCheck = [ "aioinflux" ];
meta = {
description = "Asynchronous Python client for InfluxDB";
homepage = "https://github.com/gusutabopb/aioinflux";
changelog = "https://github.com/gusutabopb/aioinflux/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
liamdiprose
lopsided98
];
};
}
+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
aioinflux = throw "'aioinflux' was removed because it is abandonned upstream. For InfluxDB v2+ support, please use the official Python client library"; # Added 2026-01-15
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
-2
View File
@@ -362,8 +362,6 @@ self: super: with self; {
aioimmich = callPackage ../development/python-modules/aioimmich { };
aioinflux = callPackage ../development/python-modules/aioinflux { };
aioitertools = callPackage ../development/python-modules/aioitertools { };
aiojellyfin = callPackage ../development/python-modules/aiojellyfin { };