Merge pull request #249630 from fabaff/oauthenticator-bump

python310Packages.oauthenticator: 16.0.4 -> 16.0.5
This commit is contained in:
Fabian Affolter
2023-08-17 08:48:54 +02:00
committed by GitHub
2 changed files with 9 additions and 8 deletions
@@ -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"
@@ -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 = ''