summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRaito Bezarius <masterancpp@gmail.com>2023-05-24 17:45:24 +0200
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2023-05-26 12:23:48 +0000
commitfbeebc72a56da76588beef3fd22d5e8f12904e84 (patch)
treee404e4bdb86eed606a81975f1e77640bdaace3e9 /pkgs
parent43e777fc546f79dbfdf8a863bdd378be49c7b7cc (diff)
python3Packages.pyxattr: platforms are the ones xattr supports
This ensures the proper propagation for `lib.meta.availableOn` to work.

(cherry picked from commit d99434c90b51c3c1471af47cde35cce5ee6b165d)
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/pyxattr/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pyxattr/default.nix b/pkgs/development/python-modules/pyxattr/default.nix
index 7e1676dafa638..2bc4a9bf950e6 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;
     };
 }