about summary refs log tree commit diff
path: root/pkgs/tools/misc/parted
diff options
context:
space:
mode:
authorArnout Engelen <arnout@bzzt.net>2020-11-23 20:59:11 +0100
committerArnout Engelen <arnout@bzzt.net>2020-11-30 10:15:05 +0100
commit9062f6fdf7b998514880199dc7a985fb143e9b30 (patch)
tree83be786be8d220b6c6ffc42652b888820baf729e /pkgs/tools/misc/parted
parentfb3d81707faabaa60fd928b58dbf2dd818f7560c (diff)
parted: build with python3
Diffstat (limited to 'pkgs/tools/misc/parted')
-rw-r--r--pkgs/tools/misc/parted/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/parted/default.nix b/pkgs/tools/misc/parted/default.nix
index 693e99c464527..b00a0836021f8 100644
--- a/pkgs/tools/misc/parted/default.nix
+++ b/pkgs/tools/misc/parted/default.nix
@@ -8,7 +8,7 @@
 , dosfstools
 , e2fsprogs
 , perl
-, python2
+, python3
 , util-linux
 , check
 , enableStatic ? false
@@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
   # Tests were previously failing due to Hydra running builds as uid 0.
   # That should hopefully be fixed now.
   doCheck = !stdenv.hostPlatform.isMusl; /* translation test */
-  checkInputs = [ check dosfstools e2fsprogs perl python2 util-linux ];
+  checkInputs = [ check dosfstools e2fsprogs perl python3 util-linux ];
 
   meta = {
     description = "Create, destroy, resize, check, and copy partitions";