python310Packages.slither-analyzer: 0.9.1 -> 0.9.2

Changelog: https://github.com/crytic/slither/releases/tag/0.9.2
This commit is contained in:
Fabian Affolter 2023-01-14 17:36:46 +01:00
parent 1be7748c0d
commit f5de0ca52e

View file

@ -1,11 +1,12 @@
{ lib { lib
, stdenv , stdenv
, buildPythonPackage , buildPythonPackage
, crytic-compile
, fetchFromGitHub , fetchFromGitHub
, makeWrapper , makeWrapper
, pythonOlder , packaging
, crytic-compile
, prettytable , prettytable
, pythonOlder
, setuptools , setuptools
, solc , solc
, withSolc ? false , withSolc ? false
@ -13,7 +14,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "slither-analyzer"; pname = "slither-analyzer";
version = "0.9.1"; version = "0.9.2";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -22,7 +23,7 @@ buildPythonPackage rec {
owner = "crytic"; owner = "crytic";
repo = "slither"; repo = "slither";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-u9uA4eq6gYQXHhZ1ruk1vkEIRTKsgN87zENuR1Fhew4="; hash = "sha256-Co3BFdLmSIMqlZVEPJHYH/Cf7oKYSZ+Ktbnd5RZGmfE=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -31,6 +32,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
crytic-compile crytic-compile
packaging
prettytable prettytable
setuptools setuptools
]; ];