pythonPackages.ipyvuetify: init at 1.2.2
This commit is contained in:
parent
2e231d51ec
commit
0261e874d6
2 changed files with 31 additions and 0 deletions
29
pkgs/development/python-modules/ipyvuetify/default.nix
Normal file
29
pkgs/development/python-modules/ipyvuetify/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
# Python Inputs
|
||||
, ipyvue
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ipyvuetify";
|
||||
version = "1.2.2";
|
||||
|
||||
# GitHub version tries to run npm (Node JS)
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0vg3sdkdhba917xs6gyzwpp10gi2gszihf45cw2llwsfgb7kpfw8";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ ipyvue ];
|
||||
|
||||
doCheck = false; # no tests on PyPi/GitHub
|
||||
pythonImportsCheck = [ "ipyvuetify" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Jupyter widgets based on Vuetify UI Components.";
|
||||
homepage = "https://github.com/mariobuikhuizen/ipyvuetify";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ drewrisinger ];
|
||||
};
|
||||
}
|
|
@ -4048,6 +4048,8 @@ in {
|
|||
|
||||
ipyvue = callPackage ../development/python-modules/ipyvue { };
|
||||
|
||||
ipyvuetify = callPackage ../development/python-modules/ipyvuetify { };
|
||||
|
||||
ipywidgets = callPackage ../development/python-modules/ipywidgets { };
|
||||
|
||||
ipaddr = callPackage ../development/python-modules/ipaddr { };
|
||||
|
|
Loading…
Reference in a new issue