python312Packages.xcffib: Fix darwin build

Set platforms
https://github.com/tych0/xcffib/blob/a60303b80e3d3fa2e1f3521545307f565513ca35/module/__init__.py#L27 mentions darwin and windows
This commit is contained in:
Artturin
2024-05-02 22:48:05 +03:00
parent 275148e602
commit c5bd05312e
@@ -47,11 +47,15 @@ buildPythonPackage rec {
"xcffib"
];
# Tests use xvfb
__darwinAllowLocalNetworking = true;
meta = with lib; {
description = "A drop in replacement for xpyb, an XCB python binding";
homepage = "https://github.com/tych0/xcffib";
changelog = "https://github.com/tych0/xcffib/releases/tag/v${version}";
license = licenses.asl20;
platforms = platforms.linux ++ platforms.darwin ++ platforms.windows;
maintainers = with maintainers; [ kamilchm ];
};
}