39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ lib, buildPythonPackage, fetchPypi, makeWrapper, pythonOlder
|
|
, crytic-compile, prettytable, setuptools, solc
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "slither-analyzer";
|
|
version = "0.6.13";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
# No Python tests
|
|
doCheck = false;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "2b0fe48f07971f4104e2b66d70a7924a550b477405b8feed9c0d4db14bb2c87c";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
propagatedBuildInputs = [ crytic-compile prettytable setuptools ];
|
|
|
|
postFixup = ''
|
|
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.
|
|
'';
|
|
homepage = "https://github.com/trailofbits/slither";
|
|
license = licenses.agpl3;
|
|
maintainers = [ maintainers.asymmetric ];
|
|
};
|
|
}
|