Unverified Commit 933e0b09 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

Merge pull request #326910 from Sigmanificient/shiny

python312Packages.shiny: init at 0.10.2
parents ff1ba9e8 52764879
Loading
Loading
Loading
Loading
+77 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -14218,6 +14218,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 { };