49 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, makeWrapper
, pythonOlder
, crytic-compile
, prettytable
, setuptools
, solc
# solc is currently broken on Darwin, default to false
, withSolc ? !stdenv.isDarwin
}:
2018-11-23 17:10:02 +01:00
buildPythonPackage rec {
pname = "slither-analyzer";
2021-04-11 16:03:18 +00:00
version = "0.7.1";
2018-11-23 17:10:02 +01:00
disabled = pythonOlder "3.6";
# No Python tests
doCheck = false;
src = fetchPypi {
inherit pname version;
2021-04-11 16:03:18 +00:00
sha256 = "sha256-v/UuxxgMmkGfP962AfOQU05MI8xJocpD8SkENCZi04I=";
2018-11-23 17:10:02 +01:00
};
nativeBuildInputs = [ makeWrapper ];
propagatedBuildInputs = [ crytic-compile prettytable setuptools ];
2018-11-23 17:10:02 +01:00
postFixup = lib.optionalString withSolc ''
2018-11-23 17:10:02 +01: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.
'';
homepage = "https://github.com/trailofbits/slither";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ arturcygan ];
2018-11-23 17:10:02 +01:00
};
}