luigi: use tornado_5

This commit is contained in:
Frederik Rietdijk 2020-08-29 14:33:34 +02:00
parent 42fa7a9108
commit bf9cc225e9

View file

@ -1,15 +1,22 @@
{ lib, python3Packages }:
{ lib, python3 }:
python3Packages.buildPythonApplication rec {
let
python = python3.override {
self = python;
packageOverrides = self: super: {
tornado = super.tornado_5;
};
};
in with python.pkgs; buildPythonApplication rec {
pname = "luigi";
version = "3.0.1";
src = python3Packages.fetchPypi {
src = fetchPypi {
inherit pname version;
sha256 = "02c480f5pjgqsvqnkaw7f6n4nhdspmhq5w7lw8sgg2v3jghg8n7i";
};
propagatedBuildInputs = with python3Packages; [ dateutil tornado_4 python-daemon boto3 ];
propagatedBuildInputs = [ dateutil tornado_5 python-daemon boto3 ];
# Requires tox, hadoop, and google cloud
doCheck = false;