Repackages apps to restrict installation into isolated env
Project description
📦 Solo Repackage (srepkg)
Wraps a Python package with an isolation layer that enforces installation in an isolated virtual environment while still providing access to the original package's command-line interface in an external environment.
📖 Description
When a Python package that has been wrapped in a srepkg isolation layer is installed in an active, pre-existing Python environment:
- The original package plus its dependencies are installed in a new, automatically created virtual environment.
- A dependency-free "access" package installed in the pre-existing environment contains a controller module capable of making calls to the Python interpreter in the newly created environment.
- This enivronment and package structure exposes the original package’s CL to the pre-existing environmen while ensuring that none of the original package's dependencies conflict with packages in the pre-existing environment.
📘 Documentation
Full project documentation, including detailed examples, is available at: duanegoodner/github.io/srepkg
🎯 Use Cases
For Package Distributors
- srepkg can be useful if you are sharing a Python command line application, and you want to be certain that users can install and run it without worrying about dependency conflicts.
- Wrapping a CL package with srepkg prior to sharing the package with other users will ensure that wherever the package is installed, it does not introduce dependency conflicts into a user's existing Python environment — even if the user knows nothing about managing Python environments.
For Package Users
- Any existing CL package obtained from Python Packaging Index (PyPI) or GitHub can be wrapped with srepkg prior to installation.
- If you want the original package commands to be accessible from a single environment (that is distinct from the isolated environment where the original package is installed), then srepkg is likely a good option.
- However, if you want the isolated package's command interface to be available globally and/or want a much more mature isolation tool, then pipx is likely a better choice.
⚡ Quick Start
Requirements
- Python version 3.9 or higher
- For compatibility with srepkg, and existing package must:
- Be installable via pip
- Be compatible with the Python interpreter version that is running srepkg.
- Have command line entry point(s) specified in either one the
[project.scripts]section of apyproject.toml(preferred), the[options.entry_points]section of asetup.cfg, or theentry_pointsarguments passed tosetup()in asetupy.pyfile.
- Optional:
minicondaorcondaif you want to exactly follow the examples below
Simple Demo
# Create and activate a new conda environment for testing
conda create -n srepkg_test python=3.11
conda activate srepkg_test
# Install srepkg from PyPI
pip install srepkg
# Re-package a version of black, obtained from PyPI
srepkg black -r 25.1.0 # creates re-package wheel and sdist under ./srepkg_dists
# install our re-packaged wheel
pip install ./srepkg_dists/blacksrepkg-25.1.0-py3-none-any.whl
# Confirm blacksrepkg is installed and that black is NOT installed in our conda env
conda list | grep black
# Output:
# blacksrepkg 25.1.0 pypi_0 pypi
# Check if any of black's dependencies are installed in our conda environment
onda list | grep "click\|\
mypy_extensions\|\
packaging\|\
pathspec\|\
platformdirs\|\
tomli\|\
typing_extensions"
# Output:
# packaging 24.2 pypi_0 pypi
# Note: 'packaging' is installed because it is a dependency of 'srepkg'.
# No other package that black depends on is in our environment.
# Confirm that we have access to the black CLI
black -c "def foo():print('hello,world')"
# Output:
# def foo():
# print("hello,world")
Command Line Help
For details on all srepkg command options, run:
srepkg --help
🧪 Testing
An automated test suite runs via GitHub Actions on every push to the main branch and every pull request. However, tests can also be run manually.
First, clone the repo and install dependencies:
$ git clone https://github.com/duanegoodner/srepkg
$ cd srepkg
$ pip install -e '.[test]'
Then run the test suite and generate a coverage report:
$ coverage run -m pytest
$ coverage report -m
🤝 Contributing
Issues, Pull Requests and/or Discussions are welcome and appreciated!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file srepkg-0.1.9.tar.gz.
File metadata
- Download URL: srepkg-0.1.9.tar.gz
- Upload date:
- Size: 77.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7d97dbfd605561d700b6827651aa0eab7b995ae1c514a6ec815ad6ea5631ef9
|
|
| MD5 |
0b94fcdca1f70215f305837701e4bcbc
|
|
| BLAKE2b-256 |
edf3e0784569188785bb024bd43da98b7decc55bee44260930403cea92cbee4d
|
File details
Details for the file srepkg-0.1.9-py3-none-any.whl.
File metadata
- Download URL: srepkg-0.1.9-py3-none-any.whl
- Upload date:
- Size: 98.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6570654a4176dc278758eb4356ff5c7fbc56f6858b3a1ea1b0cf4390e476ff29
|
|
| MD5 |
ce9fc6f3f8415af54dde2ff13ac2f4fe
|
|
| BLAKE2b-256 |
86a59f868231dd9591a7b76bfdf0072ed2890fcaf2010471be78ab25f3c602b7
|