pythonPackages.slither-analyzer: add setuptools

This commit is contained in:
Jonathan Ringer 2019-10-09 10:16:59 -07:00
parent e14ccd7285
commit 4ed9036e4b

View File

@ -1,4 +1,8 @@
{ lib, buildPythonPackage, fetchPypi, makeWrapper, prettytable, pythonOlder, solc }:
{ lib, buildPythonPackage, fetchPypi, makeWrapper, pythonOlder
, prettytable
, setuptools
, solc
}:
buildPythonPackage rec {
pname = "slither-analyzer";
@ -15,7 +19,7 @@ buildPythonPackage rec {
};
nativeBuildInputs = [ makeWrapper ];
propagatedBuildInputs = [ prettytable ];
propagatedBuildInputs = [ prettytable setuptools ];
postFixup = ''
wrapProgram $out/bin/slither \