Merge pull request #90404 from r-ryantm/auto-update/luigi

luigi: 2.8.13 -> 3.0.0
This commit is contained in:
Benjamin Hipple 2020-06-14 19:33:24 -04:00 committed by GitHub
commit a59af90880
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -2,11 +2,11 @@
python3Packages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
pname = "luigi"; pname = "luigi";
version = "2.8.13"; version = "3.0.0";
src = python3Packages.fetchPypi { src = python3Packages.fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0x14549iwj7r1knc0hmic9ny9hp960yjjqi4mxl78jb69gd3bhmf"; sha256 = "1km9fnq4pf0iqqcmz94idm0zb3l92zinz0bn6ip86xqhchafd4vf";
}; };
propagatedBuildInputs = with python3Packages; [ dateutil tornado_4 python-daemon boto3 ]; propagatedBuildInputs = with python3Packages; [ dateutil tornado_4 python-daemon boto3 ];
@ -18,12 +18,13 @@ python3Packages.buildPythonApplication rec {
makeWrapperArgs = ["--prefix PYTHONPATH . :"]; makeWrapperArgs = ["--prefix PYTHONPATH . :"];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/spotify/luigi";
description = "Python package that helps you build complex pipelines of batch jobs"; description = "Python package that helps you build complex pipelines of batch jobs";
longDescription = '' longDescription = ''
Luigi handles dependency resolution, workflow management, visualization, Luigi handles dependency resolution, workflow management, visualization,
handling failures, command line integration, and much more. handling failures, command line integration, and much more.
''; '';
homepage = "https://github.com/spotify/luigi";
changelog = "https://github.com/spotify/luigi/releases/tag/${version}";
license = [ licenses.asl20 ]; license = [ licenses.asl20 ];
maintainers = [ maintainers.bhipple ]; maintainers = [ maintainers.bhipple ];
}; };