On Mon, Mar 30, 2020 at 08:43:34AM +0200, Lars-Dominik Braun wrote: > this patchset adds python-tortoise-orm and dependencies. Thanks! Pushed as 1110a421f4c9ede6ee814e678135a1dd2ac05fc9 with some changes... I added copyright lines for you and edited some of the descriptions to fix typos and grammatical mistakes. > +(define-public python-ciso8601 > + (package > + (name "python-ciso8601") > + (version "2.1.3") > + (source > + (origin > + (method git-fetch) > + ;; Pypi package lacks file tests.py > + (uri (git-reference > + (url "https://github.com/closeio/ciso8601.git") > + (commit (string-append "v" version)))) > + (file-name (git-file-name name version)) > + (sha256 > + (base32 > + "0g1aiyc1ayh0rnibyy416m5mmck38ksgdm3jsy0z3rxgmgb24951")))) > + (build-system python-build-system) > + (native-inputs > + `(("python-pytz" ,python-pytz))) According to README.rst, this should only be required with Python 2, but the tests fail without it. Can we amend the package to just fetch from PyPi and remove this dependency?