depot/third_party/nixpkgs/pkgs/development/python-modules/ipyvuetify/default.nix
Default email 0eaa97ffad Project import generated by Copybara.
GitOrigin-RevId: c59ea8b8a0e7f927e7291c14ea6cd1bd3a16ff38
2020-08-20 19:08:02 +02:00

29 lines
691 B
Nix

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