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

Merge pull request #249630 from fabaff/oauthenticator-bump

python310Packages.oauthenticator: 16.0.4 -> 16.0.5
parents 81fba77c a06675df
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
@@ -141,11 +141,6 @@ buildPythonPackage rec {
    importlib-metadata
  ];

  preCheck = ''
    substituteInPlace jupyterhub/tests/test_spawner.py --replace \
      "'jupyterhub-singleuser'" "'$out/bin/jupyterhub-singleuser'"
  '';

  nativeCheckInputs = [
    beautifulsoup4
    cryptography
@@ -161,12 +156,18 @@ buildPythonPackage rec {
    virtualenv
  ];

  preCheck = ''
    substituteInPlace jupyterhub/tests/test_spawner.py --replace \
      "'jupyterhub-singleuser'" "'$out/bin/jupyterhub-singleuser'"
    export PATH="$PATH:$out/bin";
  '';

  disabledTests = [
    # Tries to install older versions through pip
    "test_upgrade"
    # Testcase fails to find requests import
    "test_external_service"
    # attempts to do ssl connection
    # Attempts to do TLS connection
    "test_connection_notebook_wrong_certs"
    # AttributeError: 'coroutine' object...
    "test_valid_events"
+2 −2
Original line number Diff line number Diff line
@@ -14,14 +14,14 @@

buildPythonPackage rec {
  pname = "oauthenticator";
  version = "16.0.4";
  version = "16.0.5";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-6dZt+GIbmOgC+R5KlFc5W2jpPaxCn+GkNkVhR/4Tke8=";
    hash = "sha256-ddCqr6qIIyU3EQ6p2i+U6F359j3hcZ7E2X8qbeUz2e8=";
  };

  postPatch = ''