python313Packages.amqplib: remove (#464082)

This commit is contained in:
Aleksana
2025-11-24 02:00:22 +00:00
committed by GitHub
3 changed files with 1 additions and 33 deletions
@@ -1,31 +0,0 @@
{
lib,
buildPythonPackage,
fetchPypi,
python,
}:
buildPythonPackage rec {
pname = "amqplib";
version = "1.0.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
extension = "tgz";
sha256 = "843d69b681a60afd21fbf50f310404ec67fcdf9d13dfcf6e9d41f3b456217e5b";
};
# testing assumes network connection
doCheck = false;
checkPhase = ''
${python.interpreter} tests/client_0_8/run_all.py
'';
meta = with lib; {
homepage = "https://github.com/barryp/py-amqplib";
description = "Python client for the Advanced Message Queuing Procotol (AMQP)";
license = licenses.lgpl21;
};
}
+1
View File
@@ -60,6 +60,7 @@ mapAliases {
abodepy = throw "'abodepy' has been renamed to/replaced by 'jaraco-abode'"; # Converted to throw 2025-10-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
ansiwrap = throw "ansiwrap has been removed because it has been marked as broken since at least November 2024."; # Added 2025-10-03
apkit = throw "apkit was removed because it is unmaintained upstream and different from apkit on PyPI"; # added 2025-09-13
APScheduler = throw "'APScheduler' has been renamed to/replaced by 'apscheduler'"; # Converted to throw 2025-10-29
-2
View File
@@ -668,8 +668,6 @@ self: super: with self; {
amqp = callPackage ../development/python-modules/amqp { };
amqplib = callPackage ../development/python-modules/amqplib { };
amqtt = callPackage ../development/python-modules/amqtt { };
amshan = callPackage ../development/python-modules/amshan { };