pythonPackages.widgetsnbextension: init at 1.2.6

This commit is contained in:
Frederik Rietdijk 2016-10-05 12:35:32 +02:00
parent e1bd33004c
commit 5fc1a22a23

View File

@ -25762,6 +25762,28 @@ in modules // {
};
};
widgetsnbextension = buildPythonPackage rec {
name = "widgetsnbextension-${version}";
version = "1.2.6";
src = pkgs.fetchurl {
url = "mirror://pypi/w/widgetsnbextension/${name}.tar.gz";
sha256 = "c618cfb32978c9517caf0b4ef3aec312f8dd138577745e7b0d4abfcc7315ce51";
};
propagatedBuildInputs = with self; [ notebook ];
# No tests in archive
doCheck = false;
meta = {
description = "IPython HTML widgets for Jupyter";
homepage = http://ipython.org/;
license = self.ipywidgets.meta.license; # Build from same repo
maintainers = with maintainers; [ fridh ];
};
};
willie = buildPythonPackage rec {
name = "willie-${version}";
version = "5.5.1";