Files
nixpkgs/pkgs/development/python-modules/kombu/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

106 lines
1.9 KiB
Nix

{
lib,
amqp,
azure-identity,
azure-servicebus,
azure-storage-queue,
boto3,
buildPythonPackage,
confluent-kafka,
fetchFromGitHub,
google-cloud-pubsub,
google-cloud-monitoring,
grpcio,
hypothesis,
kazoo,
msgpack,
packaging,
protobuf,
pycurl,
pymongo,
#, pyro4
pytestCheckHook,
pyyaml,
redis,
setuptools,
sqlalchemy,
tzdata,
urllib3,
vine,
}:
buildPythonPackage rec {
pname = "kombu";
version = "5.6.1";
pyproject = true;
src = fetchFromGitHub {
owner = "celery";
repo = "kombu";
tag = "v${version}";
hash = "sha256-kywPcWhc+iMh4OOH8gobA6NFismRvihgNMcxxw+2p/4=";
};
build-system = [ setuptools ];
dependencies = [
amqp
packaging
tzdata
vine
];
optional-dependencies = {
msgpack = [ msgpack ];
yaml = [ pyyaml ];
redis = [ redis ];
mongodb = [ pymongo ];
sqs = [
boto3
urllib3
pycurl
];
zookeeper = [ kazoo ];
sqlalchemy = [ sqlalchemy ];
azurestoragequeues = [
azure-identity
azure-storage-queue
];
azureservicebus = [ azure-servicebus ];
confluentkafka = [ confluent-kafka ];
gcpubsub = [
google-cloud-pubsub
google-cloud-monitoring
grpcio
protobuf
];
# pyro4 doesn't support Python 3.11
#pyro = [
# pyro4
#];
};
nativeCheckInputs = [
hypothesis
pytestCheckHook
]
++ lib.concatAttrValues optional-dependencies;
pythonImportsCheck = [ "kombu" ];
disabledTests = [
# Disable pyro4 test
"test_driver_version"
# AssertionError: assert [call('WATCH'..., 'test-tag')] ==...
"test_global_keyprefix_transaction"
];
meta = {
description = "Messaging library for Python";
homepage = "https://github.com/celery/kombu";
changelog = "https://github.com/celery/kombu/blob/v${version}/Changelog.rst";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fab ];
};
}