31 lines
661 B
Nix
31 lines
661 B
Nix
{ lib
|
|
, isPy27
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
# Python Inputs
|
|
, ipywidgets
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ipyvue";
|
|
version = "1.9.0";
|
|
|
|
disabled = isPy27;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-hBqNvg6dKx6P5Yo17nUA9ztmvQjz+ChNFWnD2OOPp3U=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|