pythonPackages ipywidgets: init at 4.0.2

This commit is contained in:
Frederik Rietdijk 2015-10-06 17:36:46 +02:00
parent 0915f16167
commit 01acee19e0

View file

@ -7378,6 +7378,25 @@ let
};
ipywidgets = buildPythonPackage rec {
version = "4.0.2";
name = "ipywidgets-${version}";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/i/ipywidgets/${name}.tar.gz";
sha256 = "1afwddaslf62ba75679s059z36zfamcx454q2lgd97xqsp30hqmf";
};
propagatedBuildInputs = with self; [ipython ipykernel traitlets notebook];
meta = {
description = "IPython HTML widgets for Jupyter";
homepage = http://ipython.org/;
license = licenses.bsd3;
maintainers = with maintainers; [ fridh ];
};
};
ipaddr = buildPythonPackage rec {
name = "ipaddr-2.1.10";
disabled = isPy3k;