30 lines
691 B
Nix
30 lines
691 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
# Python Inputs
|
|
, ipyvue
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ipyvuetify";
|
|
version = "1.8.1";
|
|
|
|
# GitHub version tries to run npm (Node JS)
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "2d17367ce7da45a2622107d55c8b4c5475aace99ed5d95e5d7d3f93aa4c0c566";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|