python3Packages.amazon-kclpy: drop (#448226)

This commit is contained in:
Wolfgang Walther
2025-10-23 12:41:01 +00:00
committed by GitHub
3 changed files with 1 additions and 52 deletions
@@ -1,50 +0,0 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
setuptools,
mock,
boto3,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "amazon-kclpy";
version = "3.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "awslabs";
repo = "amazon-kinesis-client-python";
tag = "v${version}";
hash = "sha256-nboEZwRlhbr176H4b6ESm3LfVZCoKz3yKrQptERsLgg=";
};
patches = [
(fetchpatch {
name = "remove-deprecated-boto.patch";
url = "https://github.com/awslabs/amazon-kinesis-client-python/commit/bd2c442cdd1b0e2c99d3471c1d3ffcc9161a7c42.patch";
hash = "sha256-5W0qItDGjx1F6IllzLH57XCpToKrAu9mTbzv/1wMXuY=";
})
];
build-system = [ setuptools ];
dependencies = [
mock
boto3
];
pythonImportsCheck = [ "amazon_kclpy" ];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Amazon Kinesis Client Library for Python";
homepage = "https://github.com/awslabs/amazon-kinesis-client-python";
license = licenses.asl20;
maintainers = with maintainers; [ psyanticy ];
broken = true;
};
}
+1
View File
@@ -74,6 +74,7 @@ mapAliases {
aioquic-mitmproxy = throw "aioquic-mitmproxy has been removed because mitmproxy no longer uses it"; # Added 2024-01-16
ansiwrap = throw "ansiwrap has been removed because it has been marked as broken since at least November 2024."; # Added 2025-10-03
amazon_kclpy = amazon-kclpy; # added 2023-08-08
amazon-kclpy = throw "amazon-kclpy has been removed because it has been marked as broken since at least November 2024."; # Added 2025-10-03
ambiclimate = throw "ambiclimate has been removed, because the service has been terminated after 2024-03-31."; # Added 2024-06-07
ambee = throw "ambee has been removed because the upstream repository was archived in 2022"; # Added 2024-10-04
amiibo-py = throw "amiibo-py has been removed because the upstream repository was removed"; # Added 2025-01-13
-2
View File
@@ -646,8 +646,6 @@ self: super: with self; {
amazon-ion = callPackage ../development/python-modules/amazon-ion { };
amazon-kclpy = callPackage ../development/python-modules/amazon-kclpy { };
amberelectric = callPackage ../development/python-modules/amberelectric { };
amcrest = callPackage ../development/python-modules/amcrest { };