From 029b261fb3531d9d1f63bc8b1d724acddf600691 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 16 Sep 2022 10:42:22 +0200 Subject: [PATCH] python3Packages.cwcwidth: fix build needing setuptools --- pkgs/development/python-modules/cwcwidth/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/cwcwidth/default.nix b/pkgs/development/python-modules/cwcwidth/default.nix index f6bab4ffc4bc..fc57df26230a 100644 --- a/pkgs/development/python-modules/cwcwidth/default.nix +++ b/pkgs/development/python-modules/cwcwidth/default.nix @@ -1,4 +1,4 @@ -{ lib, buildPythonPackage, fetchPypi, cython, pytestCheckHook }: +{ lib, buildPythonPackage, fetchPypi, cython, pytestCheckHook, setuptools }: buildPythonPackage rec { pname = "cwcwidth"; @@ -10,7 +10,7 @@ buildPythonPackage rec { sha256 = "sha256-wNZH4S46SxWogeHYT3lpN1FmSEieARJXI33CF51rGVE="; }; - nativeBuildInputs = [ cython ]; + nativeBuildInputs = [ cython setuptools ]; checkInputs = [ pytestCheckHook ]; preCheck = ''