summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-12-24 17:18:08 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-31 12:24:14 +0000
commit3e33a941183dde36728bc511aef016167a6647e9 (patch)
treed5b9d357d575284c69d836fd8ff49d4730910bf3 /gnu
parentb5159db2ce22a4e6e3c96a0bce8f3a34cc05d799 (diff)
gnu: python-humanfriendly: Update to 10.0.
* gnu/packages/python-xyz.scm (python-humanfriendly): Update to 10.0. [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools. Change-Id: I15dcfa2af7df442ea68e6165fa37aafcb869fd28 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm20
1 files changed, 12 insertions, 8 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 243e5636484..1726f55dead 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -5758,18 +5758,22 @@ other machines, such as over the network.")
5758(define-public python-humanfriendly 5758(define-public python-humanfriendly
5759 (package 5759 (package
5760 (name "python-humanfriendly") 5760 (name "python-humanfriendly")
5761 (version "8.2") 5761 (version "10.0")
5762 (source 5762 (source
5763 (origin 5763 (origin
5764 (method url-fetch) 5764 (method git-fetch)
5765 (uri (pypi-uri "humanfriendly" version)) 5765 (uri (git-reference
5766 (url "https://github.com/xolox/python-humanfriendly")
5767 (commit version)))
5768 (file-name (git-file-name name version))
5766 (sha256 5769 (sha256
5767 (base32 5770 (base32 "07di334y2xbyl9bd2c9q55sm0llmvz80a4p7frlkvq2w6l2d47bv"))))
5768 "04ixg8b7p6xc8x8lffhi7wfl77xhszakhd0s6j0cf6a84j8yqlmz")))) 5771 (build-system pyproject-build-system)
5769 (build-system python-build-system)
5770 (arguments 5772 (arguments
5771 `(;; XXX: Tests depend on coloredlogs, which in turn depends on humanfriendly. 5773 (list
5772 #:tests? #f)) 5774 ;XXX: Tests depend on coloredlogs, which in turn depends on humanfriendly.
5775 #:tests? #f))
5776 (native-inputs (list python-setuptools))
5773 (home-page "https://humanfriendly.readthedocs.io") 5777 (home-page "https://humanfriendly.readthedocs.io")
5774 (synopsis "Human-friendly input and output in Python") 5778 (synopsis "Human-friendly input and output in Python")
5775 (description 5779 (description