lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #10256 from FRidh/ipywidgets

pythonPackages ipywidgets: init at 4.0.2

+19
+19
pkgs/top-level/python-packages.nix
··· 7378 7378 }; 7379 7379 7380 7380 7381 + ipywidgets = buildPythonPackage rec { 7382 + version = "4.0.2"; 7383 + name = "ipywidgets-${version}"; 7384 + 7385 + src = pkgs.fetchurl { 7386 + url = "https://pypi.python.org/packages/source/i/ipywidgets/${name}.tar.gz"; 7387 + sha256 = "1afwddaslf62ba75679s059z36zfamcx454q2lgd97xqsp30hqmf"; 7388 + }; 7389 + 7390 + propagatedBuildInputs = with self; [ipython ipykernel traitlets notebook]; 7391 + 7392 + meta = { 7393 + description = "IPython HTML widgets for Jupyter"; 7394 + homepage = http://ipython.org/; 7395 + license = licenses.bsd3; 7396 + maintainers = with maintainers; [ fridh ]; 7397 + }; 7398 + }; 7399 + 7381 7400 ipaddr = buildPythonPackage rec { 7382 7401 name = "ipaddr-2.1.10"; 7383 7402 disabled = isPy3k;