rye 0.19.0 -> 0.21.0 https://repology.org/project/rye/versions attrpath: rye Checking auto update branch... No auto update branch exists Old version 0.19.0" not present in master derivation file with contents: { lib , rustPlatform , fetchFromGitHub , installShellFiles , pkg-config , openssl , stdenv , CoreServices , Libsystem , SystemConfiguration }: rustPlatform.buildRustPackage rec { pname = "rye"; version = "0.21.0"; src = fetchFromGitHub { owner = "mitsuhiko"; repo = "rye"; rev = "refs/tags/${version}"; hash = "sha256-H41gJNNrelPyCP1EYXIjwEc+1v2lnw9xmm0J+12lENA="; }; cargoLock = { lockFile = ./Cargo.lock; outputHashes = { "dialoguer-0.10.4" = "sha256-WDqUKOu7Y0HElpPxf2T8EpzAY3mY8sSn9lf0V0jyAFc="; "monotrail-utils-0.0.1" = "sha256-h2uxWsDrU9j2C5OWbYsfGz0S1VsPzYrfksQVEkwd2ys="; }; }; env = { OPENSSL_NO_VENDOR = 1; }; nativeBuildInputs = [ installShellFiles pkg-config ]; buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ CoreServices Libsystem SystemConfiguration ]; 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) ''; checkFlags = [ "--skip=utils::test_is_inside_git_work_tree" ]; meta = with lib; { description = "A tool to easily manage python dependencies and environments"; homepage = "https://github.com/mitsuhiko/rye"; changelog = "https://github.com/mitsuhiko/rye/releases/tag/${version}"; license = licenses.mit; maintainers = with maintainers; [ GaetanLepage ]; mainProgram = "rye"; }; }