mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 09:14:28 +00:00
pythonPackages.slither-analyzer: add setuptools
This commit is contained in:
parent
e14ccd7285
commit
4ed9036e4b
@ -1,4 +1,8 @@
|
|||||||
{ lib, buildPythonPackage, fetchPypi, makeWrapper, prettytable, pythonOlder, solc }:
|
{ lib, buildPythonPackage, fetchPypi, makeWrapper, pythonOlder
|
||||||
|
, prettytable
|
||||||
|
, setuptools
|
||||||
|
, solc
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "slither-analyzer";
|
pname = "slither-analyzer";
|
||||||
@ -15,7 +19,7 @@ buildPythonPackage rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
propagatedBuildInputs = [ prettytable ];
|
propagatedBuildInputs = [ prettytable setuptools ];
|
||||||
|
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
wrapProgram $out/bin/slither \
|
wrapProgram $out/bin/slither \
|
||||||
|
Loading…
Reference in New Issue
Block a user