gnu: python-platformdirs: Update to 2.4.0, run tests and fix metadata.

* gnu/packages/python-xyz.scm (python-platformdirs): Update to 2.4.0.
[phases]{pretend-version}: New phase.
{check}: Override to run tests.
[native-inputs]{python-setuptools-scm}: New input.
This commit is contained in:
Maxim Cournoyer 2021-12-20 15:13:47 -05:00
parent 5b218cc14a
commit b9839ee1c5
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -27499,17 +27499,30 @@ (define-public python-stripe
(define-public python-platformdirs (define-public python-platformdirs
(package (package
(name "python-platformdirs") (name "python-platformdirs")
(version "2.2.0") (version "2.4.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "platformdirs" version)) (uri (pypi-uri "platformdirs" version))
(sha256 (sha256
(base32 "07hq5qrp7pqj63iczg01wbf5ii6f0ncd0dq5mzkdhsslmg9slbb3")))) (base32 "1whycrymqpsl7nsaknmcybzyh4fg4kqk6vd7zwl28kfhnf05wyin"))))
(build-system python-build-system) (build-system python-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-before 'build 'pretend-version
;; The version string is usually derived via setuptools-scm, but
;; without the git metadata available, the version string is set to
;; '0.0.0'.
(lambda _
(setenv "SETUPTOOLS_SCM_PRETEND_VERSION" ,version)))
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "pytest")))))))
(native-inputs (native-inputs
(list python-appdirs python-pytest python-pytest-cov (list python-appdirs python-pytest python-pytest-cov
python-pytest-mock)) python-pytest-mock python-setuptools-scm))
(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