diff options
author | Martin Weinelt | 2023-12-09 20:47:01 +0100 |
---|---|---|
committer | Martin Weinelt | 2023-12-20 20:46:13 +0100 |
commit | fa4317e9aa7dc8e1c745368d0ea54d66e11edb93 (patch) | |
tree | dcfdb1ae898c9ce52c613da56fd6c3e8e9a91bee /pkgs/development/python-modules | |
parent | 9d19a7bf0879e60e976dcaf74afa9e35f9bbfb6b (diff) |
python311Packages.curtsies: provide setuptools for build
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r-- | pkgs/development/python-modules/curtsies/default.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/curtsies/default.nix b/pkgs/development/python-modules/curtsies/default.nix index 4a17769e18e8..2dd039f00ee2 100644 --- a/pkgs/development/python-modules/curtsies/default.nix +++ b/pkgs/development/python-modules/curtsies/default.nix @@ -8,6 +8,7 @@ , pyte , pytestCheckHook , pythonOlder +, setuptools }: buildPythonPackage rec { @@ -22,6 +23,10 @@ buildPythonPackage rec { hash = "sha256-br4zIVvXyShRpQYEnHIMykz1wZLBZlwdepigTEcCdg4="; }; + nativeBuildInputs = [ + setuptools + ]; + propagatedBuildInputs = [ blessed cwcwidth |