cmake-language-server: build with pyparsing 3.0.6

This commit is contained in:
Benjamin Orthen 2022-02-21 12:47:25 +01:00 committed by Bjørn Forsman
parent 93f9b8cefe
commit e54a3f0819

View file

@ -26,6 +26,11 @@ buildPythonApplication rec {
./disable-test-timeouts.patch
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'pyparsing = "^2.4"' 'pyparsing = "^3.0.6"'
'';
nativeBuildInputs = [ poetry ];
propagatedBuildInputs = [ pygls pyparsing ];