pythonPackages.eve: fix dependency bounds

This commit is contained in:
Jonathan Ringer 2019-10-17 15:07:16 -07:00 committed by Frederik Rietdijk
parent a5f7791bcf
commit 3f2af8219b

View File

@ -19,6 +19,11 @@ buildPythonPackage rec {
werkzeug
];
postPatch = ''
substituteInPlace setup.py \
--replace "werkzeug==0.15.4" "werkzeug"
'';
# tests call a running mongodb instance
doCheck = false;