{ lib , isPy27 , buildPythonPackage , fetchPypi # Python Inputs , ipywidgets }: buildPythonPackage rec { pname = "ipyvue"; version = "1.6.0"; disabled = isPy27; src = fetchPypi { inherit pname version; sha256 = "61c21e698d99ec9dc22a155e8c00d50add99a2976b48cdfeab6bc010d2414f8b"; }; propagatedBuildInputs = [ ipywidgets ]; doCheck = false; # No tests in package or GitHub pythonImportsCheck = [ "ipyvue" ]; meta = with lib; { description = "Jupyter widgets base for Vue libraries."; homepage = "https://github.com/mariobuikhuizen/ipyvuetify"; license = licenses.mit; maintainers = with maintainers; [ drewrisinger ]; }; }