summary refs log tree commit diff
path: root/pkgs/tools/text/yaml-merge
diff options
context:
space:
mode:
authorRyan Horiguchi <ryan.horiguchi@gmail.com>2022-01-10 18:17:51 +0100
committerRyan Horiguchi <ryan.horiguchi@gmail.com>2022-01-10 18:24:44 +0100
commit0cacc3a0d6ceb4f170c017180607e4f02308f02c (patch)
treec174c360e90b80aa2953cf7d80d7dba5577a009d /pkgs/tools/text/yaml-merge
parent92b09d4735639fa4ee7fb550aa9e48b64d3e0d88 (diff)
downloadnixpkgs-0cacc3a0d6ceb4f170c017180607e4f02308f02c.tar
nixpkgs-0cacc3a0d6ceb4f170c017180607e4f02308f02c.tar.gz
nixpkgs-0cacc3a0d6ceb4f170c017180607e4f02308f02c.tar.bz2
nixpkgs-0cacc3a0d6ceb4f170c017180607e4f02308f02c.tar.lz
nixpkgs-0cacc3a0d6ceb4f170c017180607e4f02308f02c.tar.xz
nixpkgs-0cacc3a0d6ceb4f170c017180607e4f02308f02c.tar.zst
nixpkgs-0cacc3a0d6ceb4f170c017180607e4f02308f02c.zip
yaml-merge: fix build issue
Diffstat (limited to 'pkgs/tools/text/yaml-merge')
-rw-r--r--pkgs/tools/text/yaml-merge/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/text/yaml-merge/default.nix b/pkgs/tools/text/yaml-merge/default.nix
index e5794b439a5..921437c2571 100644
--- a/pkgs/tools/text/yaml-merge/default.nix
+++ b/pkgs/tools/text/yaml-merge/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, pythonPackages }:
+{ lib, stdenv, fetchFromGitHub, python3Packages }:
 
 stdenv.mkDerivation {
   pname = "yaml-merge";
@@ -11,8 +11,8 @@ stdenv.mkDerivation {
     sha256 = "0mwda2shk43i6f22l379fcdchmb07fm7nf4i2ii7fk3ihkhb8dgp";
   };
 
-  pythonPath = with pythonPackages; [ pyyaml ];
-  nativeBuildInputs = [ pythonPackages.wrapPython ];
+  pythonPath = with python3Packages; [ pyyaml ];
+  nativeBuildInputs = with python3Packages;  [ wrapPython ];
 
   installPhase = ''
     install -Dm755 yaml-merge.py $out/bin/yaml-merge