python3Packages.pika-pool: fix build

Loosen version constraint to allow current `pika` as well (currently
0.12). See also https://hydra.nixos.org/build/86116480
This commit is contained in:
Maximilian Bosch 2019-01-10 02:06:41 +01:00 committed by worldofpeace
parent 338a5c3ca7
commit fc24e4237d

View File

@ -11,6 +11,10 @@ buildPythonPackage rec {
sha256 = "f3985888cc2788cdbd293a68a8b5702a9c955db6f7b8b551aeac91e7f32da397";
};
postPatch = ''
substituteInPlace setup.py --replace "pika >=0.9,<0.11" "pika"
'';
# Tests require database connections
doCheck = false;