nixpkgs/pkgs/development/python-modules/kombu/default.nix

47 lines
1013 B
Nix
Raw Normal View History

2019-10-27 19:37:13 +03:00
{ lib, buildPythonPackage, fetchPypi
, amqp
2020-06-12 21:05:50 +03:00
, botocore
2019-10-27 19:37:13 +03:00
, case
, Pyro4
, pytest
, pytz
, sqlalchemy
, importlib-metadata
, pythonOlder
2019-10-27 19:37:13 +03:00
}:
2018-07-14 14:19:09 +03:00
buildPythonPackage rec {
pname = "kombu";
version = "4.6.11";
2018-07-14 14:19:09 +03:00
src = fetchPypi {
inherit pname version;
sha256 = "ca1b45faac8c0b18493d02a8571792f3c40291cf2bcf1f55afed3d8f3aa7ba74";
2018-07-14 14:19:09 +03:00
};
postPatch = ''
2019-10-27 19:37:13 +03:00
substituteInPlace requirements/test.txt \
--replace "pytest-sugar" ""
substituteInPlace requirements/default.txt \
--replace "amqp==2.5.1" "amqp~=2.5"
2018-07-14 14:19:09 +03:00
'';
propagatedBuildInputs = [
amqp
] ++ lib.optionals (pythonOlder "3.8") [
importlib-metadata
];
2018-07-14 14:19:09 +03:00
2020-06-12 21:05:50 +03:00
checkInputs = [ botocore pytest case pytz Pyro4 sqlalchemy ];
2019-10-27 19:37:13 +03:00
# test_redis requires fakeredis, which isn't trivial to package
checkPhase = ''
pytest --ignore t/unit/transport/test_redis.py
'';
2018-07-14 14:19:09 +03:00
meta = with lib; {
description = "Messaging library for Python";
homepage = "https://github.com/celery/kombu";
2018-07-14 14:19:09 +03:00
license = licenses.bsd3;
};
}