nixpkgs-python-importer icon indicating copy to clipboard operation
nixpkgs-python-importer copied to clipboard

Violate Nix philosophy, install Python packages mid-session with `from nixpkgs.scipy import scipy`.

Results 4 nixpkgs-python-importer issues
Sort by recently updated
recently updated
newest added

On a pure-flake system, I get `ImportError: file 'nixpkgs' was not found in the Nix search path (add it using $NIX_PATH or -I), at (string)`. Not so sure what would...

Many python packages come with binaries. Some examples are flask, numpy, pytest, and graphviz to name a few. Without this PR the command provided by the libraries are not in...

Python does not allow dashes in module names, while some nix derivations use them in names (ex: `setuptools-git`). We can either: 1. try to resolve a dashed name given an...

In my limited understanding, nix garbage collector can currently collect our modules from under our feet while the interpreter using them is still running. Other than praying for this to...