aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Garrelou <simon.garrelou@airbus.com>2023-10-17 17:05:04 +0200
committerSimon Garrelou <simon.garrelou@airbus.com>2023-10-17 17:05:04 +0200
commitd31bde2672c5135fc044e34c312086561a98a0d3 (patch)
tree4a749ba8a2089e5ec038697d0aafcd63b7fb8005
parent89b377692522b86483a4343776eefa9db88f1b69 (diff)
downloadnixpkgs-d31bde2672c5135fc044e34c312086561a98a0d3.tar.gz
nixpkgs-d31bde2672c5135fc044e34c312086561a98a0d3.zip
Fix msynth derivation needing setuptools
-rw-r--r--pkgs/msynth/package.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/msynth/package.nix b/pkgs/msynth/package.nix
index cf44368..c72e66b 100644
--- a/pkgs/msynth/package.nix
+++ b/pkgs/msynth/package.nix
@@ -5,6 +5,7 @@
5, future 5, future
6, z3 6, z3
7, miasm 7, miasm
8, setuptools
8}: 9}:
9buildPythonPackage rec { 10buildPythonPackage rec {
10 pname = "msynth"; 11 pname = "msynth";
@@ -22,6 +23,7 @@ buildPythonPackage rec {
22 }; 23 };
23 24
24 propagatedBuildInputs = [ 25 propagatedBuildInputs = [
26 setuptools
25 future 27 future
26 miasm 28 miasm
27 z3 29 z3