pythonPackages.ipyvue: init at 1.3.1

This commit is contained in:
Drew Risinger 2020-04-06 15:28:35 -04:00 committed by Jon
parent 7c8d21790d
commit 2e231d51ec
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ lib
, isPy27
, buildPythonPackage
, fetchPypi
# Python Inputs
, ipywidgets
}:
buildPythonPackage rec {
pname = "ipyvue";
version = "1.3.1";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "01kp7d8iyz04d0m4njhv8rg72daqmgd93bdljwyffzxg71pwq92a";
};
propagatedBuildInputs = [ ipywidgets ];
doCheck = false; # No tests in package or GitHub
pythonImportsCheck = [ "ipyvue" ];
meta = with lib; {
description = "Jupyter widgets base for Vue libraries.";
homepage = "https://github.com/mariobuikhuizen/ipyvuetify";
license = licenses.mit;
maintainers = with maintainers; [ drewrisinger ];
};
}

View File

@ -4046,6 +4046,8 @@ in {
ipython_genutils = callPackage ../development/python-modules/ipython_genutils { };
ipyvue = callPackage ../development/python-modules/ipyvue { };
ipywidgets = callPackage ../development/python-modules/ipywidgets { };
ipaddr = callPackage ../development/python-modules/ipaddr { };