about summary refs log tree commit diff
path: root/pkgs/tools/misc/asciinema
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-09-17 00:33:23 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2022-09-17 13:46:07 +0200
commit1751da9129b941e51abc5ead9c365fb6da68ec05 (patch)
treeec759bc63632722595c87a156808f7d3461e81bc /pkgs/tools/misc/asciinema
parent00ae36410a6209f34055e4eca97940eafaab2600 (diff)
asciinema: add setuptools to nativeBuildInputs
Diffstat (limited to 'pkgs/tools/misc/asciinema')
-rw-r--r--pkgs/tools/misc/asciinema/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/tools/misc/asciinema/default.nix b/pkgs/tools/misc/asciinema/default.nix
index 11ad6b8b36afc..e025b0ffc58e0 100644
--- a/pkgs/tools/misc/asciinema/default.nix
+++ b/pkgs/tools/misc/asciinema/default.nix
@@ -16,6 +16,10 @@ python3Packages.buildPythonApplication rec {
     hash = "sha256-ioSNd0Fjk2Fp05lk3HeokIjNYGU0jQEaIDfcFB18mV0=";
   };
 
+  nativeBuildInputs = [
+    python3Packages.setuptools
+  ];
+
   postPatch = ''
     substituteInPlace tests/pty_test.py \
       --replace "python3" "${python3Packages.python}/bin/python"