2023-04-23 16:24:42 +00:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
2023-07-18 06:44:03 +00:00
|
|
|
, fetchFromGitHub
|
2023-10-09 11:36:38 +00:00
|
|
|
, installShellFiles
|
2023-04-23 16:24:42 +00:00
|
|
|
, pkg-config
|
2023-07-18 06:44:03 +00:00
|
|
|
, openssl
|
2023-04-23 16:24:42 +00:00
|
|
|
, stdenv
|
2023-12-16 23:32:52 +00:00
|
|
|
, CoreServices
|
2023-07-18 06:44:03 +00:00
|
|
|
, Libsystem
|
2023-04-23 16:24:42 +00:00
|
|
|
, SystemConfiguration
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "rye";
|
2024-02-09 22:44:07 +00:00
|
|
|
version = "0.22.0";
|
2023-04-23 16:24:42 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mitsuhiko";
|
2023-08-27 15:04:09 +00:00
|
|
|
repo = "rye";
|
2023-07-18 06:44:03 +00:00
|
|
|
rev = "refs/tags/${version}";
|
2024-02-09 22:44:07 +00:00
|
|
|
hash = "sha256-gM/Vn/eBPZ39568LqUXyx+ZTTsKAVur30Qrl3GS1ID8=";
|
2023-04-23 16:24:42 +00:00
|
|
|
};
|
|
|
|
|
2023-06-05 19:08:50 +00:00
|
|
|
cargoLock = {
|
|
|
|
lockFile = ./Cargo.lock;
|
|
|
|
outputHashes = {
|
|
|
|
"dialoguer-0.10.4" = "sha256-WDqUKOu7Y0HElpPxf2T8EpzAY3mY8sSn9lf0V0jyAFc=";
|
2024-02-01 12:29:29 +00:00
|
|
|
"monotrail-utils-0.0.1" = "sha256-h2uxWsDrU9j2C5OWbYsfGz0S1VsPzYrfksQVEkwd2ys=";
|
2023-06-05 19:08:50 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
env = {
|
|
|
|
OPENSSL_NO_VENDOR = 1;
|
|
|
|
};
|
2023-04-23 16:24:42 +00:00
|
|
|
|
2023-10-09 11:36:38 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles pkg-config ];
|
2023-04-23 16:24:42 +00:00
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
openssl
|
|
|
|
]
|
2023-07-18 06:44:03 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [
|
2023-12-16 23:32:52 +00:00
|
|
|
CoreServices
|
2023-07-18 06:44:03 +00:00
|
|
|
Libsystem
|
|
|
|
SystemConfiguration
|
|
|
|
];
|
|
|
|
|
2023-10-09 11:36:38 +00:00
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
|
|
installShellCompletion --cmd rye \
|
|
|
|
--bash <($out/bin/rye self completion -s bash) \
|
|
|
|
--fish <($out/bin/rye self completion -s fish) \
|
|
|
|
--zsh <($out/bin/rye self completion -s zsh)
|
|
|
|
'';
|
|
|
|
|
2023-07-18 06:44:03 +00:00
|
|
|
checkFlags = [
|
|
|
|
"--skip=utils::test_is_inside_git_work_tree"
|
|
|
|
];
|
2023-06-05 19:08:50 +00:00
|
|
|
|
2023-04-23 16:24:42 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A tool to easily manage python dependencies and environments";
|
|
|
|
homepage = "https://github.com/mitsuhiko/rye";
|
2023-12-16 23:32:52 +00:00
|
|
|
changelog = "https://github.com/mitsuhiko/rye/releases/tag/${version}";
|
2023-04-23 16:24:42 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ GaetanLepage ];
|
2023-12-16 23:32:52 +00:00
|
|
|
mainProgram = "rye";
|
2023-04-23 16:24:42 +00:00
|
|
|
};
|
|
|
|
}
|