nixpkgs/pkgs/development/python-modules/ipyvue/default.nix
2024-11-14 17:05:22 +00:00

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 ];
};
}