nixpkgs/pkgs/development/python-modules/ipyvuetify/default.nix
2023-05-16 06:52:23 +00:00

30 lines
677 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
# Python Inputs
, ipyvue
}:
buildPythonPackage rec {
pname = "ipyvuetify";
version = "1.8.10";
# GitHub version tries to run npm (Node JS)
src = fetchPypi {
inherit pname version;
hash = "sha256-m6RCeUefM/XLg69AaqgTBQ7pYgGVXCy6CH/SOoQ9W04=";
};
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 ];
};
}