summaryrefslogtreecommitdiff
path: root/gnu/packages/openstack.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-03-25 08:56:50 +0100
committerAndreas Enge <andreas@enge.fr>2025-04-16 11:46:21 +0200
commit4528a0c866ae5b3fe15d2e5f9d38f26725a8c3fb (patch)
treed465754401e289fc20d548dd7156558816b7a9f3 /gnu/packages/openstack.scm
parent09419871611e5fb50bb25f021c6a50aa6f92d4d1 (diff)
gnu: python-debtcollector: Update to 3.0.0.
* gnu/packages/openstack.scm (python-debtcollector): Update to 3.0.0. [source]: Patch {origin} to remove unwanted native-inputs. [build-system]: Switch to pyproject-build-system. [propagated-inputs]: Remove python-six. [native-inputs]: Add python-doc8, python-fixtures, python-openstackdocstheme, python-reno, python-setuptools, python-stestr and python-wheel. Remove python-subunit and python-testrepository. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/openstack.scm')
-rw-r--r--gnu/packages/openstack.scm24
1 files changed, 17 insertions, 7 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm
index ac283bd019a..80fad320682 100644
--- a/gnu/packages/openstack.scm
+++ b/gnu/packages/openstack.scm
@@ -115,20 +115,30 @@ formatters, and other extensions.")
(define-public python-debtcollector
(package
(name "python-debtcollector")
- (version "1.19.0")
+ (version "3.0.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "debtcollector" version))
(sha256
- (base32
- "06c7vyn184y9f0lsrwaz13aq63hdz5fjrd191b8nifx6acsni42f"))))
- (build-system python-build-system)
+ (base32 "0vzarkvjclci98d8lvkix6qj59f7rxp1qg2x6q6is7qfbg91g29a"))
+ (modules '((guix build utils)))
+ (snippet #~(begin
+ (substitute* "test-requirements.txt"
+ (("^(coverage|hacking|pre-commit).*")
+ ""))))))
+ (build-system pyproject-build-system)
(propagated-inputs
- (list python-pbr python-six python-wrapt))
+ (list python-pbr python-wrapt))
(native-inputs
- (list ;; Tests.
- python-subunit python-testrepository python-testtools))
+ (list python-doc8
+ python-fixtures
+ python-openstackdocstheme
+ python-reno
+ python-setuptools
+ python-stestr
+ python-testtools
+ python-wheel))
(home-page "https://www.openstack.org/")
(synopsis
"Find deprecated patterns and strategies in Python code")