{ lib , buildPythonPackage , fetchPypi # Python Inputs , ipyvue }: buildPythonPackage rec { pname = "ipyvuetify"; version = "1.5.0"; # GitHub version tries to run npm (Node JS) src = fetchPypi { inherit pname version; sha256 = "5c311308d3ec9c92e48ab6ca021b5b51295e9e39de640f69827e30d5f03a244b"; }; 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 ]; }; }