Hacker News new | ask | show | jobs
by codethief 312 days ago
I love Nix as much as the next guy, but I also need my coworkers to be able to get things to work on their non-NixOS machines. Have you found an easy way to have Nix install packages through uv (from a pyproject.toml / uv.lock files)? Right now I just do programs.nix-ld.enable = true; and use uv completely separately from Nix.
1 comments

uv2nix is great from my experience https://github.com/pyproject-nix/uv2nix
Thanks! Is there a simple example of how to use it? I have found their docs with those gigantic code examples impenetrable.