75 lines
2 KiB
Nix
75 lines
2 KiB
Nix
{ lib, buildNpmPackage, fetchFromGitHub, runCommand, jq }:
|
|
|
|
let
|
|
version = "1.1.360";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Microsoft";
|
|
repo = "pyright";
|
|
rev = "${version}";
|
|
hash = "sha256-aVzQM9yfiIC5y7mgpym7ha2a4UKpOwYs+dUmIG0tlcQ=";
|
|
};
|
|
|
|
patchedPackageJSON = runCommand "package.json" { } ''
|
|
${jq}/bin/jq '
|
|
.devDependencies |= with_entries(select(.key == "glob" or .key == "jsonc-parser"))
|
|
| .scripts = { }
|
|
' ${src}/package.json > $out
|
|
'';
|
|
|
|
pyright-root = buildNpmPackage {
|
|
pname = "pyright-root";
|
|
inherit version src;
|
|
npmDepsHash = "sha256-63kUhKrxtJhwGCRBnxBfOFXs2ARCNn+OOGu6+fSJey4=";
|
|
dontNpmBuild = true;
|
|
postPatch = ''
|
|
cp ${patchedPackageJSON} ./package.json
|
|
cp ${./package-lock.json} ./package-lock.json
|
|
'';
|
|
installPhase = ''
|
|
runHook preInstall
|
|
cp -r . "$out"
|
|
runHook postInstall
|
|
'';
|
|
};
|
|
|
|
pyright-internal = buildNpmPackage {
|
|
pname = "pyright-internal";
|
|
inherit version src;
|
|
sourceRoot = "${src.name}/packages/pyright-internal";
|
|
npmDepsHash = "sha256-lUAPeIw9sj3JyX8G8lMsJk3wf3AOlPRModN4u1iTpcQ=";
|
|
dontNpmBuild = true;
|
|
installPhase = ''
|
|
runHook preInstall
|
|
cp -r . "$out"
|
|
runHook postInstall
|
|
'';
|
|
};
|
|
in
|
|
buildNpmPackage rec {
|
|
pname = "pyright";
|
|
inherit version src;
|
|
|
|
sourceRoot = "${src.name}/packages/pyright";
|
|
npmDepsHash = "sha256-CcjVFvEqi0f6ltY9O4c7pBFAuxuKgX9WMKZ9TCBYLyk=";
|
|
|
|
postPatch = ''
|
|
chmod +w ../../
|
|
ln -s ${pyright-root}/node_modules ../../node_modules
|
|
chmod +w ../pyright-internal
|
|
ln -s ${pyright-internal}/node_modules ../pyright-internal/node_modules
|
|
'';
|
|
|
|
dontNpmBuild = true;
|
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
meta = {
|
|
changelog = "https://github.com/Microsoft/pyright/releases/tag/${version}";
|
|
description = "Type checker for the Python language";
|
|
homepage = "https://github.com/Microsoft/pyright";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "pyright";
|
|
maintainers = with lib.maintainers; [ kalekseev ];
|
|
};
|
|
}
|