diff --git a/pkgs/by-name/lu/luigi/package.nix b/pkgs/by-name/lu/luigi/package.nix index 893173e7515f..ff1ba281badb 100644 --- a/pkgs/by-name/lu/luigi/package.nix +++ b/pkgs/by-name/lu/luigi/package.nix @@ -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" ];