From 0cde352ef1e6442a825a8e7a0c1d266349bb3d5d Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Wed, 24 May 2023 17:45:02 +0200 Subject: [PATCH] python3Packages.guestfs: platforms are the ones libguestfs supports This ensures the proper propagation for `lib.meta.availableOn` to work fine. --- pkgs/development/python-modules/guestfs/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/guestfs/default.nix b/pkgs/development/python-modules/guestfs/default.nix index 0f1d2ddf05c..68401e9ea4d 100644 --- a/pkgs/development/python-modules/guestfs/default.nix +++ b/pkgs/development/python-modules/guestfs/default.nix @@ -20,5 +20,6 @@ buildPythonPackage rec { description = "Use libguestfs from Python"; license = licenses.lgpl2Plus; maintainers = with maintainers; [ grahamc ]; + inherit (libguestfs.meta) platforms; }; }