nixpkgs/pkgs/development/python-modules/kombu/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

54 lines
894 B
Nix

{ lib
, amqp
, azure-servicebus
, buildPythonPackage
, cached-property
, case
, fetchPypi
, importlib-metadata
, Pyro4
, pytestCheckHook
, pythonOlder
, pytz
, vine
}:
buildPythonPackage rec {
pname = "kombu";
version = "5.2.4";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-N87j7nJflOqLsXPqq3wXYCA+pTu+uuImMoYA+dJ5lhA=";
};
propagatedBuildInputs = [
amqp
vine
] ++ lib.optionals (pythonOlder "3.8") [
cached-property
importlib-metadata
];
nativeCheckInputs = [
azure-servicebus
case
Pyro4
pytestCheckHook
pytz
];
pythonImportsCheck = [
"kombu"
];
meta = with lib; {
description = "Messaging library for Python";
homepage = "https://github.com/celery/kombu";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};
}