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