We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3700dad commit 8678862Copy full SHA for 8678862
pkgs/development/python-modules/pygls/default.nix
@@ -1,13 +1,14 @@
1
{ lib
2
, stdenv
3
, buildPythonPackage
4
-, pythonOlder
5
, fetchFromGitHub
6
-, poetry-core
7
, lsprotocol
8
-, typeguard
+, poetry-core
9
, pytest-asyncio
10
, pytestCheckHook
+, pythonOlder
+, pythonRelaxDepsHook
11
+, typeguard
12
, websockets
13
}:
14
@@ -25,8 +26,14 @@ buildPythonPackage rec {
25
26
hash = "sha256-ARez9fs50kScfMp/W/aFIOcJonpFrcfyrzJuVwou7fk=";
27
};
28
29
+ pythonRelaxDeps = [
30
+ # https://github.com/openlawlibrary/pygls/pull/432
31
+ "lsprotocol"
32
+ ];
33
+
34
nativeBuildInputs = [
35
poetry-core
36
+ pythonRelaxDepsHook
37
];
38
39
propagatedBuildInputs = [
0 commit comments