mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
30 lines
679 B
Nix
30 lines
679 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
# Python Inputs
|
|
, ipyvue
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ipyvuetify";
|
|
version = "1.2.2";
|
|
|
|
# GitHub version tries to run npm (Node JS)
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0vg3sdkdhba917xs6gyzwpp10gi2gszihf45cw2llwsfgb7kpfw8";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|