My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/ipyvuetify/default.nix

29 lines
678 B

{ lib
, buildPythonPackage
, fetchPypi
# Python Inputs
, ipyvue
}:
buildPythonPackage rec {
pname = "ipyvuetify";
version = "1.8.2";
# GitHub version tries to run npm (Node JS)
src = fetchPypi {
inherit pname version;
sha256 = "sha256-uFjS7lv8kDRultRqqu2++1eieLs67dLolVurTXWls8A=";
};
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 ];
};
}