python312Packages.pysuez: drop

Duplicate of pysuezv2.
This commit is contained in:
Martin Weinelt
2025-03-14 13:20:08 +01:00
parent ce52a4d87a
commit 8a631f2aa3
5 changed files with 2 additions and 45 deletions

View File

@@ -1,41 +0,0 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
aiohttp,
pythonOlder,
}:
buildPythonPackage rec {
pname = "pysuez";
version = "2.0.3";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "jb101010-2";
repo = "pySuez";
tag = version;
hash = "sha256-D/XsJL393fDIKMB1Wyzods5hLsdU3Qgq8T5aTJ3SLrM=";
};
build-system = [ hatchling ];
dependencies = [ aiohttp ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "pysuez" ];
meta = with lib; {
description = "Module to get water consumption data from Suez";
mainProgram = "pysuez";
homepage = "https://github.com/jb101010-2/pySuez";
changelog = "https://github.com/jb101010-2/pySuez/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

View File

@@ -5427,7 +5427,7 @@
];
"suez_water" =
ps: with ps; [
pysuez
pysuezv2
];
"sun" =
ps: with ps; [

View File

@@ -45,7 +45,6 @@ PKG_PREFERENCES = {
"numpy": "numpy",
"ollama-hass": "ollama",
"paho-mqtt": "paho-mqtt",
"pysuezV2": "pysuez",
"sentry-sdk": "sentry-sdk",
"slackclient": "slack-sdk",
"SQLAlchemy": "sqlalchemy",

View File

@@ -563,6 +563,7 @@ mapAliases ({
pysparse = throw "pysparse has been abandoned upstream."; # added 2023-02-28
pyspotify = throw "pyspotify has been removed because Spotify stopped supporting libspotify"; # added 2022-05-29
PyStemmer = pystemmer; # added 2023-02-19
pysuez = pysuezv2; # added 2025-03-14
pytado = python-tado; # added 2024-12-02
pytest_6 = pytest; # added 2022-02-10
pytestcov = pytest-cov; # added 2021-01-04

View File

@@ -11021,8 +11021,6 @@ self: super: with self; {
pysubs2 = callPackage ../development/python-modules/pysubs2 { };
pysuez = callPackage ../development/python-modules/pysuez { };
pysuezv2 = callPackage ../development/python-modules/pysuezv2 { };
pysqlitecipher = callPackage ../development/python-modules/pysqlitecipher { };