mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
34 lines
688 B
Nix
34 lines
688 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
# Python Inputs
|
|
setuptools,
|
|
ipywidgets,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ipyvue";
|
|
version = "1.11.2";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-OxOBvRIBhPlwpdZt6sM7hZKmZsjhq3pa/TPs/zQuCpU=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ 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/ipyvue";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ drewrisinger ];
|
|
};
|
|
}
|