summary refs log tree commit diff
path: root/pkgs/development/python-modules/capstone
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-10-16 09:59:47 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2019-10-16 09:59:55 +0200
commit80ac778c06aae85b77904a2f6b7ce950c4356cf6 (patch)
tree4d2c0671b7f5345cccdac5327134d918b2edda24 /pkgs/development/python-modules/capstone
parentb4136a8f5b1d5ee7f841d67917cb0d7f7acf6a5a (diff)
downloadnixpkgs-80ac778c06aae85b77904a2f6b7ce950c4356cf6.tar
nixpkgs-80ac778c06aae85b77904a2f6b7ce950c4356cf6.tar.gz
nixpkgs-80ac778c06aae85b77904a2f6b7ce950c4356cf6.tar.bz2
nixpkgs-80ac778c06aae85b77904a2f6b7ce950c4356cf6.tar.lz
nixpkgs-80ac778c06aae85b77904a2f6b7ce950c4356cf6.tar.xz
nixpkgs-80ac778c06aae85b77904a2f6b7ce950c4356cf6.tar.zst
nixpkgs-80ac778c06aae85b77904a2f6b7ce950c4356cf6.zip
pythonPackages.capstone: add missing setuptools dep
Diffstat (limited to 'pkgs/development/python-modules/capstone')
-rw-r--r--pkgs/development/python-modules/capstone/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/capstone/default.nix b/pkgs/development/python-modules/capstone/default.nix
index 2bd22ebf0d9..035632f9cf2 100644
--- a/pkgs/development/python-modules/capstone/default.nix
+++ b/pkgs/development/python-modules/capstone/default.nix
@@ -2,6 +2,7 @@
 , buildPythonPackage
 , fetchPypi
 , fetchpatch
+, setuptools
 }:
 
 buildPythonPackage rec {
@@ -17,6 +18,8 @@ buildPythonPackage rec {
     sha256 = "3c0f73db9f8392f7048c8a244809f154d7c39f354e2167f6c477630aa517ed04";
   };
 
+  propagatedBuildInputs = [ setuptools ];
+
   patches = [
     (fetchpatch {
       stripLen = 2;