forked from mirrors/nixpkgs
32 lines
662 B
Nix
32 lines
662 B
Nix
|
{ lib
|
||
|
, isPy27
|
||
|
, buildPythonPackage
|
||
|
, fetchPypi
|
||
|
# Python Inputs
|
||
|
, ipywidgets
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "ipyvue";
|
||
|
version = "1.3.1";
|
||
|
|
||
|
disabled = isPy27;
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "01kp7d8iyz04d0m4njhv8rg72daqmgd93bdljwyffzxg71pwq92a";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|