Unverified Commit 8e1a588e authored by natsukium's avatar natsukium
Browse files

python311Packages.jupyterlab-widgets: 3.0.9 -> 3.0.10

parent d812161e
Loading
Loading
Loading
Loading
+9 −3
Original line number Diff line number Diff line
@@ -4,15 +4,21 @@

buildPythonPackage rec {
  pname = "jupyterlab-widgets";
  version = "3.0.9";
  format = "setuptools";
  version = "3.0.10";
  pyproject = true;

  src = fetchPypi {
    pname = "jupyterlab_widgets";
    inherit version;
    hash = "sha256-YAWk6XTHvu6EBg/fujQaMhhJUEbeiuPsZIiOX+Gf20w=";
    hash = "sha256-BPKsBJdnJ+T50PqRzcLxq4YPll5QTCnb1qZciCydBMA=";
  };

  # jupyterlab is required to build from source but we use the pre-build package
  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace '"jupyterlab~=4.0"' ""
  '';

  nativeBuildInputs = [
    jupyter-packaging
  ];