docker_compose: Remove upper bound version limitations

This commit is contained in:
Jascha Geerds 2017-02-05 18:39:30 +01:00
parent 09b6d2eaed
commit ffb91cc697

View file

@ -26,7 +26,9 @@ buildPythonApplication rec {
stdenv.lib.optional (pythonOlder "3.2") functools32;
patchPhase = ''
sed -i "s/'requests >= 2.6.1, < 2.8'/'requests'/" setup.py
# Remove upper bound on requires, see also
# https://github.com/docker/compose/issues/4431
sed -i "s/, < .*',$/',/" setup.py
'';
postInstall = ''