Skip to main content

Build Python wheels from pre-compiled binaries

Project description

bin2whl

Build Python wheels from pre-compiled binaries. Takes any pre-compiled binary (Go, Zig, C, Rust, etc.) and packages it as a platform-specific Python wheel for distribution on PyPI. One wheel per binary, per platform.

Features

  • Zero dependencies (pure Python, standard library only)
  • Config file support (wheel.json) for repeatable builds
  • Single binary mode for one-off builds
  • Supports macOS, Linux, and Windows on x86_64 and ARM64
  • Proper wheel metadata and SHA256 hashes (PEP 427)
  • Entry point generation (command lands in PATH)
  • Works with pip install and uv tool install

Installation

# Using uv
uv pip install bin2whl

# Using pip
pip install bin2whl

Usage

Config file mode (recommended)

Create a wheel.json:

{
    "name": "your-go-tool",
    "version": "0.1.0",
    "description": "A Go CLI tool packaged for PyPI",
    "author": "Your Name",
    "author-email": "you@example.com",
    "binaries": {
        "linux_x86_64": "dist/tool-linux-x86_64",
        "linux_aarch64": "dist/tool-linux-aarch64",
        "macosx_10_9_x86_64": "dist/tool-macos-x86_64",
        "macosx_11_0_arm64": "dist/tool-macos-arm64",
        "win_amd64": "dist/tool-win-x86_64.exe",
        "win_arm64": "dist/tool-win-arm64.exe"
    }
}

Then build:

bin2whl

Single binary mode

bin2whl \
  --name your-go-tool \
  --version-str 0.1.0 \
  --binary dist/tool-linux-x86_64 \
  --platform linux_x86_64

Output

Each binary produces one wheel:

wheels/
├── your_go_tool-0.1.0-py3-none-linux_x86_64.whl
├── your_go_tool-0.1.0-py3-none-linux_aarch64.whl
├── your_go_tool-0.1.0-py3-none-macosx_10_9_x86_64.whl
├── your_go_tool-0.1.0-py3-none-macosx_11_0_arm64.whl
├── your_go_tool-0.1.0-py3-none-win_amd64.whl
└── your_go_tool-0.1.0-py3-none-win_arm64.whl

Upload to PyPI, then users just run:

pip install your-go-tool
your-go-tool --help

Development

# Set up development environment
make dev

# Run linting and type checks
make check

# Format code
make format

# Build wheel and docs
make build

Publishing

Publishing requires cal-publish-python configuration.

# Build first
make build

# Publish wheel to PyPI and docs to GitLab Pages
make publish

Licence

Unlicense — public domain. See LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

bin2whl-1.0.0b1-py3-none-any.whl (14.8 kB view details)

Uploaded Python 3

File details

Details for the file bin2whl-1.0.0b1-py3-none-any.whl.

File metadata

  • Download URL: bin2whl-1.0.0b1-py3-none-any.whl
  • Upload date:
  • Size: 14.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for bin2whl-1.0.0b1-py3-none-any.whl
Algorithm Hash digest
SHA256 b9efe25229ab43915efea23d88ed5f3acc17345e516bd8f7dd3361ce2f953bdd
MD5 b2107ac73337a71ac35849a147db1ce3
BLAKE2b-256 962c90a2a433d4b3641b7fcdb6bb38d7b9e6a2ffd077553c2e8ef4048223971f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page