1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

waagent: fix build

Use latest Python to avoid https://github.com/NixOS/nixpkgs/issues/353830

Co-authored-by: Sarah Stoltze <sarah.stoltze@maersk.com>
This commit is contained in:
Andrew Bruce 2024-11-07 09:52:17 +00:00
parent 8f3c3f6a03
commit c73f4a500a
No known key found for this signature in database
GPG key ID: C28A2EAA726964DE

View file

@ -2,13 +2,12 @@
coreutils,
fetchFromGitHub,
lib,
python39,
python3,
bash,
}:
let
# the latest python version that waagent test against according to https://github.com/Azure/WALinuxAgent/blob/28345a55f9b21dae89472111635fd6e41809d958/.github/workflows/ci_pr.yml#L75
python = python39;
python = python3;
in
python.pkgs.buildPythonApplication rec {