Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / ipyvuetify / default.nix
blobc63cee7912324522e79f8234673244004f7ed367
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4   # Python Inputs
5 , ipyvue
6 }:
8 buildPythonPackage rec {
9   pname = "ipyvuetify";
10   version = "1.5.1";
12   # GitHub version tries to run npm (Node JS)
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "593f5d6761e304cbb78bca967030485d8835e8d310ef7d83ac1b0e6a13e4911c";
16   };
18   propagatedBuildInputs = [ ipyvue ];
20   doCheck = false;  # no tests on PyPi/GitHub
21   pythonImportsCheck = [ "ipyvuetify" ];
23   meta = with lib; {
24     description = "Jupyter widgets based on Vuetify UI Components.";
25     homepage = "https://github.com/mariobuikhuizen/ipyvuetify";
26     license = licenses.mit;
27     maintainers = with maintainers; [ drewrisinger ];
28   };