From f767f1d1f2744a1e211a28c84409fc9ab8abd78b Mon Sep 17 00:00:00 2001 From: PerchunPak Date: Thu, 25 Jul 2024 14:21:25 +0200 Subject: [PATCH] python312Packages.pyls-isort: add missing setuptools build dependency --- pkgs/development/python-modules/pyls-isort/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/pyls-isort/default.nix b/pkgs/development/python-modules/pyls-isort/default.nix index 5dc8cd76b1a2..cc2048cc0450 100644 --- a/pkgs/development/python-modules/pyls-isort/default.nix +++ b/pkgs/development/python-modules/pyls-isort/default.nix @@ -2,6 +2,7 @@ lib, buildPythonPackage, fetchFromGitHub, + setuptools, python-lsp-server, isort, }: @@ -23,6 +24,8 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyls_isort" ]; + build-system = [ setuptools ]; + dependencies = [ isort python-lsp-server