59 lines
1.2 KiB
Nix
59 lines
1.2 KiB
Nix
|
{
|
||
|
stdenv,
|
||
|
versionCheckHook,
|
||
|
lib,
|
||
|
installShellFiles,
|
||
|
autoPatchelfHook,
|
||
|
}:
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "uv-bin";
|
||
|
version = "0.5.5";
|
||
|
|
||
|
src = fetchTarball {
|
||
|
url = "https://github.com/astral-sh/uv/releases/download/${version}/uv-x86_64-unknown-linux-gnu.tar.gz";
|
||
|
sha256 = "1rgqmgj9syjansfmkvg1819i70f41za647izgh5hrvjsmcnm6nk7";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
installShellFiles
|
||
|
autoPatchelfHook
|
||
|
stdenv.cc.cc.lib
|
||
|
];
|
||
|
|
||
|
installPhase = ''
|
||
|
runHook preInstall
|
||
|
|
||
|
mkdir -p $out/bin
|
||
|
|
||
|
cp * $out/bin
|
||
|
|
||
|
runHook postInstall
|
||
|
'';
|
||
|
|
||
|
dontAutoPatchelf = true;
|
||
|
|
||
|
postFixup = ''
|
||
|
autoPatchelf -- "$out"
|
||
|
|
||
|
export HOME=$TMPDIR
|
||
|
installShellCompletion --cmd uv \
|
||
|
--bash <($out/bin/uv --generate-shell-completion bash) \
|
||
|
--fish <($out/bin/uv --generate-shell-completion fish) \
|
||
|
--zsh <($out/bin/uv --generate-shell-completion zsh)
|
||
|
'';
|
||
|
|
||
|
nativeCheckInputs = [
|
||
|
versionCheckHook
|
||
|
];
|
||
|
versionCheckProgramArg = [ "--version" ];
|
||
|
|
||
|
meta = {
|
||
|
description = "Extremely fast Python package installer and resolver, written in Rust";
|
||
|
homepage = "https://github.com/astral-sh/uv";
|
||
|
license = with lib.licenses; [
|
||
|
asl20
|
||
|
mit
|
||
|
];
|
||
|
};
|
||
|
}
|