Unverified Commit e14ed0f2 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #290265 from GaetanLepage/uv

uv: 0.1.5 -> 0.1.6
parents ce5c19e1 45f764ff
Loading
Loading
Loading
Loading
+45 −1
Original line number Diff line number Diff line
@@ -549,6 +549,47 @@ dependencies = [
 "strsim",
]

[[package]]
name = "clap_complete"
version = "4.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "885e4d7d5af40bfb99ae6f9433e292feac98d452dcb3ec3d25dfe7552b77da8c"
dependencies = [
 "clap",
]

[[package]]
name = "clap_complete_command"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "183495371ea78d4c9ff638bfc6497d46fed2396e4f9c50aebc1278a4a9919a3d"
dependencies = [
 "clap",
 "clap_complete",
 "clap_complete_fig",
 "clap_complete_nushell",
]

[[package]]
name = "clap_complete_fig"
version = "4.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54b3e65f91fabdd23cac3d57d39d5d938b4daabd070c335c006dccb866a61110"
dependencies = [
 "clap",
 "clap_complete",
]

[[package]]
name = "clap_complete_nushell"
version = "0.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d02bc8b1a18ee47c4d2eec3fb5ac034dc68ebea6125b1509e9ccdffcddce66e"
dependencies = [
 "clap",
 "clap_complete",
]

[[package]]
name = "clap_derive"
version = "4.5.0"
@@ -853,6 +894,7 @@ dependencies = [
 "data-encoding",
 "distribution-filename",
 "fs-err",
 "itertools 0.12.1",
 "once_cell",
 "pep440_rs 0.4.0",
 "pep508_rs",
@@ -4116,7 +4158,7 @@ checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a"

[[package]]
name = "uv"
version = "0.1.5"
version = "0.1.6"
dependencies = [
 "anstream",
 "anyhow",
@@ -4124,6 +4166,7 @@ dependencies = [
 "assert_fs",
 "chrono",
 "clap",
 "clap_complete_command",
 "console",
 "ctrlc",
 "distribution-filename",
@@ -4274,6 +4317,7 @@ dependencies = [
 "uv-cache",
 "uv-fs",
 "uv-normalize",
 "uv-warnings",
]

[[package]]
+2 −2
Original line number Diff line number Diff line
@@ -15,14 +15,14 @@

python3.pkgs.buildPythonApplication rec {
  pname = "uv";
  version = "0.1.5";
  version = "0.1.6";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "astral-sh";
    repo = "uv";
    rev = version;
    hash = "sha256-aiTec1uWcLcCA03qki5EE7Yy4Ne2+kXu9YtIVIAyd+o=";
    hash = "sha256-cwnZBKJcMgdSkOV0rojxF8kLQH59iOxjaE5yZkkY2/4=";
  };

  cargoDeps = rustPlatform.importCargoLock {