luigi: 3.6.0 -> 3.8.1

This commit is contained in:
Pol Dellaiera
2026-05-27 10:47:20 +02:00
parent c46032d49d
commit 9c6d9a7c6c
+12 -7
View File
@@ -1,28 +1,33 @@
{
lib,
python3,
python3Packages,
fetchPypi,
}:
python3.pkgs.buildPythonApplication (finalAttrs: {
python3Packages.python.pkgs.buildPythonApplication (finalAttrs: {
pname = "luigi";
version = "3.6.0";
version = "3.8.1";
pyproject = true;
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-QbFIUCI8YZ2QBrMKzacz51a4g/x+YIFCBVdmRxkMluM=";
pname = "luigi";
inherit (finalAttrs) version;
hash = "sha256-L6XrXTR05JXeCb2WT1ApNsCPix624PPKPIppEWw40MM=";
};
build-system = [ python3.pkgs.setuptools ];
build-system = with python3Packages; [
hatchling
hatch-fancy-pypi-readme
];
pythonRelaxDeps = [ "tenacity" ];
dependencies = with python3.pkgs; [
dependencies = with python3Packages; [
python-dateutil
tornado
python-daemon
tenacity
typing-extensions
];
pythonImportsCheck = [ "luigi" ];