Commit 36787bce authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.nicegui: 2.15.0 -> 2.20.0

parent 4308cec8
Loading
Loading
Loading
Loading
+20 −26
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,

  # build-system
  poetry-core,
  setuptools,

  # dependencies
  aiofiles,
  aiohttp,
  buildPythonPackage,
  certifi,
  docutils,
  fastapi,
  fetchFromGitHub,
  httpx,
  ifaddr,
  itsdangerous,
  jinja2,
  libsass,
  markdown2,
  matplotlib,
  orjson,
  pandas,
  pkgs,
  plotly,
  poetry-core,
  polars,
  pyecharts,
  pygments,
  pytest-asyncio,
  pytest-selenium,
  pytestCheckHook,
  python-multipart,
  python-socketio,
  pywebview,
  redis,
  requests,
  setuptools,
  typing-extensions,
  urllib3,
  uvicorn,
  vbuild,
  watchfiles,

  # optional-dependencies
  matplotlib,
  pywebview,
  plotly,
  libsass,
  redis,

  # tests
  pandas,
  pkgs,
  polars,
  pyecharts,
  pytest-asyncio,
  pytest-selenium,
  pytestCheckHook,
  webdriver-manager,
  writableTmpDirAsHomeHook,
}:

buildPythonPackage rec {
  pname = "nicegui";
  version = "2.15.0";
  version = "2.20.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "zauberzeug";
    repo = "nicegui";
    tag = "v${version}";
    hash = "sha256-pwR+9QBCIMZXFK9n8GRESl9UFsh7zcgOxTngdgdyMuc=";
    hash = "sha256-XCOFRfG+EkgSKz5Z7Ds9F2Vwl1+7GH7ojxuE6ruvO3Y=";
  };

  pythonRelaxDeps = [ "requests" ];

  build-system = [
    poetry-core
    setuptools