From 569e52ad024f83ebac2522d2ec9f99e57f1bb09e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 2 Jul 2023 00:15:12 +0200 Subject: [PATCH] diffoscope: switch to python3.pkgs --- pkgs/tools/misc/diffoscope/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/misc/diffoscope/default.nix b/pkgs/tools/misc/diffoscope/default.nix index acd940c60a59..771344714fad 100644 --- a/pkgs/tools/misc/diffoscope/default.nix +++ b/pkgs/tools/misc/diffoscope/default.nix @@ -56,7 +56,7 @@ , pgpdump , poppler_utils , procyon -, python3Packages +, python3 , qemu , R , radare2 @@ -77,7 +77,7 @@ }: # Note: when upgrading this package, please run the list-missing-tools.sh script as described below! -python3Packages.buildPythonApplication rec { +python3.pkgs.buildPythonApplication rec { pname = "diffoscope"; version = "233"; @@ -155,7 +155,7 @@ python3Packages.buildPythonApplication rec { zip zstd ] - ++ (with python3Packages; [ + ++ (with python3.pkgs; [ argcomplete debian defusedxml @@ -203,7 +203,7 @@ python3Packages.buildPythonApplication rec { wabt xmlbeans ] - ++ (with python3Packages; [ + ++ (with python3.pkgs; [ androguard binwalk guestfs @@ -218,7 +218,7 @@ python3Packages.buildPythonApplication rec { ++ lib.optionals enableUnfree [ apktool ] )); - nativeCheckInputs = with python3Packages; [ + nativeCheckInputs = with python3.pkgs; [ pytestCheckHook ] ++ pythonPath;