slither-analyzer: update maintainer

This commit is contained in:
Fabian Affolter 2021-04-27 12:32:51 +02:00
parent db48278aba
commit 204e1edf27

View file

@ -15,25 +15,31 @@
buildPythonPackage rec {
pname = "slither-analyzer";
version = "0.7.1";
disabled = pythonOlder "3.6";
# No Python tests
doCheck = false;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-v/UuxxgMmkGfP962AfOQU05MI8xJocpD8SkENCZi04I=";
};
nativeBuildInputs = [ makeWrapper ];
propagatedBuildInputs = [ crytic-compile prettytable setuptools ];
nativeBuildInputs = [
makeWrapper
];
propagatedBuildInputs = [
crytic-compile
prettytable
setuptools
];
postFixup = lib.optionalString withSolc ''
wrapProgram $out/bin/slither \
--prefix PATH : "${lib.makeBinPath [ solc ]}"
'';
# No Python tests
doCheck = false;
meta = with lib; {
description = "Static Analyzer for Solidity";
longDescription = ''
@ -43,6 +49,6 @@ buildPythonPackage rec {
'';
homepage = "https://github.com/trailofbits/slither";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ arturcygan ];
maintainers = with maintainers; [ arturcygan fab ];
};
}