Extensive collection of Python projects from PyPI, for Nix

Extensive collection
of Python projects
from the Python Packaging Index.
That can be installed with the Nix package manager.

Checkout the projects folder,
each entry represents a project and its available versions.

For example:

  • Project: awscli and version: 1.20.31, or
  • Project: requests and version 2.26.0

If you want to refer to the latest version available you can do it:

  • Project: awscli and version latest, or
  • Project: requests and version: latest

If you want to only use the binaries of a project
you can install them on your system like this:

$ nix-env -iA 'apps."".""' -f https://github.com/kamadorueda/nixpkgs-python/tarball/main

For example:

$ nix-env -iA 'apps."awscli"."latest"' -f https://github.com/kamadorueda/nixpkgs-python/tarball/main

or

$ nix-env -iA 'apps."awscli"."1.20.31"' -f https://github.com/kamadorueda/nixpkgs-python/tarball/main

After the process have completed,
you will be able to use the project’s binaries:


$ aws --version

  aws-cli/1.20.31 Python/3.9.6 Linux/5.10.62 botocore/1.21.31

:warning: You won’t be able to import

 

 

 

To finish reading, please visit source site