Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2996a3f296de
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2719bdf08712
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Apr 7, 2020

  1. python37Packages.jupyterlab_server: 1.0.7 -> 1.1.0

    r-ryantm authored and Jon committed Apr 7, 2020
    Copy the full SHA
    9ccf19b View commit details
  2. python3Packages.jupyterlab: 2.0.0 -> 2.1.0

    Jonathan Ringer committed Apr 7, 2020
    Copy the full SHA
    2719bdf View commit details
Showing with 4 additions and 4 deletions.
  1. +2 −2 pkgs/development/python-modules/jupyterlab/default.nix
  2. +2 −2 pkgs/development/python-modules/jupyterlab_server/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/jupyterlab/default.nix
Original file line number Diff line number Diff line change
@@ -8,12 +8,12 @@

buildPythonPackage rec {
pname = "jupyterlab";
version = "2.0.1";
version = "2.1.0";
disabled = pythonOlder "3.5";

src = fetchPypi {
inherit pname version;
sha256 = "0ha1y6fn5kpb6dfwh9lccvng8zx92v5if68rd06xkrj9kqx866jx";
sha256 = "10fwpgsi996nk2hcva14k8x6znczxgfmydvfsfrs1fpmmfmrl8wc";
};

propagatedBuildInputs = [ jupyterlab_server notebook ];
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/jupyterlab_server/default.nix
Original file line number Diff line number Diff line change
@@ -11,12 +11,12 @@

buildPythonPackage rec {
pname = "jupyterlab_server";
version = "1.0.7";
version = "1.1.0";
disabled = pythonOlder "3.5";

src = fetchPypi {
inherit pname version;
sha256 = "1qnqxy6812py7xklg7xfrkadm0v4z8x6n1035i26h2z7y891ff0j";
sha256 = "0cqpyy4jr3023c47ij08djkpx526gmz8fab45mcnws0glhp7xhms";
};

checkInputs = [ requests pytest ];