Unverified Commit db4017b5 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

[python-updates] major updates 2025-03-03 (#386892)

parents a6ffc120 81aae12c
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -15,6 +15,12 @@ let
      celery = prev.celery.overridePythonAttrs {
        doCheck = false;
      };

      kombu = prev.kombu.overridePythonAttrs {
        # avoid conflicts with test only dependencies
        doCheck = false;
      };

      sqlalchemy = prev.sqlalchemy_1_4;
    };
  };
+6 −0
Original line number Diff line number Diff line
@@ -142,6 +142,12 @@ buildPythonPackage rec {
    "test_env_system_packages_are_relative_to_lib"
    "test_install_warning_corrupt_root"
    "test_project_plugins_are_installed_in_project_folder"
    "test_application_command_not_found_messages"
    # PermissionError: [Errno 13] Permission denied: '/build/pytest-of-nixbld/pytest-0/popen-gw3/test_find_poetry_managed_pytho1/.local/share/pypoetry/python/pypy@3.10.8/bin/python'
    "test_list_poetry_managed"
    "test_list_poetry_managed"
    "test_find_all_with_poetry_managed"
    "test_find_poetry_managed_pythons"
  ];

  pytestFlagsArray = [
+1 −0
Original line number Diff line number Diff line
@@ -103,6 +103,7 @@ python.pkgs.buildPythonApplication rec {
    "protobuf"
    "pycryptodome"
    "pyjwt"
    "pypdf"
    "python-bidi"
    "qrcode"
    "redis"
+3 −3
Original line number Diff line number Diff line
diff --git a/rust/src/config.rs b/rust/src/config.rs
diff --git a/src/config.rs b/src/config.rs
index f7cd4f32ec..ec454127be 100644
--- a/rust/src/config.rs
+++ b/rust/src/config.rs
--- a/src/config.rs
+++ b/src/config.rs
@@ -120,7 +120,7 @@ impl ManagerConfig {
             avoid_browser_download: BooleanKey("avoid-browser-download", false).get_value(),
             language_binding: StringKey(vec!["language-binding"], "").get_value(),
+5 −7
Original line number Diff line number Diff line
@@ -7,25 +7,23 @@

rustPlatform.buildRustPackage rec {
  pname = "selenium-manager";
  version = "4.28.0";
  version = "4.29.0";

  src = fetchFromGitHub {
    owner = "SeleniumHQ";
    repo = "selenium";
    tag = "selenium-${version}";
    hash = "sha256-b5xwuZ4lcwLbGhJuEmHYrFXoaTW/M0ABdK3dvbpj8oM=";
    hash = "sha256-IyMXgYl/TPTpe/Y0pFyJVKj4Mp0xbkg1LSCNHzFL3bE=";
  };

  sourceRoot = "${src.name}/rust";

  patches = [
    ./disable-telemetry.patch
  ];

  postPatch = ''
    cd rust
  '';

  useFetchCargoVendor = true;
  cargoHash = "sha256-hXtF3qFzzM2TqpEP9JWdi7uU5TgFHF9lZO5bmZcEuDk=";
  cargoHash = "sha256-MgnmEJif4Z4CcmBFkC5BJR67DMGm1ttObtl4LhAFw4g=";

  buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
    darwin.apple_sdk.frameworks.SystemConfiguration
Loading