diff options
author | Vinicius Monego <monego@posteo.net> | 2025-06-25 20:28:57 -0300 |
---|---|---|
committer | Vinicius Monego <monego@posteo.net> | 2025-06-26 00:42:01 -0300 |
commit | 20ab9d8ce9bc65f942c75696955289ff36faca9c (patch) | |
tree | 7a68a2350af1599f5b47671cd6dffc0cf93b729a | |
parent | ad88d96662bfd17b0f0335080cf50a4e17678f30 (diff) |
gnu: dosage: Update to 3.1.
* gnu/packages/python-xyz.scm (dosage): Update to 3.1.
[build-system]: Use pyproject-build-system.
[native-inputs]: Remove python-pytest-cov. Add python-pytest,
python-setuptools, python-wheel.
[propagated-inputs]: Remove python-cached-property, python-colorama,
python-importlib-metadata, python-six. Add python-platformdirs,
python-rich.
Change-Id: I607c182a1f5741a3e196474a586c3be6c56a762e
-rw-r--r-- | gnu/packages/python-xyz.scm | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4c124342ed..cc645d0271 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -5283,26 +5283,26 @@ files are easily readable and they work nicely with version control systems.") (define-public dosage (package (name "dosage") - (version "2.17") + (version "3.1") (source (origin (method url-fetch) (uri (pypi-uri "dosage" version)) (sha256 (base32 - "0vmxgn9wd3j80hp4gr5iq06jrl4gryz5zgfdd2ah30d12sfcfig0")))) - (build-system python-build-system) - (propagated-inputs - (list python-cached-property - python-colorama - python-imagesize - python-importlib-metadata - python-lxml - python-requests - python-six)) - (native-inputs - (list python-pytest-cov python-pytest-xdist python-responses - python-setuptools-scm)) + "03sv1cwjw4zr06h1qqsmqg38lg6sq5hbhzrywq2wsplmq9dpxpfg")))) + (build-system pyproject-build-system) + (native-inputs (list python-pytest + python-pytest-xdist + python-responses + python-setuptools + python-setuptools-scm + python-wheel)) + (propagated-inputs (list python-imagesize + python-lxml + python-platformdirs + python-requests + python-rich)) (home-page "https://github.com/webcomics/dosage") (synopsis "Comic strip downloader and archiver") (description "Dosage is designed to keep a local copy of specific webcomics and other |