tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
coc-basedpyright: init at 0-unstable-2025-04-30
wrvsrx
9 months ago
e31e0aee
46e634be
+33
2 changed files
expand all
collapse all
unified
split
pkgs
applications
editors
vim
plugins
cocPlugins.nix
by-name
co
coc-basedpyright
package.nix
+6
pkgs/applications/editors/vim/plugins/cocPlugins.nix
···
1
1
{
2
2
buildVimPlugin,
3
3
+
coc-basedpyright,
3
4
coc-clangd,
4
5
coc-css,
5
6
coc-diagnostic,
···
7
8
coc-toml,
8
9
}:
9
10
final: prev: {
11
11
+
coc-basedpyright = buildVimPlugin {
12
12
+
inherit (coc-basedpyright) pname version meta;
13
13
+
src = "${coc-basedpyright}/lib/node_modules/coc-basedpyright";
14
14
+
};
15
15
+
10
16
coc-clangd = buildVimPlugin {
11
17
inherit (coc-clangd) pname version meta;
12
18
src = "${coc-clangd}/lib/node_modules/coc-clangd";
+27
pkgs/by-name/co/coc-basedpyright/package.nix
···
1
1
+
{
2
2
+
lib,
3
3
+
buildNpmPackage,
4
4
+
fetchFromGitHub,
5
5
+
}:
6
6
+
7
7
+
buildNpmPackage {
8
8
+
pname = "coc-basedpyright";
9
9
+
# No tagged releases, this version is inferred from <https://www.npmjs.com/package/coc-basedpyright>
10
10
+
version = "1.19.0-unstable-2025-04-30";
11
11
+
12
12
+
src = fetchFromGitHub {
13
13
+
owner = "fannheyward";
14
14
+
repo = "coc-basedpyright";
15
15
+
rev = "7d944083c7d4843b1dfa9e05014873b0b5bbb85b";
16
16
+
hash = "sha256-5Vuw54bSk3WMy8bMsIvtkfDmlx3oocxmD1ykfpErbkc=";
17
17
+
};
18
18
+
19
19
+
npmDepsHash = "sha256-hn+Y1f7o/Oz37XXJUPF2CJbrPzZYOY0njrJv+T3ve6w=";
20
20
+
21
21
+
meta = {
22
22
+
description = "Basedpyright extension for coc.nvim";
23
23
+
homepage = "https://github.com/fannheyward/coc-basedpyright";
24
24
+
license = lib.licenses.mit;
25
25
+
maintainers = with lib.maintainers; [ wrvsrx ];
26
26
+
};
27
27
+
}