Merge pull request #319803 from r-ryantm/auto-update/python311Packages.jupyter-ui-poll

python311Packages.jupyter-ui-poll: 0.2.2 -> 1.0.0
This commit is contained in:
OTABI Tomoya
2024-06-18 21:17:15 +09:00
committed by GitHub
@@ -9,29 +9,30 @@
buildPythonPackage rec {
pname = "jupyter-ui-poll";
version = "0.2.2";
format = "pyproject";
version = "1.0.0";
pyproject = true;
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "Kirill888";
repo = "jupyter-ui-poll";
rev = "refs/tags/v${version}";
hash = "sha256-DWZFvzx0aNTmf1x8Rq19OT0PFRxdpKefWYFh8C116Fw";
hash = "sha256-mlgLd6uFDSxRBj4+Eidea2CE7FuG6NzJLWGec4KPd9k=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ ipython ];
build-system = [ setuptools ];
dependencies = [ ipython ];
doCheck = false; # no tests in package :(
pythonImportsCheck = [ "jupyter_ui_poll" ];
meta = with lib; {
meta = {
description = "Block jupyter cell execution while interacting with widgets";
homepage = "https://github.com/Kirill888/jupyter-ui-poll";
changelog = "https://github.com/Kirill888/jupyter-ui-poll/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ bcdarwin ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ bcdarwin ];
};
}