gnu: python-pytest-6: Fix version via setuptools-scm.

* gnu/packages/check.scm (python-pytest-6): Fix indentation.
[phases]{fix-version}: Rename to...
{pretend-version}: ... this.  Use the supported setuptools-scm mechanism to
manually fix the version string, as suggested upstream.
This commit is contained in:
Maxim Cournoyer 2021-09-29 10:13:15 -04:00
parent e3f172b1ad
commit dac3ba0d40
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -981,21 +981,19 @@ (define-public python-pytest
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'fix-version
(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 _
(substitute* "setup.py"
(("setup\\(\\)")
(format #f "setup(version=~s)" ,version)))))
(setenv "SETUPTOOLS_SCM_PRETEND_VERSION" ,version)))
(replace 'check
(lambda* (#:key (tests? #t) #:allow-other-keys)
(setenv "TERM" "dumb") ;attempt disabling markup tests
(if tests?
(invoke "pytest" "-vv" "-k"
(string-append
;; This test involve the /usr directory, and fails.
;; This test involves the /usr directory, and fails.
" not test_argcomplete"
;; These test do not honor the isatty detection and
;; fail.