slither-analyzer: remove from maintainers

Not using package anymore.
This commit is contained in:
Lorenzo Manacorda 2021-04-14 18:57:38 +02:00
parent fc78d06480
commit 68fd217b9e

View File

@ -1,7 +1,15 @@
{ lib, stdenv, buildPythonPackage, fetchPypi, makeWrapper, pythonOlder { lib
, crytic-compile, prettytable, setuptools , stdenv
, buildPythonPackage
, fetchPypi
, makeWrapper
, pythonOlder
, crytic-compile
, prettytable
, setuptools
, solc
# solc is currently broken on Darwin, default to false # solc is currently broken on Darwin, default to false
, solc, withSolc ? !stdenv.isDarwin , 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 ];
}; };
} }