Files
nixpkgs/pkgs/development/python-modules/anywidget/default.nix
2025-08-09 19:05:19 +02:00

84 lines
1.8 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
writableTmpDirAsHomeHook,
pythonOlder,
hatch-jupyter-builder,
hatchling,
importlib-metadata,
ipykernel,
ipywidgets,
psygnal,
pydantic,
typing-extensions,
watchfiles,
}:
buildPythonPackage rec {
pname = "anywidget";
version = "0.9.18";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-Jiz0WbUXp9BE1vvIS5U+nIPwJnkLLdPOkPIaf47e0A8=";
};
# We do not need the jupyterlab build dependency, because we do not need to
# build any JS components; these are present already in the PyPI artifact.
#
postPatch = ''
substituteInPlace pyproject.toml \
--replace '"jupyterlab==3.*"' ""
'';
build-system = [
hatch-jupyter-builder
hatchling
];
dependencies = [
ipywidgets
psygnal
typing-extensions
]
++ lib.optional (pythonOlder "3.8") importlib-metadata;
nativeCheckInputs = [
pytestCheckHook
ipykernel
pydantic
watchfiles
writableTmpDirAsHomeHook
];
disabledTests = [
# requires package.json
"test_version"
# AssertionError: assert not {140737277121872: <MockComm id='140737277118512'>}
"test_descriptor_with_psygnal"
"test_descriptor_with_pydantic"
"test_descriptor_with_msgspec"
"test_descriptor_with_traitlets"
"test_infer_file_contents"
# assert not {<function _connect_psygnal.<locals>._disconnect at 0x7ffff3617e...
"test_descriptor_with_psygnal"
];
pythonImportsCheck = [ "anywidget" ];
meta = with lib; {
description = "Custom jupyter widgets made easy";
homepage = "https://github.com/manzt/anywidget";
changelog = "https://github.com/manzt/anywidget/releases/tag/anywidget%40${version}";
license = licenses.mit;
maintainers = with maintainers; [ natsukium ];
};
}