From 9e8d8485af99545530a47a9204f1f008b9c41472 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Thu, 19 Mar 2026 22:35:29 +0100 Subject: [PATCH] python3Packages.dask-gateway: fix build --- pkgs/development/python-modules/dask-gateway/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/dask-gateway/default.nix b/pkgs/development/python-modules/dask-gateway/default.nix index 58b6125df811..10f31affc2c4 100644 --- a/pkgs/development/python-modules/dask-gateway/default.nix +++ b/pkgs/development/python-modules/dask-gateway/default.nix @@ -5,7 +5,7 @@ aiohttp, dask, distributed, - setuptools, + hatchling, }: buildPythonPackage rec { @@ -23,9 +23,9 @@ buildPythonPackage rec { sourceRoot = "${src.name}/dask-gateway"; - nativeBuildInputs = [ setuptools ]; + build-system = [ hatchling ]; - propagatedBuildInputs = [ + dependencies = [ aiohttp dask distributed