32 lines
674 B
Nix
32 lines
674 B
Nix
{ lib
|
|
, isPy27
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
# Python Inputs
|
|
, ipywidgets
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ipyvue";
|
|
version = "1.4.1";
|
|
|
|
disabled = isPy27;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "5b59cf92a1eb7fbef4f2d02be49ac562a721a6cf34f991ac963222cf4c8885a1";
|
|
};
|
|
|
|
propagatedBuildInputs = [ ipywidgets ];
|
|
|
|
doCheck = false; # No tests in package or GitHub
|
|
pythonImportsCheck = [ "ipyvue" ];
|
|
|
|
meta = with lib; {
|
|
description = "Jupyter widgets base for Vue libraries.";
|
|
homepage = "https://github.com/mariobuikhuizen/ipyvuetify";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ drewrisinger ];
|
|
};
|
|
}
|