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
|
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
|
in
|
||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
@ -23,7 +30,7 @@ buildPythonApplication rec {
|
|||||||
|
|
||||||
doCheck = false; # weird error
|
doCheck = false; # weird error
|
||||||
|
|
||||||
propagatedBuildInputs = [ iowait psutil pyzmq tornado_4 ];
|
propagatedBuildInputs = [ iowait psutil pyzmq tornado six ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A process and socket manager";
|
description = "A process and socket manager";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user