Merge pull request #127765 from fabaff/bump-auth0-python

python3Packages.auth0-python: 3.14.0 -> 3.16.2
This commit is contained in:
Sandro 2021-06-22 14:49:58 +02:00 committed by GitHub
commit ba734fb68d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,18 +1,19 @@
{ lib
, buildPythonPackage
, fetchPypi
, requests
, mock
, pyjwt
, pytestCheckHook
, requests
}:
buildPythonPackage rec {
pname = "auth0-python";
version = "3.14.0";
version = "3.16.2";
src = fetchPypi {
inherit pname version;
sha256 = "ac7808d00676c5e7ffa9eaa228807ca1f8db7a0f4dc115337c80fb6d7eb2b50a";
sha256 = "sha256-Slpwml1GDdxAZ4P6Vn2brrupRofiOHvmQF26l0gtTJM=";
};
propagatedBuildInputs = [
@ -21,23 +22,21 @@ buildPythonPackage rec {
checkInputs = [
mock
pyjwt
pytestCheckHook
];
pytestFlagsArray = [
# jwt package is not available in nixpkgs
"--ignore=auth0/v3/test/authentication/test_token_verifier.py"
];
# tries to ping websites (e.g. google.com)
disabledTests = [
# tries to ping websites (e.g. google.com)
"can_timeout"
];
pythonImportsCheck = [ "auth0" ];
meta = with lib; {
description = "Auth0 Python SDK";
homepage = "https://github.com/auth0/auth0-python";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
maintainers = with maintainers; [ costrouc ];
};
}