[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/07: gnu: python2-pylint: Fix build.
From: |
guix-commits |
Subject: |
07/07: gnu: python2-pylint: Fix build. |
Date: |
Sat, 19 Oct 2019 10:05:58 -0400 (EDT) |
mothacehe pushed a commit to branch master
in repository guix.
commit 74c1a561d47834eb80d8ccf66c2613f006162b60
Author: Mathieu Othacehe <address@hidden>
Date: Sat Oct 19 15:38:31 2019 +0200
gnu: python2-pylint: Fix build.
* gnu/packages/check.scm (python2-pylint): Set to 1.7.2 as 2.x branch
does not support python2 anymore,
[arguments]: move python2 specific hack to run tests from
python-pylint to here,
[native-inputs]: add python2-futures.
---
gnu/packages/check.scm | 34 +++++++++++++++++++++++++++++++++-
1 file changed, 33 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index d0183d8..1f07cad 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -1743,10 +1743,42 @@ possible to write plugins to add your own checks.")
(properties `((python2-variant . ,(delay python2-pylint))))
(license license:gpl2+)))
+;; Python2 is not supported anymore by Pylint. See:
+;; https://github.com/PyCQA/pylint/issues/1763.
(define-public python2-pylint
(let ((pylint (package-with-python2
- (strip-python2-variant python-pylint))))
+ (strip-python2-variant python-pylint))))
(package (inherit pylint)
+ (version "1.7.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/PyCQA/pylint")
+ (commit (string-append "pylint-" version))))
+ (file-name (git-file-name (package-name pylint) version))
+ (sha256
+ (base32
+ "0yyc1gxq66li2adyx8njs83dh1pliylzkdmihw0k5bn6z4aakh8s"))))
+ (arguments
+ `(,@(package-arguments pylint)
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda _
+ ;; Somehow, tests fail if run from the build directory.
+ (let ((work "/tmp/work"))
+ (mkdir-p work)
+ (setenv "PYTHONPATH"
+ (string-append (getenv "PYTHONPATH") ":" work))
+ (copy-recursively "." work)
+ (with-directory-excursion "/tmp"
+ (invoke "python" "-m" "unittest" "discover"
+ "-s" (string-append work "/pylint/test")
+ "-p" "*test_*.py"))))))))
+ (native-inputs
+ `(("python2-futures" ,python2-futures)
+ ,@(package-native-inputs pylint)))
(propagated-inputs
`(("python2-backports-functools-lru-cache"
,python2-backports-functools-lru-cache)
- branch master updated (5f76051 -> 74c1a56), guix-commits, 2019/10/19
- 01/07: gnu: Add python-setuptools-scm-3.3., guix-commits, 2019/10/19
- 02/07: gnu: python-lazy-object-proxy: Update to 1.4.2., guix-commits, 2019/10/19
- 03/07: gnu: python-typed-ast: Update to 1.4.0., guix-commits, 2019/10/19
- 04/07: gnu: python-astroid: Update to 2.3.2., guix-commits, 2019/10/19
- 05/07: gnu: python2-astroid: Fix build., guix-commits, 2019/10/19
- 06/07: gnu: python-pylint: Update to 2.3.1., guix-commits, 2019/10/19
- 07/07: gnu: python2-pylint: Fix build.,
guix-commits <=