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

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 \