about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2023-03-29 16:13:38 -0700
committerRobert Schütz <nix@dotlambda.de>2023-08-02 09:49:14 -0700
commitaea90b672a1a4c523dfc05ad0eab1ef77490c280 (patch)
tree77ecbf7461ef5dd0ac71beb38767ae8f0d0f54ce /pkgs
parent9f41422071be4351b44a0232353d0a685c44ad9c (diff)
downloadnixlib-aea90b672a1a4c523dfc05ad0eab1ef77490c280.tar
nixlib-aea90b672a1a4c523dfc05ad0eab1ef77490c280.tar.gz
nixlib-aea90b672a1a4c523dfc05ad0eab1ef77490c280.tar.bz2
nixlib-aea90b672a1a4c523dfc05ad0eab1ef77490c280.tar.lz
nixlib-aea90b672a1a4c523dfc05ad0eab1ef77490c280.tar.xz
nixlib-aea90b672a1a4c523dfc05ad0eab1ef77490c280.tar.zst
nixlib-aea90b672a1a4c523dfc05ad0eab1ef77490c280.zip
python310Packages.jupyter-ydoc: 0.3.4 -> 1.0.2
Changelog: https://github.com/jupyter-server/jupyter_ydoc/blob/v1.0.2/CHANGELOG.md
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/jupyter-ydoc/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/jupyter-ydoc/default.nix b/pkgs/development/python-modules/jupyter-ydoc/default.nix
index d2643155bff8..e3294150bf62 100644
--- a/pkgs/development/python-modules/jupyter-ydoc/default.nix
+++ b/pkgs/development/python-modules/jupyter-ydoc/default.nix
@@ -11,14 +11,14 @@
 
 buildPythonPackage rec {
   pname = "jupyter-ydoc";
-  version = "0.3.4";
+  version = "1.0.2";
 
   format = "pyproject";
 
   src = fetchPypi {
     pname = "jupyter_ydoc";
     inherit version;
-    hash = "sha256-WiJi5wvwBLgsxs5xZ16TMKoFj+MNsuh82BJa1N0a5OE=";
+    hash = "sha256-D5W+3j8eCB4H1cV8A8ZY46Ukfg7xiIkHT776IN0+ylM=";
   };
 
   nativeBuildInputs = [
@@ -46,6 +46,6 @@ buildPythonPackage rec {
     description = "Document structures for collaborative editing using Ypy";
     homepage = "https://github.com/jupyter-server/jupyter_ydoc";
     license = lib.licenses.bsd3;
-    maintainers = with lib.maintainers; [ dotlambda ];
+    maintainers = lib.teams.jupyter.members;
   };
 }