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

Merge pull request #232752 from fabaff/google-auth-fix

python310Packages.google-auth: move urllib3 to propagatedBuildInputs
parents 8836559b 0eb61aaf
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{ lib
, stdenv
, buildPythonPackage
, aiohttp
, aioresponses
, buildPythonPackage
, cachetools
, cryptography
, fetchPypi
@@ -42,6 +42,7 @@ buildPythonPackage rec {
    pyasn1-modules
    rsa
    six
    urllib3
  ];

  passthru.optional-dependencies = {
@@ -75,7 +76,6 @@ buildPythonPackage rec {
    pytest-localserver
    pytestCheckHook
    responses
    urllib3
  ] ++ passthru.optional-dependencies.aiohttp
  # `cryptography` is still required on `aarch64-darwin` for `tests/crypt/*`
  ++ (if (stdenv.isDarwin && stdenv.isAarch64) then [ cryptography ] else passthru.optional-dependencies.enterprise_cert)