10 buildPythonPackage rec {
15 # GitHub version tries to run npm (Node JS)
17 inherit pname version;
18 hash = "sha256-h97mqq3zFu4n7Ymnmz08P14PLltjjaBoFzYEhTJUWsE=";
21 # drop pynpm which tries to install node_modules
23 substituteInPlace pyproject.toml \
24 --replace-fail '"jupyterlab~=4.0",' "" \
25 --replace-fail '"pynpm"' ""
28 build-system = [ setuptools ];
30 dependencies = [ ipyvue ];
32 doCheck = false; # no tests on PyPi/GitHub
33 pythonImportsCheck = [ "ipyvuetify" ];
36 description = "Jupyter widgets based on Vuetify UI Components";
37 homepage = "https://github.com/mariobuikhuizen/ipyvuetify";
38 license = licenses.mit;
39 maintainers = with maintainers; [ drewrisinger ];