Merge pull request #249307 from elohmeier/wasmer-darwin

python3Packages.wasmer: not broken on darwin
This commit is contained in:
Theodore Ni 2023-08-23 08:26:01 -07:00 committed by GitHub
commit c93faaa951
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -68,16 +68,15 @@ let
pythonImportsCheck = [ "${lib.replaceStrings ["-"] ["_"] pname}" ];
meta = with lib; {
broken = stdenv.isDarwin;
description = "Python extension to run WebAssembly binaries";
homepage = "https://github.com/wasmerio/wasmer-python";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ ];
maintainers = [ ];
};
};
in
rec {
{
wasmer = common {
pname = "wasmer";
buildAndTestSubdir = "packages/api";