diff options
author | Ricardo Wurmus <[email protected]> | 2025-01-14 20:37:54 +0100 |
---|---|---|
committer | Ricardo Wurmus <[email protected]> | 2025-01-20 21:37:56 +0100 |
commit | f59129c09b9e0bf992b191dd95eca77101521544 (patch) | |
tree | 3af0e6bdc5e7dab43cdca1b1144cf1e3ec7d6653 /gnu/packages/openstack.scm | |
parent | 522225af7710bf9da37c0ae067fcb1fbfad31866 (diff) |
gnu: python-hacking: Update to 7.0.0.
* gnu/packages/openstack.scm (python-hacking): Update to 7.0.0.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-setuptools and python-wheel.
Change-Id: Ie82d0a89699fa4ae32f008f089de402181f89bc3
Diffstat (limited to 'gnu/packages/openstack.scm')
-rw-r--r-- | gnu/packages/openstack.scm | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm index c9932e7875..02844eb250 100644 --- a/gnu/packages/openstack.scm +++ b/gnu/packages/openstack.scm @@ -4,7 +4,7 @@ ;;; Copyright © 2016, 2017, 2019, 2021 Clément Lassieur <[email protected]> ;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <[email protected]> ;;; Copyright © 2018, 2022 Marius Bakke <[email protected]> -;;; Copyright © 2020, 2021 Ricardo Wurmus <[email protected]> +;;; Copyright © 2020, 2021, 2025 Ricardo Wurmus <[email protected]> ;;; Copyright © 2020 Maxim Cournoyer <[email protected]> ;;; Copyright © 2022 Tanguy Le Carrour <[email protected]> ;;; Copyright © 2022 Hartmut Goebel <[email protected]> @@ -44,6 +44,7 @@ #:use-module (gnu packages version-control) #:use-module (gnu packages xml) #:use-module (guix build-system python) + #:use-module (guix build-system pyproject) #:use-module (guix download) #:use-module ((guix licenses) #:select (asl2.0)) @@ -139,27 +140,28 @@ manner.") (define-public python-hacking (package (name "python-hacking") - (version "5.0.0") + (version "7.0.0") (source (origin (method url-fetch) (uri (pypi-uri "hacking" version)) (sha256 (base32 - "09p0avmz914asszvdknc46n43bl070f369wmjmppl51zmw4b4ddb")))) - (build-system python-build-system) + "1dya2mbnm8cbkwrzmhsacdpmp37nhfcy13y5hbx58z8g53jw5dmr")))) + (build-system pyproject-build-system) (propagated-inputs (list python-flake8)) (native-inputs - (list ;; Tests - python-coverage + (list python-coverage python-ddt python-eventlet python-fixtures - python-subunit + python-setuptools python-stestr + python-subunit python-testscenarios - python-testtools)) + python-testtools + python-wheel)) (home-page "https://github.com/openstack-dev/hacking") (synopsis "OpenStack hacking guideline enforcement") (description |