chore: smlink pip to uv pip

This commit is contained in:
m3tm3re
2026-04-27 19:07:26 +02:00
parent d524864fc3
commit 05dc6bf608
2 changed files with 10 additions and 11 deletions

18
flake.lock generated
View File

@@ -26,16 +26,15 @@
"nixpkgs": "nixpkgs_2"
},
"locked": {
"lastModified": 1777287027,
"lastModified": 1777305531,
"narHash": "sha256-8GM2Aydq9i8KbvyObqyMYhWkY+e7oh3+eyMfUVnt6Oo=",
"ref": "feature/agent-git-identity",
"rev": "3487050bbd9126251a2fce98363858e1ee55ea23",
"revCount": 80,
"ref": "refs/heads/master",
"rev": "3829556188ee7a5bcdb23afa5ca5d50d6b621085",
"revCount": 81,
"type": "git",
"url": "https://code.m3ta.dev/m3tam3re/AGENTS"
},
"original": {
"ref": "feature/agent-git-identity",
"type": "git",
"url": "https://code.m3ta.dev/m3tam3re/AGENTS"
}
@@ -453,16 +452,15 @@
"openspec": "openspec"
},
"locked": {
"lastModified": 1777288631,
"lastModified": 1777305386,
"narHash": "sha256-crbjn8KvewFwvBKovX1r4jdmGF96XePe7U9eT9LHVFY=",
"ref": "feature/agent-git-identity",
"rev": "fa339ae8ccdf1d3ae35b7571a9639f45952c725e",
"revCount": 251,
"ref": "refs/heads/master",
"rev": "95aeff28adbe251305b81584783b3e4f835670f1",
"revCount": 252,
"type": "git",
"url": "https://code.m3ta.dev/m3tam3re/nixpkgs"
},
"original": {
"ref": "feature/agent-git-identity",
"type": "git",
"url": "https://code.m3ta.dev/m3tam3re/nixpkgs"
}

View File

@@ -23,7 +23,8 @@ in {
(pkgs.python3.withPackages (ps:
with ps;
[
pip
(writeShellScriptBin "pip" "exec uv pip $@")
(writeShellScriptBin "pip3" "exec uv pip $@")
uv
]
++ cfg.extraPackages))