From 3c0e3afe54961680c2870fcc28c1ac66d1c3d5f6 Mon Sep 17 00:00:00 2001 From: Filipe Marchesini Date: Wed, 18 Jan 2023 04:49:00 -0300 Subject: [PATCH] Update __init__.py `scrypt` recipe was not working... Updating the version to `0.8.20` and the url to `https://github.com/holgern/py-scrypt/archive/refs/tags/v{version}.zip` fixes it You can check the latest release of `scrypt` here: https://github.com/holgern/py-scrypt/releases/tag/v0.8.20 --- pythonforandroid/recipes/scrypt/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pythonforandroid/recipes/scrypt/__init__.py b/pythonforandroid/recipes/scrypt/__init__.py index 7f235396a0..e41ba59054 100644 --- a/pythonforandroid/recipes/scrypt/__init__.py +++ b/pythonforandroid/recipes/scrypt/__init__.py @@ -3,8 +3,8 @@ class ScryptRecipe(CythonRecipe): - version = '0.8.6' - url = 'https://bitbucket.org/mhallin/py-scrypt/get/v{version}.zip' + version = '0.8.20' + url = 'https://github.com/holgern/py-scrypt/archive/refs/tags/v{version}.zip' depends = ['setuptools', 'openssl'] call_hostpython_via_targetpython = False patches = ["remove_librt.patch"]