luigi: build with pypaBuildHook

This commit is contained in:
natsukium
2024-09-14 10:22:11 +09:00
parent 9eb4a94051
commit ef5cdd9fc6
@@ -3,13 +3,18 @@
python3.pkgs.buildPythonApplication rec {
pname = "luigi";
version = "3.5.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
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;