pythonPackages.kombu: fix tests
This commit is contained in:
parent
3ba8ce13dd
commit
5e85873d70
@ -1,4 +1,11 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, pytest, case, pytz, Pyro4, amqp }:
|
||||
{ lib, buildPythonPackage, fetchPypi
|
||||
, amqp
|
||||
, case
|
||||
, Pyro4
|
||||
, pytest
|
||||
, pytz
|
||||
, sqlalchemy
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "kombu";
|
||||
@ -10,13 +17,20 @@ buildPythonPackage rec {
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace requirements/test.txt --replace "pytest-sugar" ""
|
||||
substituteInPlace requirements/test.txt \
|
||||
--replace "pytest-sugar" ""
|
||||
substituteInPlace requirements/default.txt \
|
||||
--replace "amqp==2.5.1" "amqp~=2.5"
|
||||
'';
|
||||
|
||||
checkInputs = [ pytest case pytz Pyro4 ];
|
||||
|
||||
propagatedBuildInputs = [ amqp ];
|
||||
|
||||
checkInputs = [ pytest case pytz Pyro4 sqlalchemy ];
|
||||
# test_redis requires fakeredis, which isn't trivial to package
|
||||
checkPhase = ''
|
||||
pytest --ignore t/unit/transport/test_redis.py
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Messaging library for Python";
|
||||
homepage = https://github.com/celery/kombu;
|
||||
|
Loading…
Reference in New Issue
Block a user