From 52764879d1ed2b3b645b06b8a35f01c83ce124ed Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Sat, 13 Jul 2024 22:34:18 +0200 Subject: [PATCH] python312Packages.shiny: init at 0.10.2 --- .../python-modules/shiny/default.nix | 77 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 79 insertions(+) create mode 100644 pkgs/development/python-modules/shiny/default.nix diff --git a/pkgs/development/python-modules/shiny/default.nix b/pkgs/development/python-modules/shiny/default.nix new file mode 100644 index 000000000000..d22649c725ef --- /dev/null +++ b/pkgs/development/python-modules/shiny/default.nix @@ -0,0 +1,77 @@ +{ + lib, + buildPythonPackage, + fetchFromGitHub, + setuptools, + + appdirs, + asgiref, + click, + htmltools, + linkify-it-py, + markdown-it-py, + mdit-py-plugins, + python-multipart, + questionary, + starlette, + uvicorn, + watchfiles, + websockets, + + pytestCheckHook, + pytest-asyncio, + pytest-playwright, + pytest-xdist, + pytest-timeout, + pytest-rerunfailures, + pandas, +}: + +buildPythonPackage rec { + pname = "shiny"; + version = "0.10.2"; + pyproject = true; + + src = fetchFromGitHub { + owner = "posit-dev"; + repo = "py-shiny"; + rev = "refs/tags/v${version}"; + hash = "sha256-s1j9bMAapO0iRXsuNxiwlNaVv2EoWcl9U7WnHwQe9n8="; + }; + + build-system = [ setuptools ]; + dependencies = [ + appdirs + asgiref + click + htmltools + linkify-it-py + markdown-it-py + mdit-py-plugins + python-multipart + questionary + starlette + uvicorn + watchfiles + websockets + ]; + + pythonImportsCheck = [ "shiny" ]; + nativeCheckInputs = [ + pytestCheckHook + pytest-asyncio + pytest-playwright + pytest-xdist + pytest-timeout + pytest-rerunfailures + pandas + ]; + + meta = { + changelog = "https://github.com/posit-dev/py-shiny/blob/${src.rev}/CHANGELOG.md"; + description = "Build fast, beautiful web applications in Python"; + license = lib.licenses.mit; + homepage = "https://shiny.posit.co/py"; + maintainers = with lib.maintainers; [ sigmanificient ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7c4cc55a5389..c4297e5595d5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14182,6 +14182,8 @@ self: super: with self; { shimmy = callPackage ../development/python-modules/shimmy { }; + shiny = callPackage ../development/python-modules/shiny { }; + shippai = callPackage ../development/python-modules/shippai { }; shiv = callPackage ../development/python-modules/shiv { };