python312Packages.jupyter-ydoc: 3.0.3 -> 3.0.4 (#400048)

authored by Gaétan Lepage and committed by GitHub bbb94299 ad5abbcf

+7 -6
+7 -6
pkgs/development/python-modules/jupyter-ydoc/default.nix
··· 1 { 2 lib, 3 buildPythonPackage, 4 - fetchPypi, 5 6 # build-system 7 hatch-nodejs-version, ··· 18 19 buildPythonPackage rec { 20 pname = "jupyter-ydoc"; 21 - version = "3.0.3"; 22 pyproject = true; 23 24 - src = fetchPypi { 25 - pname = "jupyter_ydoc"; 26 - inherit version; 27 - hash = "sha256-ZvPTepoCqXEbUIpVdLCsSJqkDyFgMK8p/dgshiouteo="; 28 }; 29 30 build-system = [
··· 1 { 2 lib, 3 buildPythonPackage, 4 + fetchFromGitHub, 5 6 # build-system 7 hatch-nodejs-version, ··· 18 19 buildPythonPackage rec { 20 pname = "jupyter-ydoc"; 21 + version = "3.0.4"; 22 pyproject = true; 23 24 + src = fetchFromGitHub { 25 + owner = "jupyter-server"; 26 + repo = "jupyter_ydoc"; 27 + tag = "v${version}"; 28 + hash = "sha256-dD4ZLT5yKGdvWnsPd3nAKmi6Ca+MK5f/ufyNfbGMmoM="; 29 }; 30 31 build-system = [