3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/cluster/luigi/default.nix

32 lines
999 B
Nix
Raw Normal View History

2020-08-29 13:33:34 +01:00
{ lib, python3 }:
2018-10-05 01:56:01 +01:00
python3.pkgs.buildPythonApplication rec {
2018-10-05 01:56:01 +01:00
pname = "luigi";
2020-09-25 22:20:33 +01:00
version = "3.0.2";
2018-10-05 01:56:01 +01:00
src = python3.pkgs.fetchPypi {
2018-10-05 01:56:01 +01:00
inherit pname version;
2020-09-25 22:20:33 +01:00
sha256 = "b4b1ccf086586d041d7e91e68515d495c550f30e4d179d63863fea9ccdbb78eb";
2018-10-05 01:56:01 +01:00
};
propagatedBuildInputs = with python3.pkgs; [ dateutil tornado python-daemon boto3 ];
2018-10-05 01:56:01 +01:00
# Requires tox, hadoop, and google cloud
doCheck = false;
# This enables accessing modules stored in cwd
makeWrapperArgs = ["--prefix PYTHONPATH . :"];
2018-10-05 01:56:01 +01:00
meta = with lib; {
description = "Python package that helps you build complex pipelines of batch jobs";
longDescription = ''
Luigi handles dependency resolution, workflow management, visualization,
handling failures, command line integration, and much more.
'';
2020-06-14 22:18:33 +01:00
homepage = "https://github.com/spotify/luigi";
changelog = "https://github.com/spotify/luigi/releases/tag/${version}";
2018-10-05 01:56:01 +01:00
license = [ licenses.asl20 ];
maintainers = [ maintainers.bhipple ];
};
}