diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-12-23 18:41:02 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-28 20:51:52 +0000 |
| commit | 50a7c9c25024f0618b6aad8570251bed2bc4dba2 (patch) | |
| tree | 2fbf5d72189fb768df59f984680c7a0ef2d1c50b /gnu/packages/python-web.scm | |
| parent | f6f64eb6257f3f1b13019868281c28676cad9f98 (diff) | |
gnu: python-vf-1: Update to 1.0.0.
* gnu/packages/python-web.scm (python-vf-1): Update to 1.0.0.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[arguments]<#:tests?>: Disable them.
[native-inputs]: Add python-setuptools.
[home-page]: Update it.
Change-Id: I7c5ab11955fb00853287316c9217bf7f3a6b3644
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
| -rw-r--r-- | gnu/packages/python-web.scm | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index ef1ad3cd900..43a95387f29 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -9760,16 +9760,20 @@ and serve updated contents upon changes to the directory.") (define-public python-vf-1 (package (name "python-vf-1") - (version "0.0.11") + (version "1.0.0") (source (origin - (method url-fetch) - (uri (pypi-uri "VF-1" version)) + (method git-fetch) + (uri (git-reference + (url "https://git.sr.ht/~solderpunk/VF-1") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 - "0xlqsaxsiayk1sd07kpz8abbcnab582y29a1y4882fq6j4gma5xi")))) - (build-system python-build-system) - (home-page "https://github.com/solderpunk/VF-1") + (base32 "1j8l4xivm6rs8jms1ixx0i9fz4yxr84hbz1pdc498jgkgzy1v8ih")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ; No tests. + (native-inputs (list python-setuptools)) + (home-page "https://git.sr.ht/~solderpunk/VF-1") (synopsis "Command line gopher client") (description "@code{VF-1} is a command line gopher client with @acronym{TLS, Transport Layer Security} support.") |
