1 { lib, buildPythonPackage, fetchPypi
13 buildPythonPackage rec {
18 inherit pname version;
19 sha256 = "f4965fba0a4718d47d470beeb5d6446e3357a62402b16c510b6a2f251e05ac3c";
23 substituteInPlace requirements/test.txt \
24 --replace "pytest-sugar" ""
27 propagatedBuildInputs = [
29 ] ++ lib.optionals (pythonOlder "3.8") [
33 checkInputs = [ botocore pytest case pytz Pyro4 sqlalchemy ];
34 # test_redis requires fakeredis, which isn't trivial to package
36 pytest --ignore t/unit/transport/test_redis.py
40 description = "Messaging library for Python";
41 homepage = "https://github.com/celery/kombu";
42 license = licenses.bsd3;