New comment by q66 on void-packages repository https://github.com/void-linux/void-packages/pull/20559#issuecomment-608173638 Comment: Okay. We will need `python3-scrypt` after all, since our `hashlib` does not have `scrypt` (due to LibreSSL not being compatible with OpenSSL 1.1.x API). Also, please apply the following diff: ``` diff --git a/srcpkgs/etesync-dav/template b/srcpkgs/etesync-dav/template index ae9b63d2c1..e96c382855 100644 --- a/srcpkgs/etesync-dav/template +++ b/srcpkgs/etesync-dav/template @@ -7,6 +7,7 @@ wrksrc="etesync-dav-${version}" build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-etesync radicale2 python3-Flask python3-Flask-WTF" +checkdepends="$depends python3-pytest" short_desc="CalDAV and CardDAV frontend for EteSync" maintainer="projectmoon " license="GPL-3.0-only" diff --git a/srcpkgs/python3-etesync/template b/srcpkgs/python3-etesync/template index 5a889c4cea..bd0091c158 100644 --- a/srcpkgs/python3-etesync/template +++ b/srcpkgs/python3-etesync/template @@ -10,6 +10,7 @@ depends="python3-appdirs python3-asn1crypto python3-cffi python3-cryptography py python3-furl python3-idna python3-packaging python3-peewee python3-py python3-pyasn1 python3-pycparser python3-parsing python3-pytz python3-requests python3-six python3-vobject" +checkdepends="$depends python3-pytest" short_desc="Python3 client library for EteSync" maintainer="projectmoon " license="LGPL-3.0-only" diff --git a/srcpkgs/python3-furl/template b/srcpkgs/python3-furl/template index 0116a02145..5fc53ba21d 100644 --- a/srcpkgs/python3-furl/template +++ b/srcpkgs/python3-furl/template @@ -7,6 +7,7 @@ wrksrc="furl-${version}" build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-six python3-orderedmultidict" +checkdepends="$depends python3-flake8" short_desc="Python 3 URL manipulation made simple" maintainer="projectmoon " license="Unlicense" diff --git a/srcpkgs/python3-orderedmultidict/template b/srcpkgs/python3-orderedmultidict/template index 1f1ecb518c..e6df82104c 100644 --- a/srcpkgs/python3-orderedmultidict/template +++ b/srcpkgs/python3-orderedmultidict/template @@ -6,7 +6,8 @@ archs=noarch wrksrc="orderedmultidict-${version}" build_style=python3-module hostmakedepends="python3-setuptools" -depends="python3" +depends="python3 python3-six" +checkdepends="$depends python3-flake8" short_desc="Python 3 ordered multivalue dictionary library" maintainer="projectmoon " license="Unlicense" ```