circus: override python package set to use tornado_4
This commit is contained in:
parent
31643e45ec
commit
5b907a4d55
@ -1,7 +1,14 @@
|
||||
{ stdenv, python3Packages }:
|
||||
{ stdenv, python3 }:
|
||||
|
||||
let
|
||||
inherit (python3Packages) buildPythonApplication fetchPypi iowait psutil pyzmq tornado_4 mock;
|
||||
python = python3.override {
|
||||
self = python;
|
||||
packageOverrides = self: super: {
|
||||
tornado = tornado_4;
|
||||
};
|
||||
};
|
||||
|
||||
inherit (python.pkgs) buildPythonApplication fetchPypi iowait psutil pyzmq tornado_4 mock six;
|
||||
in
|
||||
|
||||
buildPythonApplication rec {
|
||||
@ -23,7 +30,7 @@ buildPythonApplication rec {
|
||||
|
||||
doCheck = false; # weird error
|
||||
|
||||
propagatedBuildInputs = [ iowait psutil pyzmq tornado_4 ];
|
||||
propagatedBuildInputs = [ iowait psutil pyzmq tornado six ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A process and socket manager";
|
||||
|
Loading…
Reference in New Issue
Block a user