blob: 02db3b5064aed5257a9954d8cd0f198fd7c1b758 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
{
lib,
pkgs,
fetchFromGitHub,
buildPythonPackage,
rustPlatform,
callPackage,
}:
buildPythonPackage rec {
pname = "uv-build";
version = "0.9.9";
pyproject = true;
src = fetchFromGitHub {
owner = "astral-sh";
repo = "uv";
tag = version;
hash = "sha256-i9vdpHA9EfXmw5fhK1tTZG0T2zOlDbjPCGBIizvQzZw=";
};
nativeBuildInputs = [
rustPlatform.cargoSetupHook
rustPlatform.maturinBuildHook
];
cargoDeps = rustPlatform.fetchCargoVendor {
inherit pname version src;
hash = "sha256-RZkIjHQElqrj+UAz+q6w1CYW3E5/YW9uy2E5KpKvw+w=";
};
buildAndTestSubdir = "crates/uv-build";
# $src/.github/workflows/build-binaries.yml#L139
maturinBuildProfile = "minimal-size";
pythonImportsCheck = [ "uv_build" ];
# The package has no tests
doCheck = false;
# Run the tests of a package built by `uv_build`.
passthru = {
tests.built-by-uv = callPackage ./built-by-uv.nix { inherit (pkgs) uv; };
# updateScript is not needed here, as updating is done on staging
};
meta = {
description = "Minimal build backend for uv";
homepage = "https://docs.astral.sh/uv/reference/settings/#build-backend";
inherit (pkgs.uv.meta) changelog license;
maintainers = with lib.maintainers; [ bengsparks ];
};
}
|