cd906a3b33
luigi: enable local modules discovery
36 lines
1005 B
Nix
36 lines
1005 B
Nix
{ lib, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "luigi";
|
|
version = "2.8.0";
|
|
|
|
src = python3Packages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1869lb6flmca6s7ccws7mvyn66nvrqjky40jwf2liv9fg0lp8899";
|
|
};
|
|
|
|
# Relax version constraint
|
|
postPatch = ''
|
|
sed -i 's/<2.2.0//' setup.py
|
|
'';
|
|
|
|
propagatedBuildInputs = with python3Packages; [ tornado_4 python-daemon boto3 ];
|
|
|
|
# Requires tox, hadoop, and google cloud
|
|
doCheck = false;
|
|
|
|
# This enables accessing modules stored in cwd
|
|
makeWrapperArgs = ["--prefix PYTHONPATH . :"];
|
|
|
|
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 ];
|
|
};
|
|
}
|