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