mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-14 03:10:07 +00:00
56 lines
1.4 KiB
Nix
56 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
rustPlatform,
|
|
vimUtils,
|
|
}:
|
|
let
|
|
version = "0.4.4";
|
|
src = fetchFromGitHub {
|
|
owner = "sheng-tse";
|
|
repo = "jupynvim";
|
|
tag = "v${version}";
|
|
hash = "sha256-DJinRfxOoSj8xnWUnpPd14mA8zMQmLhavmJsUz4h2XQ=";
|
|
};
|
|
jupynvim-core = rustPlatform.buildRustPackage {
|
|
pname = "jupynvim-core";
|
|
inherit version src;
|
|
|
|
sourceRoot = "${src.name}/core";
|
|
|
|
cargoHash = "sha256-cZKHYCFtzU1ULNp7TY/4/l6SrzGF3ghnBF5y5nvxuWw=";
|
|
|
|
meta.mainProgram = "jupynvim-core";
|
|
};
|
|
in
|
|
vimUtils.buildVimPlugin {
|
|
pname = "jupynvim";
|
|
inherit version src;
|
|
|
|
# Upstream resolves the backend from an in-tree build directory that only
|
|
# exists once its install hook has downloaded or built one.
|
|
postInstall = ''
|
|
rm -rf $out/core
|
|
substituteInPlace $out/lua/jupynvim/backend/connect.lua \
|
|
--replace-fail 'M._plugin_root() .. "/core/target/release/jupynvim-core"' \
|
|
'"${lib.getExe jupynvim-core}"'
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script {
|
|
attrPath = "vimPlugins.jupynvim.jupynvim-core";
|
|
};
|
|
|
|
# needed for the update script
|
|
inherit jupynvim-core;
|
|
};
|
|
|
|
meta = {
|
|
description = "Jupyter notebooks in Neovim with native cell rendering and kernel execution";
|
|
homepage = "https://github.com/sheng-tse/jupynvim";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ alikaansun ];
|
|
};
|
|
}
|