depot/third_party/nixpkgs/pkgs/development/python-modules/ipyvue/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

32 lines
680 B
Nix

{ lib
, isPy27
, buildPythonPackage
, fetchPypi
# Python Inputs
, ipywidgets
}:
buildPythonPackage rec {
pname = "ipyvue";
version = "1.10.1";
format = "setuptools";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
hash = "sha256-IGFc6GulFs8Leq2EzGB+TiyRBCMulUzQ7MvzNTCl4dQ=";
};
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/ipyvue";
license = licenses.mit;
maintainers = with maintainers; [ drewrisinger ];
};
}