Merge pull request #70870 from jonringer/fix-slither-analyzer

pythonPackages.slither-analyzer: add setuptools
This commit is contained in:
worldofpeace 2019-10-09 18:19:02 +00:00 committed by GitHub
commit 646b519965
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

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