Merge pull request #154310 from rhoriguchi/yaml-merge

yaml-merge: fix build issue
This commit is contained in:
Nikolay Amiantov
2022-01-10 23:38:23 +03:00
committed by GitHub
+3 -3
View File
@@ -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