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: 2f8795d32a95
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 919a924e0471
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 30, 2020

  1. python37Packages.nbdime: 1.1.0 -> 2.0.0

    r-ryantm authored and Jon committed Mar 30, 2020
    Copy the full SHA
    919a924 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/python-modules/nbdime/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/python-modules/nbdime/default.nix
Original file line number Diff line number Diff line change
@@ -24,12 +24,12 @@

buildPythonPackage rec {
pname = "nbdime";
version = "1.1.0";
version = "2.0.0";
disabled = !isPy3k;

src = fetchPypi {
inherit pname version;
sha256 = "0qfy7nmlg75vryvrlgd6p0rqrvcclq8n9kd0n4xv5959s9sjy0w0";
sha256 = "0pbi22mc5al29pvsw7bhai2d58i8n77gv09r7avr1wap6ni7jvw9";
};

checkInputs = [
@@ -61,7 +61,7 @@ buildPythonPackage rec {
];

meta = with lib; {
homepage = https://github.com/jupyter/nbdime;
homepage = "https://github.com/jupyter/nbdime";
description = "Tools for diffing and merging of Jupyter notebooks.";
license = licenses.bsd3;
maintainers = with maintainers; [ tbenst ];