2021-01-06 20:10:40 +00:00
|
|
|
{ lib, stdenv, buildPythonPackage, fetchPypi, makeWrapper, pythonOlder
|
|
|
|
, crytic-compile, prettytable, setuptools
|
|
|
|
# solc is currently broken on Darwin, default to false
|
|
|
|
, solc, withSolc ? !stdenv.isDarwin
|
2019-10-09 18:16:59 +01:00
|
|
|
}:
|
2018-11-23 16:10:02 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "slither-analyzer";
|
2021-01-09 12:27:17 +00:00
|
|
|
version = "0.7.0";
|
2018-11-23 16:10:02 +00:00
|
|
|
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
|
|
|
|
# No Python tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-01-09 12:27:17 +00:00
|
|
|
sha256 = "10r479xidgxvas4wb0z6injp59jrn7rfq8d7bxlcalc2dy4mawr0";
|
2018-11-23 16:10:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2020-11-05 21:02:47 +00:00
|
|
|
propagatedBuildInputs = [ crytic-compile prettytable setuptools ];
|
2018-11-23 16:10:02 +00:00
|
|
|
|
2021-01-06 20:10:40 +00:00
|
|
|
postFixup = lib.optionalString withSolc ''
|
2018-11-23 16:10:02 +00:00
|
|
|
wrapProgram $out/bin/slither \
|
|
|
|
--prefix PATH : "${lib.makeBinPath [ solc ]}"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Static Analyzer for Solidity";
|
|
|
|
longDescription = ''
|
|
|
|
Slither is a Solidity static analysis framework written in Python 3. It
|
|
|
|
runs a suite of vulnerability detectors, prints visual information about
|
|
|
|
contract details, and provides an API to easily write custom analyses.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/trailofbits/slither";
|
2021-01-06 20:10:40 +00:00
|
|
|
license = licenses.agpl3Plus;
|
|
|
|
maintainers = with maintainers; [ asymmetric arturcygan ];
|
2018-11-23 16:10:02 +00:00
|
|
|
};
|
|
|
|
}
|