circus: fix eval

gstqt5
Frederik Rietdijk 2020-08-29 14:47:43 +02:00
parent 54568a1bea
commit c4eb5ed6b0
1 changed files with 2 additions and 2 deletions

View File

@ -4,11 +4,11 @@ let
python = python3.override {
self = python;
packageOverrides = self: super: {
tornado = tornado_4;
tornado = super.tornado_4;
};
};
inherit (python.pkgs) buildPythonApplication fetchPypi iowait psutil pyzmq tornado_4 mock six;
inherit (python.pkgs) buildPythonApplication fetchPypi iowait psutil pyzmq tornado mock six;
in
buildPythonApplication rec {