From a4ec5fa360d85c8392299f6a6b37762c9a9cff88 Mon Sep 17 00:00:00 2001 From: Ryan Burns Date: Thu, 4 Nov 2021 17:59:14 -0700 Subject: [PATCH] auditwheel: set meta.platforms Upstream supports linux only, as this package audits manylinux wheels: https://github.com/pypa/auditwheel#installation --- pkgs/tools/package-management/auditwheel/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/package-management/auditwheel/default.nix b/pkgs/tools/package-management/auditwheel/default.nix index 7c633698e389..ccb85080824c 100644 --- a/pkgs/tools/package-management/auditwheel/default.nix +++ b/pkgs/tools/package-management/auditwheel/default.nix @@ -52,5 +52,6 @@ python3.pkgs.buildPythonApplication rec { bsd3 # from https://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-projects/pax-utils/lddtree.py ]; maintainers = with maintainers; [ davhau ]; + platforms = platforms.linux; }; }