File tree 1 file changed +14
-0
lines changed
pkgs/applications/networking/gns3
1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 4
4
5
5
let
6
6
pythonPackages = python3Packages ;
7
+ aiohttp = ( stdenv . lib . overrideDerivation pythonPackages . aiohttp
8
+ ( oldAttrs :
9
+ rec {
10
+ pname = "aiohttp" ;
11
+ version = "2.3.10" ;
12
+ src = pythonPackages . fetchPypi {
13
+ inherit pname version ;
14
+ sha256 = "8adda6583ba438a4c70693374e10b60168663ffa6564c5c75d3c7a9055290964" ;
15
+ } ;
16
+ } ) ) ;
7
17
aiohttp-cors = ( stdenv . lib . overrideDerivation pythonPackages . aiohttp-cors
8
18
( oldAttrs :
9
19
rec {
14
24
inherit pname version ;
15
25
sha256 = "11b51mhr7wjfiikvj3nc5s8c7miin2zdhl3yrzcga4mbpkj892in" ;
16
26
} ;
27
+ propagatedBuildInputs = [ aiohttp ]
28
+ ++ stdenv . lib . optional
29
+ ( pythonPackages . pythonOlder "3.5" )
30
+ pythonPackages . typing ;
17
31
} ) ) ;
18
32
in pythonPackages . buildPythonPackage rec {
19
33
name = "${ pname } -${ version } " ;
You can’t perform that action at this time.
0 commit comments