python311Packages.anywidget: 0.9.10 -> 0.9.11

Changelog: https://github.com/manzt/anywidget/releases/tag/anywidget%400.9.11
This commit is contained in:
natsukium 2024-05-18 08:55:32 +09:00
parent 8a33016960
commit 7617a60db2
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53

View File

@ -14,14 +14,14 @@
buildPythonPackage rec {
pname = "anywidget";
version = "0.9.10";
version = "0.9.11";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-OQpigkCYHAmBPHUjJ53cq4L/T9Moet1UM7eLE2kIkGg=";
hash = "sha256-WN3tjobsJ84odgyUVzF2YxE9mvYIlH7mqNDstSiyLNw=";
};
# We do not need the jupyterlab build dependency, because we do not need to
@ -48,6 +48,11 @@ buildPythonPackage rec {
watchfiles
];
disabledTests = [
# requires package.json
"test_version"
];
pythonImportsCheck = [ "anywidget" ];
meta = with lib; {