mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 08:33:54 +00:00
32 lines
1001 B
Nix
32 lines
1001 B
Nix
{ lib, python3, fetchPypi }:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "luigi";
|
|
version = "3.3.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-zIZC3rbiLwYB7o34rT3mOagVIbfmY6elBEkZGFrSs1c=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [ python-dateutil tornado python-daemon boto3 tenacity ];
|
|
|
|
# Requires tox, hadoop, and google cloud
|
|
doCheck = false;
|
|
|
|
# This enables accessing modules stored in cwd
|
|
makeWrapperArgs = [ "--prefix PYTHONPATH . :" ];
|
|
|
|
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.
|
|
'';
|
|
homepage = "https://github.com/spotify/luigi";
|
|
changelog = "https://github.com/spotify/luigi/releases/tag/${version}";
|
|
license = [ licenses.asl20 ];
|
|
maintainers = [ maintainers.bhipple ];
|
|
};
|
|
}
|