Merge pull request #262205 from kalekseev/lprotocol-bump

python311Packages.lsprotocol: 2023.0.0a2 -> 2023.0.0b1
This commit is contained in:
Fabian Affolter 2023-10-20 18:37:57 +02:00 committed by GitHub
commit 46da009c99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,6 +4,7 @@
, cattrs
, fetchFromGitHub
, flit-core
, importlib-resources
, jsonschema
, nox
, pyhamcrest
@ -13,7 +14,7 @@
buildPythonPackage rec {
pname = "lsprotocol";
version = "2023.0.0a2";
version = "2023.0.0b1";
format = "pyproject";
disabled = pythonOlder "3.7";
@ -22,7 +23,7 @@ buildPythonPackage rec {
owner = "microsoft";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-AEvs2fb8nhWEFMyLvwNv9HoxxxE50/KW3TGZ5pDf4dc=";
hash = "sha256-Y/Mp/8MskRB6irNU3CBOKmo2Zt5S69h+GyMg71sQ9Uw=";
};
nativeBuildInputs = [
@ -40,6 +41,7 @@ buildPythonPackage rec {
];
checkInputs = [
importlib-resources
jsonschema
pyhamcrest
];