mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
yaml-merge: fix build issue
This commit is contained in:
parent
92b09d4735
commit
0cacc3a0d6
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue