From ca5c18110767a5ac3b23c7c93ba7adb38adc7378 Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Thu, 17 Aug 2023 16:18:28 -0700 Subject: [PATCH] cve-bin-tool: add wheel dependency to pinned packaging --- pkgs/tools/security/cve-bin-tool/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/tools/security/cve-bin-tool/default.nix b/pkgs/tools/security/cve-bin-tool/default.nix index 7b0cda0b7382..88b52da21eb3 100644 --- a/pkgs/tools/security/cve-bin-tool/default.nix +++ b/pkgs/tools/security/cve-bin-tool/default.nix @@ -36,6 +36,7 @@ , buildPythonPackage , pretend , pythonOlder +, wheel }: let @@ -52,6 +53,7 @@ let }; nativeBuildInputs = [ setuptools + wheel ]; propagatedBuildInputs = [ pyparsing @@ -68,6 +70,7 @@ in buildPythonApplication rec { pname = "cve-bin-tool"; version = "3.2"; + format = "setuptools"; src = fetchFromGitHub { owner = "intel";