diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-01 13:56:08 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-02 23:16:28 +0100 |
commit | 649df4cf656875684568314f292b5fbef8a9f583 (patch) | |
tree | 3b6bef3dbd1d2fc7761d09e1a52d7ca22ad96254 | |
parent | 538f259dfbbdd850418f3ee134d5e7ba732b77a3 (diff) |
gnu: python-miniboa: Update to 1.0.9.
* gnu/packages/python-xyz.scm (python-miniboa): Update to 1.0.9.
[source]: Switch to git-fetch.
[build-system]: Use pyproject.
[native-inputs]: Add python-pytest, python-setuptools, and python-wheel.
Change-Id: I18c432086bf725340996013155585148f6cd50d3
-rw-r--r-- | gnu/packages/python-xyz.scm | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 05678351e0..2aa9902a72 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -6542,15 +6542,21 @@ matching them against a list of media-ranges.") (define-public python-miniboa (package (name "python-miniboa") - (version "1.0.8") + (version "1.0.9") (source (origin - (method url-fetch) - (uri (pypi-uri "miniboa" version)) + (method git-fetch) ;no tests in PyPI archive + (uri (git-reference + (url "https://github.com/shmup/miniboa") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 - "002c1aki9hsrwj5plrwdrf3sk8rn95fqylqyjx2arrjfpsih4dgs")))) - (build-system python-build-system) + (base32 "05xa44x61bia2pxjdncz6rj10js8hgp2a9hf56avbfk7g58n3v5y")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-setuptools + python-wheel)) (home-page "https://github.com/shmup/miniboa") (synopsis "Simple, single-threaded Telnet server") (description |