python3Packages.uv-build: 0.9.26 -> 0.10.0

Changelog: https://github.com/astral-sh/uv/releases/tag/0.10.0
This commit is contained in:
Benjamin Sparks
2026-02-06 02:29:07 +01:00
parent 0cb3a504cb
commit f5f99fd044
2 changed files with 5 additions and 6 deletions
@@ -1,6 +1,5 @@
{
buildPythonPackage,
uv,
uv-build,
anyio,
pytestCheckHook,
@@ -10,7 +9,7 @@ buildPythonPackage {
version = "0.1.0";
pyproject = true;
src = "${uv.src}/scripts/packages/built-by-uv";
src = "${uv-build.src}/test/packages/built-by-uv";
build-system = [ uv-build ];
@@ -9,14 +9,14 @@
buildPythonPackage rec {
pname = "uv-build";
version = "0.9.26";
version = "0.10.0";
pyproject = true;
src = fetchFromGitHub {
owner = "astral-sh";
repo = "uv";
tag = version;
hash = "sha256-qvfMB62/0Hvc7m5h+QitvUcS6YZWAV1uGPg8JpCKPNU=";
hash = "sha256-nD26zqKMK5LNkeYdqVYteeYL4mYaQQ/QlyjbMDDhLAY=";
};
nativeBuildInputs = [
@@ -26,7 +26,7 @@ buildPythonPackage rec {
cargoDeps = rustPlatform.fetchCargoVendor {
inherit pname version src;
hash = "sha256-3ncKhauappl1MR3EG1bwYVrwhM7gCFRcRyRvYrsDaok=";
hash = "sha256-lEynVemQHCI7ZKD2+1n4K/AtEYRld2+aRLkDMSX8ejM=";
};
buildAndTestSubdir = "crates/uv-build";
@@ -41,7 +41,7 @@ buildPythonPackage rec {
# Run the tests of a package built by `uv_build`.
passthru = {
tests.built-by-uv = callPackage ./built-by-uv.nix { inherit (pkgs) uv; };
tests.built-by-uv = callPackage ./built-by-uv.nix { };
# updateScript is not needed here, as updating is done on staging
};