Abuses Nix philosophy, allowing me to do `from nixpkgs import scipy` anytime
Project description
# nixpkgs-python-importer
## What
An importlib hack that allows from nixpkgs.pythonpackagename import modulename.
Examples:
from nixpkgs.scipy import scipy import nixpkgs.scipy.scipy from nixpkgs.matplotlib.matplotlib import pyplot as plt import nixpkgs.matplotlib.matplotlib.pyplot as plt from nixpkgs.pillow.PIL import Image
## Why
I used to be a researcher who used python and xonsh interactively a lot. While I appreciate the purity of Nix, sometimes I really want to violate it and pull in some dependency into my shell right now, without tearing my session down, editing and rebuilding an environment, and then recreating my session from history.
A convenient way of spawning a xonsh instance with an extra dependency soothes the nerves a bit, but doesn’t really free me from the recreation part.
I started writing a xonsh macro that ended up being a generic Python solution with a pleasingly nice syntax. I mean, from nixpkgs.scipy import scipy. Ain’t that nice?
## How
importlib magic
## Try
The quickest way to try it would be (on a recent NixOS):
` nix run -f '(import <nixpkgs> {}).python3.withPackages(ps:[ps.nixpkgs])' -c python ` then try from nixpkgs.pbr import pbr (or any other package).
If that doesn’t work, you may also try your luck with unstable nixpkgs:
` nix run -f channel:nixos-unstable '(import <nixpkgs> {}).python3.withPackages(ps:[ps.nixpkgs])' -c python `
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file nixpkgs-0.2.4.tar.gz
.
File metadata
- Download URL: nixpkgs-0.2.4.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d5b50d7937b78c3c2724d89fadaa55dbbde01a35c106090da14567517c19b36 |
|
MD5 | 5cc2bf7dd6020e9c763f071849dd083e |
|
BLAKE2b-256 | b5ddae4ca71cf62847421ea775317ff18a8e9b4813c49c5dc3f331a79e644c3b |