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:
parent
1be7748c0d
commit
f5de0ca52e
1 changed files with 6 additions and 4 deletions
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue