Unverified Commit 7755f36c authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.functions-framework: 3.8.3 -> 3.9.2 (#432068)

parents 9ba6e654 b98ad280
Loading
Loading
Loading
Loading
+12 −4
Original line number Diff line number Diff line
@@ -8,25 +8,29 @@
  fetchFromGitHub,
  flask,
  gunicorn,
  httpx,
  pretend,
  pytest-asyncio,
  pytestCheckHook,
  requests,
  setuptools,
  starlette,
  uvicorn,
  uvicorn-worker,
  watchdog,
  werkzeug,
}:

buildPythonPackage rec {
  pname = "functions-framework";
  version = "3.8.3";
  version = "3.9.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "GoogleCloudPlatform";
    repo = "functions-framework-python";
    rev = "v${version}";
    hash = "sha256-kfoSGe08vCOXunzFH5FA7/NesOwAklfChKeoIfBXBlQ=";
    hash = "sha256-TvC+URJtsquBX/5F5Z2Nw/4sD3hsvF2c/jlv87lGjfM=";
  };

  build-system = [ setuptools ];
@@ -37,25 +41,29 @@ buildPythonPackage rec {
    deprecation
    flask
    gunicorn
    starlette
    uvicorn
    uvicorn-worker
    watchdog
    werkzeug
  ];

  nativeCheckInputs = [
    docker
    httpx
    pretend
    pytest-asyncio
    pytestCheckHook
    requests
  ];

  pythonImportsCheck = [ "functions_framework" ];

  disabledTests = [
    # Test requires a running Docker instance
    "test_cloud_run_http"
  ];

  pythonImportsCheck = [ "functions_framework" ];

  meta = {
    description = "FaaS (Function as a service) framework for writing portable Python functions";
    homepage = "https://github.com/GoogleCloudPlatform/functions-framework-python";
+52 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  gunicorn,
  hatchling,
  httpx,
  pytestCheckHook,
  trustme,
  uvicorn,
}:

buildPythonPackage rec {
  pname = "uvicorn-worker";
  version = "0.3.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Kludex";
    repo = "uvicorn-worker";
    tag = version;
    hash = "sha256-a5L4H1Bym5Dx9/pGL/Vz6ZO699t/1Wmc1ExIb0t/ISc=";
  };

  build-system = [ hatchling ];

  dependencies = [
    gunicorn
    uvicorn
  ];

  nativeCheckInputs = [
    gunicorn
    httpx
    pytestCheckHook
    trustme
  ];

  preCheck = ''
    export PATH="$PATH:$out/bin";
  '';

  pythonImportsCheck = [ "uvicorn_worker" ];

  meta = {
    description = "Uvicorn worker for Gunicorn";
    homepage = "https://github.com/Kludex/uvicorn-worker";
    changelog = "https://github.com/Kludex/uvicorn-worker/releases/tag/${src.tag}";
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ fab ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -19266,6 +19266,8 @@ self: super: with self; {
  uvicorn = callPackage ../development/python-modules/uvicorn { };
  uvicorn-worker = callPackage ../development/python-modules/uvicorn-worker { };
  uvloop = callPackage ../development/python-modules/uvloop { };
  uwsgi-chunked = callPackage ../development/python-modules/uwsgi-chunked { };