-
Notifications
You must be signed in to change notification settings - Fork 334
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for uv
project management
#1446
Conversation
Adds an initUvScript if `uv.sync` is enabled. Calls `uv sync` to install python packages as defined in pyproject.toml fixes: cachix#1405
Looks like a great start :) Thank you so much! Could you also add a test to |
How do I generate docs so that check will pass? |
@sandydoo I think we've enabled this for PRs, but we'd have to target upstream branch for it to work. |
|
I've rebased and cleaned up in 7df6f2b, but I'm seeing test fail:
@lamalex any idea what's going on? |
Seems like we need to commit the initial I've merged this manually, thank you! |
Adds support to python.nix to use
uv sync
when enabled anduv
>= 0.4.4uv
0.4.4 is the first version to respectUV_PROJECT_ENVIRONMENT
whichallows
uv
to play nicely with the venv created by devenv (not.venv
)