nixpkgs/pkgs/applications/networking/cluster/luigi/default.nix

32 lines
1006 B
Nix
Raw Normal View History

2018-10-05 00:56:01 +00:00
{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "luigi";
2020-07-24 04:30:39 +00:00
version = "3.0.1";
2018-10-05 00:56:01 +00:00
src = python3Packages.fetchPypi {
inherit pname version;
2020-07-24 04:30:39 +00:00
sha256 = "02c480f5pjgqsvqnkaw7f6n4nhdspmhq5w7lw8sgg2v3jghg8n7i";
2018-10-05 00:56:01 +00:00
};
2020-01-17 08:23:36 +00:00
propagatedBuildInputs = with python3Packages; [ dateutil tornado_4 python-daemon boto3 ];
2018-10-05 00:56:01 +00:00
# Requires tox, hadoop, and google cloud
doCheck = false;
# This enables accessing modules stored in cwd
makeWrapperArgs = ["--prefix PYTHONPATH . :"];
2018-10-05 00:56:01 +00: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 21:18:33 +00:00
homepage = "https://github.com/spotify/luigi";
changelog = "https://github.com/spotify/luigi/releases/tag/${version}";
2018-10-05 00:56:01 +00:00
license = [ licenses.asl20 ];
maintainers = [ maintainers.bhipple ];
};
}