Loading
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@

buildPythonPackage (finalAttrs: {
  pname = "gradio-client";
  version = "2.2.0";
  version = "2.3.0";
  pyproject = true;

  # no tests on pypi
+11 −3
Original line number Diff line number Diff line
@@ -56,6 +56,7 @@

  # tests
  pytestCheckHook,
  build,
  hypothesis,
  altair,
  boto3,
@@ -81,14 +82,14 @@ let
in
buildPythonPackage (finalAttrs: {
  pname = "gradio";
  version = "6.8.0";
  version = "6.9.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "gradio-app";
    repo = "gradio";
    tag = "gradio@${finalAttrs.version}";
    hash = "sha256-ZHglnRs0AXCu9HlVoSO0h5p6SE4al/OLPn0jwZgKVR8=";
    hash = "sha256-iGaUiJto/tquCSa6D/wbkNyVtK/2kZB/hz62STfwLOY=";
  };

  patches = [
@@ -103,7 +104,7 @@ buildPythonPackage (finalAttrs: {
      ;
    inherit pnpm;
    fetcherVersion = 3;
    hash = "sha256-6Cx0hdVd0srhArvck2Kn9U2fT7aKtTZjgV5b/Usrnoo=";
    hash = "sha256-pZCYtWFNlrcRFomx6HbO0zySOyifO3n/ffzx59pS/A8=";
  };

  nativeBuildInputs = [
@@ -167,6 +168,7 @@ buildPythonPackage (finalAttrs: {
    boto3
    brotli
    diffusers
    build
    docker
    ffmpeg
    gradio-pdf
@@ -214,6 +216,9 @@ buildPythonPackage (finalAttrs: {
    "test_error_analytics_successful"
    "TestSnippetExecution"

    # requires network, via subprocess.run
    "test_endpoint_status"

    # Flaky, tries to pin dependency behaviour. Sensitive to dep versions
    # These error only affect downstream use of the check dependencies.
    "test_no_color"
@@ -254,6 +259,8 @@ buildPythonPackage (finalAttrs: {

    # tests if pip and other tools are installed
    "test_get_executable_path"
    "test_api_response"
    "test_load_assets"

    # Flaky test (AssertionError when comparing to a fixed array)
    # https://github.com/gradio-app/gradio/issues/11620
@@ -356,6 +363,7 @@ buildPythonPackage (finalAttrs: {
    # 100% touches network
    "test/test_networking.py"
    "client/python/test/test_client.py"

    # makes pytest freeze 50% of the time
    "test/test_interfaces.py"