From d99434c90b51c3c1471af47cde35cce5ee6b165d Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Wed, 24 May 2023 17:45:24 +0200 Subject: [PATCH] python3Packages.pyxattr: platforms are the ones xattr supports This ensures the proper propagation for `lib.meta.availableOn` to work. --- pkgs/development/python-modules/pyxattr/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/pyxattr/default.nix b/pkgs/development/python-modules/pyxattr/default.nix index 0fe64d2bf901..ac8a1654c9ef 100644 --- a/pkgs/development/python-modules/pyxattr/default.nix +++ b/pkgs/development/python-modules/pyxattr/default.nix @@ -21,5 +21,6 @@ buildPythonPackage rec { meta = with lib; { description = "A Python extension module which gives access to the extended attributes for filesystem objects available in some operating systems"; license = licenses.lgpl21Plus; + inherit (pkgs.attr.meta) platforms; }; }