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