Unverified Commit 8ba64911 authored by Fernando Rodrigues's avatar Fernando Rodrigues Committed by GitHub
Browse files

python3Packages.aioinflux: drop (#480504)

parents 5bae0ff1 f0524567
Loading
Loading
Loading
Loading
+0 −44
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -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
+0 −2
Original line number Diff line number Diff line
@@ -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 { };