Commit f5de0ca5 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python310Packages.slither-analyzer: 0.9.1 -> 0.9.2

parent 1be7748c
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
{ lib
, stdenv
, buildPythonPackage
, crytic-compile
, fetchFromGitHub
, makeWrapper
, pythonOlder
, crytic-compile
, packaging
, prettytable
, pythonOlder
, setuptools
, solc
, withSolc ? false
@@ -13,7 +14,7 @@

buildPythonPackage rec {
  pname = "slither-analyzer";
  version = "0.9.1";
  version = "0.9.2";
  format = "setuptools";

  disabled = pythonOlder "3.8";
@@ -22,7 +23,7 @@ buildPythonPackage rec {
    owner = "crytic";
    repo = "slither";
    rev = "refs/tags/${version}";
    hash = "sha256-u9uA4eq6gYQXHhZ1ruk1vkEIRTKsgN87zENuR1Fhew4=";
    hash = "sha256-Co3BFdLmSIMqlZVEPJHYH/Cf7oKYSZ+Ktbnd5RZGmfE=";
  };

  nativeBuildInputs = [
@@ -31,6 +32,7 @@ buildPythonPackage rec {

  propagatedBuildInputs = [
    crytic-compile
    packaging
    prettytable
    setuptools
  ];