From 27623c76f56cb2d4056de6f2c43939df720b3926 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 29 Feb 2024 23:42:20 +0100 Subject: [PATCH] python312Packages.slither-analyzer: refactor --- pkgs/development/python-modules/slither-analyzer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/slither-analyzer/default.nix b/pkgs/development/python-modules/slither-analyzer/default.nix index ba8288a941b7..42d65ebdbe00 100644 --- a/pkgs/development/python-modules/slither-analyzer/default.nix +++ b/pkgs/development/python-modules/slither-analyzer/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "slither-analyzer"; version = "0.10.1"; - format = "setuptools"; + pyproject = true; disabled = pythonOlder "3.8"; @@ -29,13 +29,13 @@ buildPythonPackage rec { nativeBuildInputs = [ makeWrapper + setuptools ]; propagatedBuildInputs = [ crytic-compile packaging prettytable - setuptools web3 ];