From dac3ba0d400dc6fb9c06724e282489ea3dcffc70 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 29 Sep 2021 10:13:15 -0400 Subject: 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. --- gnu/packages/check.scm | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index e6883dfe0f..8f18b2779e 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -981,21 +981,19 @@ standard library.") (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. -- cgit v1.2.3