python3Packages.kafka-python-ng: drop
The upstream repo was archived.
This commit is contained in:
@@ -1,54 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools-scm,
|
||||
crc32c,
|
||||
lz4,
|
||||
python-snappy,
|
||||
zstandard,
|
||||
botocore,
|
||||
pytest-mock,
|
||||
pytestCheckHook,
|
||||
xxhash,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "2.2.3";
|
||||
pname = "kafka-python-ng";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "wbarnha";
|
||||
repo = "kafka-python-ng";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-a2RFiBRh3S2YQBekpwEK74ow8bGlgWCGqSf2vcgYPYk=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools-scm ];
|
||||
|
||||
optional-dependencies = {
|
||||
crc32c = [ crc32c ];
|
||||
lz4 = [ lz4 ];
|
||||
snappy = [ python-snappy ];
|
||||
zstd = [ zstandard ];
|
||||
boto = [ botocore ];
|
||||
};
|
||||
|
||||
pythonImportsCheck = [ "kafka" ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytest-mock
|
||||
pytestCheckHook
|
||||
xxhash
|
||||
]
|
||||
++ lib.concatAttrValues optional-dependencies;
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/wbarnha/kafka-python-ng/releases/tag/v${version}";
|
||||
description = "Pure Python client for Apache Kafka";
|
||||
homepage = "https://github.com/wbarnha/kafka-python-ng";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
||||
@@ -301,6 +301,7 @@ mapAliases {
|
||||
jupyter_core = throw "'jupyter_core' has been renamed to/replaced by 'jupyter-core'"; # Converted to throw 2025-10-29
|
||||
jupyter_server = throw "'jupyter_server' has been renamed to/replaced by 'jupyter-server'"; # Converted to throw 2025-10-29
|
||||
jupyterlab_server = throw "'jupyterlab_server' has been renamed to/replaced by 'jupyterlab-server'"; # Converted to throw 2025-10-29
|
||||
kafka-python-ng = throw "'kafka-python-ng' has been replaced by 'kafka-python'"; # added 2026-06-13
|
||||
Kajiki = throw "'Kajiki' has been renamed to/replaced by 'kajiki'"; # Converted to throw 2025-10-29
|
||||
keepkey-agent = throw "keepkey-agent has been removed because upstream dropped KeepKey support"; # Added 2026-03-11
|
||||
keepkey_agent = throw "keepkey-agent has been removed because upstream dropped KeepKey support"; # Added 2026-03-11
|
||||
|
||||
@@ -8344,8 +8344,6 @@ self: super: with self; {
|
||||
|
||||
kafka-python = callPackage ../development/python-modules/kafka-python { };
|
||||
|
||||
kafka-python-ng = callPackage ../development/python-modules/kafka-python-ng { };
|
||||
|
||||
kaggle = callPackage ../development/python-modules/kaggle { };
|
||||
|
||||
kagglehub = callPackage ../development/python-modules/kagglehub { };
|
||||
|
||||
Reference in New Issue
Block a user