about summary refs log tree commit diff
path: root/pkgs/development/python-modules/dask-gateway
diff options
context:
space:
mode:
authorPhillip Cloud <417981+cpcloud@users.noreply.github.com>2022-11-01 13:27:45 -0400
committerPhillip Cloud <417981+cpcloud@users.noreply.github.com>2022-11-01 14:17:57 -0400
commitb4f201f0d4c81dd97f7e3ece058739fb8d5deaf0 (patch)
treeec2cf0d17ef32dfa8326d35e24e2bc9d7b5615c0 /pkgs/development/python-modules/dask-gateway
parent81a7da0a92923e80a6e542fd51a319b6d9d0aa71 (diff)
python3Packages.dask-gateway: add setuptools as native build input
Diffstat (limited to 'pkgs/development/python-modules/dask-gateway')
-rw-r--r--pkgs/development/python-modules/dask-gateway/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/dask-gateway/default.nix b/pkgs/development/python-modules/dask-gateway/default.nix
index f0e5a54c95bf0..a9dae9638b933 100644
--- a/pkgs/development/python-modules/dask-gateway/default.nix
+++ b/pkgs/development/python-modules/dask-gateway/default.nix
@@ -4,6 +4,7 @@
 , aiohttp
 , dask
 , distributed
+, setuptools
 }:
 
 buildPythonPackage rec {
@@ -21,6 +22,8 @@ buildPythonPackage rec {
 
   sourceRoot = "source/dask-gateway";
 
+  nativeBuildInputs = [ setuptools ];
+
   propagatedBuildInputs = [
     aiohttp
     dask