3
0
Fork 0
forked from mirrors/nixpkgs

python310Packages.jedi-language-server: 0.37.0 -> 0.39.0

https://github.com/pappasam/jedi-language-server/blob/v0.39.0/CHANGELOG.md
This commit is contained in:
Robert Schütz 2022-11-28 19:27:34 -08:00 committed by Robert Schütz
parent 48db7277dd
commit 1b16f38425

View file

@ -2,7 +2,8 @@
, buildPythonPackage
, fetchPypi
, fetchFromGitHub
, poetry
, poetry-core
, pythonRelaxDepsHook
, docstring-to-markdown
, jedi
, pygls
@ -13,18 +14,23 @@
buildPythonPackage rec {
pname = "jedi-language-server";
version = "0.37.0";
version = "0.39.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "pappasam";
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "sha256-5il12WDmUkdud9zTpzTaoSXEqOaK15Ut3/fUAX422fA=";
sha256 = "sha256-nra2Xvfo1cfMoZkY7sem7NIEDwDmODWbGVNCeefSuQY=";
};
pythonRelaxDeps = [
"pygls"
];
nativeBuildInputs = [
poetry
poetry-core
pythonRelaxDepsHook
];
propagatedBuildInputs = [
@ -49,6 +55,7 @@ buildPythonPackage rec {
meta = with lib; {
homepage = "https://github.com/pappasam/jedi-language-server";
changelog = "https://github.com/pappasam/jedi-language-server/blob/${src.rev}/CHANGELOG.md";
description = "A Language Server for the latest version(s) of Jedi";
license = licenses.mit;
maintainers = with maintainers; [ doronbehar ];