diffoscope: switch to python3.pkgs

This commit is contained in:
Fabian Affolter 2023-07-02 00:15:12 +02:00
parent cdb73f3806
commit 569e52ad02

View file

@ -56,7 +56,7 @@
, pgpdump , pgpdump
, poppler_utils , poppler_utils
, procyon , procyon
, python3Packages , python3
, qemu , qemu
, R , R
, radare2 , radare2
@ -77,7 +77,7 @@
}: }:
# Note: when upgrading this package, please run the list-missing-tools.sh script as described below! # 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"; pname = "diffoscope";
version = "233"; version = "233";
@ -155,7 +155,7 @@ python3Packages.buildPythonApplication rec {
zip zip
zstd zstd
] ]
++ (with python3Packages; [ ++ (with python3.pkgs; [
argcomplete argcomplete
debian debian
defusedxml defusedxml
@ -203,7 +203,7 @@ python3Packages.buildPythonApplication rec {
wabt wabt
xmlbeans xmlbeans
] ]
++ (with python3Packages; [ ++ (with python3.pkgs; [
androguard androguard
binwalk binwalk
guestfs guestfs
@ -218,7 +218,7 @@ python3Packages.buildPythonApplication rec {
++ lib.optionals enableUnfree [ apktool ] ++ lib.optionals enableUnfree [ apktool ]
)); ));
nativeCheckInputs = with python3Packages; [ nativeCheckInputs = with python3.pkgs; [
pytestCheckHook pytestCheckHook
] ++ pythonPath; ] ++ pythonPath;