2020-04-06 20:28:53 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
# Python Inputs
|
|
|
|
, ipyvue
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "ipyvuetify";
|
2020-08-16 18:31:04 +01:00
|
|
|
version = "1.5.0";
|
2020-04-06 20:28:53 +01:00
|
|
|
|
|
|
|
# GitHub version tries to run npm (Node JS)
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-16 18:31:04 +01:00
|
|
|
sha256 = "5c311308d3ec9c92e48ab6ca021b5b51295e9e39de640f69827e30d5f03a244b";
|
2020-04-06 20:28:53 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|