circus: fix eval

This commit is contained in:
Frederik Rietdijk 2020-08-29 14:47:43 +02:00
parent 54568a1bea
commit c4eb5ed6b0

View File

@ -4,11 +4,11 @@ let
python = python3.override { python = python3.override {
self = python; self = python;
packageOverrides = self: super: { 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 in
buildPythonApplication rec { buildPythonApplication rec {