python310Packages.social-auth-core 4.5.0 -> 4.5.1 https://repology.org/project/python:social-auth-core/versions attrpath: python310Packages.social-auth-core Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] Going to be running update for following packages: - python3.10-social-auth-core-4.5.0 Press Enter key to continue... Running update for: - python3.10-social-auth-core-4.5.0: UPDATING ... - python3.10-social-auth-core-4.5.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/social-auth-core/default.nix b/pkgs/development/python-modules/social-auth-core/default.nix index d81101ac9a9d..1ca05502b1a4 100644 --- a/pkgs/development/python-modules/social-auth-core/default.nix +++ b/pkgs/development/python-modules/social-auth-core/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "social-auth-core"; - version = "4.5.0"; + version = "4.5.1"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "python-social-auth"; repo = "social-core"; rev = "refs/tags/${version}"; - hash = "sha256-5WEXXLl0IUPMbji8bWjTbAjY8VSLOTQvrfSCE9+ui5Y="; + hash = "sha256-yji10s3oHwUcKUs1njctkkmODyQRgiQDSRqolJFTifw="; }; propagatedBuildInputs = [ No auto update branch exists Old version 4.5.0" not present in staging derivation file with contents: { lib , buildPythonPackage , cryptography , defusedxml , fetchFromGitHub , httpretty , lxml , oauthlib , pyjwt , pytestCheckHook , python-jose , python3-openid , python3-saml , pythonOlder , requests , requests-oauthlib , setuptools }: buildPythonPackage rec { pname = "social-auth-core"; version = "4.5.1"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "python-social-auth"; repo = "social-core"; rev = "refs/tags/${version}"; hash = "sha256-yji10s3oHwUcKUs1njctkkmODyQRgiQDSRqolJFTifw="; }; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ cryptography defusedxml oauthlib pyjwt python3-openid requests requests-oauthlib ]; passthru.optional-dependencies = { openidconnect = [ python-jose ]; saml = [ lxml python3-saml ]; azuread = [ cryptography ]; }; nativeCheckInputs = [ pytestCheckHook httpretty ] ++ lib.flatten (lib.attrValues passthru.optional-dependencies); # Disable checking the code coverage prePatch = '' substituteInPlace social_core/tests/requirements.txt \ --replace "coverage>=3.6" "" \ --replace "pytest-cov>=2.7.1" "" substituteInPlace tox.ini \ --replace "{posargs:-v --cov=social_core}" "{posargs:-v}" ''; pythonImportsCheck = [ "social_core" ]; meta = with lib; { description = "Module for social authentication/registration mechanisms"; homepage = "https://github.com/python-social-auth/social-core"; changelog = "https://github.com/python-social-auth/social-core/blob/${version}/CHANGELOG.md"; license = licenses.bsd3; maintainers = with maintainers; [ n0emis ]; }; }