aboutsummaryrefslogtreecommitdiff
path: root/pkgs/servers/mtprotoproxy
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2019-09-26 22:48:03 +0300
committerNikolay Amiantov <ab@fmap.me>2019-09-26 22:48:03 +0300
commit7b35f8bccc12ca10b611bb4a0ee4d5c794c94b70 (patch)
tree5bda0e97a0c2de59a9907eddb343852bb2177b5c /pkgs/servers/mtprotoproxy
parent991f825f2debf0dad487783f5d119876823b9783 (diff)
mtprotoproxy: add uvloop
Diffstat (limited to 'pkgs/servers/mtprotoproxy')
-rw-r--r--pkgs/servers/mtprotoproxy/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/mtprotoproxy/default.nix b/pkgs/servers/mtprotoproxy/default.nix
index 69c7f137e3dc..9131715113d7 100644
--- a/pkgs/servers/mtprotoproxy/default.nix
+++ b/pkgs/servers/mtprotoproxy/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, python, pyaes, pycrypto, wrapPython }:
+{ stdenv, fetchFromGitHub, python, pyaes, pycrypto, uvloop, wrapPython }:
stdenv.mkDerivation rec {
pname = "mtprotoproxy";
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ wrapPython ];
- pythonPath = [ pyaes pycrypto ];
+ pythonPath = [ pyaes pycrypto uvloop ];
installPhase = ''
install -Dm755 mtprotoproxy.py $out/bin/mtprotoproxy