Skip to content

Commit 6bd7d61

Browse files
committed
[security] bump uv
Why === * uv fixed a security issue in 0.9.5 https://github.com/astral-sh/uv/releases/tag/0.9.5 What changed === * bump to 0.9.5 Test plan === * check that uv --version is 0.9.5
1 parent b023e33 commit 6bd7d61

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

pkgs/modules/python/uv/default.nix

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
1-
{ lib
2-
, stdenv
3-
, cmake
4-
, fetchFromGitHub
5-
, installShellFiles
6-
, pkg-config
7-
, rustPlatform
8-
, versionCheckHook
9-
, python3Packages
10-
, nix-update-script
11-
,
1+
{
2+
lib,
3+
stdenv,
4+
cmake,
5+
fetchFromGitHub,
6+
installShellFiles,
7+
pkg-config,
8+
rustPlatform,
9+
versionCheckHook,
10+
python3Packages,
11+
nix-update-script,
1212
}:
1313

1414
rustPlatform.buildRustPackage rec {
1515
pname = "uv";
16-
version = "0.5.11"; # Technically 8 versions ahead of 0.5.11
16+
version = "0.9.5";
1717

1818
src = fetchFromGitHub {
1919
owner = "astral-sh";
2020
repo = "uv";
21-
rev = "ddc290feb4ed2de4740c786af2436cf1f82a3190";
22-
hash = "sha256-/hm70Vptk0eg9MMzgbpkOg/x6mNJBTZ/25kfqiYc/7Y=";
21+
tag = version;
22+
hash = "sha256-Js62zaO44/gXCCwji4LmlyO62zI96CFhnfnYqgI2p+U=";
2323
};
2424

2525
useFetchCargoVendor = true;
26-
cargoHash = "sha256-k+ABi0xgtpuDwCEgUIqrG7m56iSeYMsDTvtC0YHoCwE=";
26+
cargoHash = "sha256-TadS0YrZV5psCcGiu21w55nQhlzU+gXZPmFCAONLbXE=";
2727

2828
nativeBuildInputs = [
2929
cmake

0 commit comments

Comments
 (0)