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

31 lines
929 B
Nix
Raw Normal View History

2018-10-05 02:56:01 +02:00
{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "luigi";
2020-01-17 09:23:36 +01:00
version = "2.8.11";
2018-10-05 02:56:01 +02:00
src = python3Packages.fetchPypi {
inherit pname version;
2020-01-17 09:23:36 +01:00
sha256 = "17nc5xrqp6hp3ayscvdpsiiga8gsfpa4whsk0n97gzk5qpndrcy2";
2018-10-05 02:56:01 +02:00
};
2020-01-17 09:23:36 +01:00
propagatedBuildInputs = with python3Packages; [ dateutil tornado_4 python-daemon boto3 ];
2018-10-05 02:56:01 +02:00
# Requires tox, hadoop, and google cloud
doCheck = false;
# This enables accessing modules stored in cwd
makeWrapperArgs = ["--prefix PYTHONPATH . :"];
2018-10-05 02:56:01 +02:00
meta = with lib; {
homepage = https://github.com/spotify/luigi;
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.
'';
license = [ licenses.asl20 ];
maintainers = [ maintainers.bhipple ];
};
}