Commit f5f99fd0 authored by Benjamin Sparks's avatar Benjamin Sparks
Browse files

python3Packages.uv-build: 0.9.26 -> 0.10.0

parent 0cb3a504
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
{
  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 ];

+4 −4
Original line number Diff line number Diff line
@@ -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
  };