diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-05-10 23:36:17 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-18 14:37:06 +0100 |
| commit | e2975b884d21962f46f5d586f6da39e2882038c3 (patch) | |
| tree | 703b0e622007c4a6f877f9100a051a70da5c793d | |
| parent | e1cbf23388723513ea28adbb56ce1121dcb53828 (diff) | |
gnu: python-pythonanywhere: Update to 0.19.0.
* gnu/packages/python-xyz.scm (python-pythonanywhere): Update to 0.19.0.
[arguments]<#:phases>: Add phase 'relax-requirements.
Change-Id: Id97fc1dac72f39c5c4797fb06dbd679c27befed4
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/python-xyz.scm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 8ffc6c4e28..55494fd110 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -19285,7 +19285,7 @@ command-line parsers like @code{getopt} and @code{argparse}.") (define-public python-pythonanywhere (package (name "python-pythonanywhere") - (version "0.17.0") + (version "0.19.0") (source (origin (method git-fetch) @@ -19294,7 +19294,7 @@ command-line parsers like @code{getopt} and @code{argparse}.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0hsxrw1inqqnxbfvjk0j218ijx5xv4lkfh1qzvay7pzk9ifc0sfz")))) + (base32 "18g94djpq03c52j4g2c7v2s2bpijdhqz2lzz0rind97kyvss6fca")))) (build-system pyproject-build-system) (arguments (list @@ -19316,6 +19316,11 @@ command-line parsers like @code{getopt} and @code{argparse}.") " and not ")) #:phases #~(modify-phases %standard-phases + (add-after 'unpack 'relax-requirements + (lambda _ + (substitute* "pyproject.toml" + (("\"schema==.*\",") + "\"schema\",")))) (add-before 'check 'change-home (lambda _ (setenv "HOME" "/tmp")))))) |
