summary refs log tree commit diff
path: root/pkgs/development/python-modules/jupyter-client
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2021-12-31 08:10:25 +0000
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-01-01 02:10:53 +0100
commit2cae050057e56b5e33ddfc28449013061eb3b604 (patch)
treed9335d65559283f17ccecc69a55408c52dc69779 /pkgs/development/python-modules/jupyter-client
parent4beaf5301df522276e169ab74614134ec9f5ecd3 (diff)
downloadnixpkgs-2cae050057e56b5e33ddfc28449013061eb3b604.tar
nixpkgs-2cae050057e56b5e33ddfc28449013061eb3b604.tar.gz
nixpkgs-2cae050057e56b5e33ddfc28449013061eb3b604.tar.bz2
nixpkgs-2cae050057e56b5e33ddfc28449013061eb3b604.tar.lz
nixpkgs-2cae050057e56b5e33ddfc28449013061eb3b604.tar.xz
nixpkgs-2cae050057e56b5e33ddfc28449013061eb3b604.tar.zst
nixpkgs-2cae050057e56b5e33ddfc28449013061eb3b604.zip
python2Packages: remove superfluous overrides
Since Python 2 is not supported anymore we only keep those overrides
which are used by leaf packages.
Diffstat (limited to 'pkgs/development/python-modules/jupyter-client')
-rw-r--r--pkgs/development/python-modules/jupyter-client/5.nix40
1 files changed, 0 insertions, 40 deletions
diff --git a/pkgs/development/python-modules/jupyter-client/5.nix b/pkgs/development/python-modules/jupyter-client/5.nix
deleted file mode 100644
index 0894744bf0b..00000000000
--- a/pkgs/development/python-modules/jupyter-client/5.nix
+++ /dev/null
@@ -1,40 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, traitlets
-, jupyter_core
-, pyzmq
-, python-dateutil
-, isPyPy
-, py
-, tornado
-}:
-
-buildPythonPackage rec {
-  pname = "jupyter-client";
-  version = "5.3.5";
-
-  src = fetchPypi {
-    pname = "jupyter_client";
-    inherit version;
-    sha256 = "5efdf4131124d4a0d5789101e74827022585f172d2f4b60cf6fa98e0a7511b25";
-  };
-
-  propagatedBuildInputs = [
-    traitlets
-    jupyter_core
-    pyzmq
-    python-dateutil
-    tornado
-  ] ++ lib.optional isPyPy py;
-
-  # Circular dependency with ipykernel
-  doCheck = false;
-
-  meta = {
-    description = "Jupyter protocol implementation and client libraries";
-    homepage = "https://jupyter.org/";
-    license = lib.licenses.bsd3;
-    maintainers = with lib.maintainers; [  ];
-  };
-}