Compare commits

...

2 Commits

Author SHA1 Message Date
m3tm3re
f76c4dd5d4 chore: smlink pip to uv pip 2026-04-27 19:36:52 +02:00
m3tm3re
05dc6bf608 chore: smlink pip to uv pip 2026-04-27 19:07:26 +02:00
2 changed files with 11 additions and 11 deletions

18
flake.lock generated
View File

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

View File

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