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
commit d36d401087
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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