pythonPackages.widgetsnbextension: 1.2.6 -> 2.0.0

This commit is contained in:
Frederik Rietdijk
2017-04-18 12:00:36 +02:00
parent b1952ff747
commit c339d6b122
2 changed files with 30 additions and 21 deletions

View File

@@ -0,0 +1,29 @@
{ lib
, buildPythonPackage
, fetchPypi
, notebook
, ipywidgets
}:
buildPythonPackage rec {
pname = "widgetsnbextension";
name = "${pname}-${version}";
version = "2.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "566582a84642d0c0f78b756a954450a38a8743eeb8dad04b7cab3ca66f455e6f";
};
propagatedBuildInputs = [ notebook ];
# No tests in archive
doCheck = false;
meta = {
description = "IPython HTML widgets for Jupyter";
homepage = http://ipython.org/;
license = ipywidgets.meta.license; # Build from same repo
maintainers = with lib.maintainers; [ fridh ];
};
}