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 ];
};
}

View File

@ -27039,27 +27039,7 @@ EOF
};
};
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 ];
};
};
widgetsnbextension = callPackage ../development/python-modules/widgetsnbextension { };
willie = buildPythonPackage rec {
name = "willie-${version}";