diff options
author | jgart <jgart@dismail.de> | 2023-06-11 19:01:44 -0500 |
---|---|---|
committer | jgart <jgart@dismail.de> | 2023-06-11 19:09:07 -0500 |
commit | 259b2e99e7121f05011742955636ff2dd96bf0e8 (patch) | |
tree | d365e1bc82239e0c80fba99882c1314293ee3598 /gnu | |
parent | 299f64adea72a4b360da54b0bffd06ee57a5517b (diff) | |
download | guix-259b2e99e7121f05011742955636ff2dd96bf0e8.tar.gz guix-259b2e99e7121f05011742955636ff2dd96bf0e8.zip |
gnu: python-titlecase: Update to 2.4.
* gnu/packages/python-xyz.scm (python-titlecase): Update to 2.4.
[native-inputs]: Remove python-nose.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index dd35f94214..d736e94a6b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -27307,17 +27307,15 @@ an upload option to send your work back to the platform.") (define-public python-titlecase (package (name "python-titlecase") - (version "0.12.0") + (version "2.4") (source (origin (method url-fetch) (uri (pypi-uri "titlecase" version)) (sha256 (base32 - "0486i99wf8ssa7sgn81fn6fv6i4rhhq6n751bc740b3hzfbpmpl4")))) + "00h92jdpj108z4sb6dpayfblpax20698290jnbyi5z5iwk5974i6")))) (build-system python-build-system) - (native-inputs - (list python-nose)) (home-page "https://github.com/ppannuto/python-titlecase") (synopsis "Capitalize strings similar to book titles") (description |