luigi: 3.5.1 -> 3.5.2 (#339918)

This commit is contained in:
OTABI Tomoya 2024-09-15 16:05:20 +09:00 committed by GitHub
commit dfacdce515
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,14 +2,19 @@
python3.pkgs.buildPythonApplication rec {
pname = "luigi";
version = "3.5.1";
version = "3.5.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-/HkLJ0dRXdGcZz77uOTJrOX0xc3DH45/k9xmfesuxsg=";
hash = "sha256-0AD+am6nfJN2Z0/oegRawAw/z36+hBRlWgZjCqnbURE=";
};
propagatedBuildInputs = with python3.pkgs; [ python-dateutil tornado python-daemon boto3 tenacity ];
build-system = [ python3.pkgs.setuptools ];
dependencies = with python3.pkgs; [ python-dateutil tornado python-daemon tenacity ];
pythonImportsCheck = [ "luigi" ];
# Requires tox, hadoop, and google cloud
doCheck = false;