me
/
guix
Archived
1
0
Fork 0

gnu: python-platformdirs: Update to 3.10.0.

* gnu/packages/python-xyz.scm (python-platformdirs): Update to 3.10.0.
[build-system]: Switch to PYPROJECT-BUILD-SYSTEM.
[native-inputs]: Add PYTHON-HATCHLING and PYTHON-HATCH-VCS.  Remove
PYTHON-SETUPTOOLS-SCM.
Marius Bakke 2023-09-10 14:46:38 +08:00
parent 73c8574314
commit 9d285c8beb
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 8 additions and 11 deletions

View File

@ -31475,23 +31475,20 @@ compatible with a wide range of versions of the Stripe API.")
(define-public python-platformdirs (define-public python-platformdirs
(package (package
(name "python-platformdirs") (name "python-platformdirs")
(version "2.4.1") (version "3.10.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "platformdirs" version)) (uri (pypi-uri "platformdirs" version))
(sha256 (sha256
(base32 "1njz0h4iky8iglrb85cd07hpa3lp1a2dfr934dj65hxwzvfk61j4")))) (base32 "0vbzyw1k6wvg8gv9cg99ds5pri007c6rqx9668d6kk6pnbd9cmml"))))
(build-system python-build-system) (build-system pyproject-build-system)
(arguments
'(#:phases (modify-phases %standard-phases
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "pytest" "-vv")))))))
(native-inputs (native-inputs
(list python-appdirs python-pytest python-pytest-mock (list python-appdirs
python-setuptools-scm)) python-hatchling
python-hatch-vcs
python-pytest
python-pytest-mock))
(home-page "https://github.com/platformdirs/platformdirs") (home-page "https://github.com/platformdirs/platformdirs")
(synopsis "Determine the appropriate platform-specific directories") (synopsis "Determine the appropriate platform-specific directories")
(description "When writing applications, finding the right location to (description "When writing applications, finding the right location to