Merge pull request #119438 from asymmetric/drop-slither

slither-analyzer: remove from maintainers
This commit is contained in:
Sandro 2021-04-14 19:39:35 +02:00 committed by GitHub
commit acf0dbcc90
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,15 @@
{ lib, stdenv, buildPythonPackage, fetchPypi, makeWrapper, pythonOlder { lib
, crytic-compile, prettytable, setuptools , stdenv
# solc is currently broken on Darwin, default to false , buildPythonPackage
, solc, withSolc ? !stdenv.isDarwin , fetchPypi
, makeWrapper
, pythonOlder
, crytic-compile
, prettytable
, setuptools
, solc
# solc is currently broken on Darwin, default to false
, withSolc ? !stdenv.isDarwin
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -35,6 +43,6 @@ buildPythonPackage rec {
''; '';
homepage = "https://github.com/trailofbits/slither"; homepage = "https://github.com/trailofbits/slither";
license = licenses.agpl3Plus; license = licenses.agpl3Plus;
maintainers = with maintainers; [ asymmetric arturcygan ]; maintainers = with maintainers; [ arturcygan ];
}; };
} }