1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 # Python Inputs
6 setuptools,
7 ipywidgets,
8}:
9
10buildPythonPackage rec {
11 pname = "ipyvue";
12 version = "1.11.3";
13 pyproject = true;
14
15 src = fetchPypi {
16 inherit pname version;
17 hash = "sha256-gLO2EItEjrF7fJ6ww5ta04Rxir3NJKgvhTrTBiuDtBs=";
18 };
19
20 build-system = [ setuptools ];
21
22 dependencies = [ ipywidgets ];
23
24 doCheck = false; # No tests in package or GitHub
25 pythonImportsCheck = [ "ipyvue" ];
26
27 meta = with lib; {
28 description = "Jupyter widgets base for Vue libraries";
29 homepage = "https://github.com/mariobuikhuizen/ipyvue";
30 license = licenses.mit;
31 maintainers = with maintainers; [ drewrisinger ];
32 };
33}