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.
2 parents 014a135 + 421d6da commit 2e6aa8fCopy full SHA for 2e6aa8f
1 file changed
pkgs/development/python-modules/jupyter-client/default.nix
@@ -11,6 +11,8 @@
11
, traitlets
12
, isPyPy
13
, py
14
+, pythonOlder
15
+, importlib-metadata
16
}:
17
18
buildPythonPackage rec {
@@ -35,6 +37,8 @@ buildPythonPackage rec {
35
37
pyzmq
36
38
tornado
39
traitlets
40
+ ] ++ lib.optionals (pythonOlder "3.10") [
41
+ importlib-metadata
42
] ++ lib.optional isPyPy py;
43
44
# Circular dependency with ipykernel
0 commit comments