summaryrefslogtreecommitdiffstats
path: root/pkgs/applications
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2020-11-18 20:32:26 +0100
committerGitHub <noreply@github.com>2020-11-18 20:32:26 +0100
commit023185b9711fa92cd0049cdd7e21861ef2b9376c (patch)
tree62410df16792b0f78567a1afd3fd09ccfff33c04 /pkgs/applications
parent218b43a7fa4716df89a15ffcb3664bd54e58108b (diff)
parentc05b2e7eea2501cc298fed3c1291fb835ca7f209 (diff)
Merge pull request #104112 from mweinelt/python/gns-server
gns3-server: relax aiohttp pin
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/gns3/server.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/networking/gns3/server.nix b/pkgs/applications/networking/gns3/server.nix
index bbf3f0514c45..ad346104f969 100644
--- a/pkgs/applications/networking/gns3/server.nix
+++ b/pkgs/applications/networking/gns3/server.nix
@@ -35,7 +35,9 @@ in python.pkgs.buildPythonPackage {
postPatch = ''
# yarl 1.4+ only requires Python 3.6+
- sed -iE "s/yarl==1.3.0//" requirements.txt
+ substituteInPlace requirements.txt \
+ --replace "aiohttp==3.6.2" "aiohttp>=3.6.2" \
+ --replace "yarl==1.3.0" ""
'';
propagatedBuildInputs = with python.pkgs; [