[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/08: gnu: Replace python-pyflakes-0.8.1 with python-pyflakes-1.2.
From: |
guix-commits |
Subject: |
05/08: gnu: Replace python-pyflakes-0.8.1 with python-pyflakes-1.2. |
Date: |
Wed, 29 Apr 2020 18:05:40 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit a6559240098d8b8ff7f799f57aecf96a53a88401
Author: Ricardo Wurmus <address@hidden>
AuthorDate: Wed Apr 29 22:19:25 2020 +0200
gnu: Replace python-pyflakes-0.8.1 with python-pyflakes-1.2.
* gnu/packages/python-xyz.scm (python-pyflakes-0.8.1): Remove variable.
(python-pyflakes-1.2): New variable.
* gnu/packages/openstack.scm (python-hacking)[propagated-inputs]: Replace
python-pyflakes-0.8.1 with python-pyflakes-1.2.
---
gnu/packages/openstack.scm | 2 +-
gnu/packages/python-xyz.scm | 37 +++++++++++++++++++++----------------
2 files changed, 22 insertions(+), 17 deletions(-)
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm
index 8dd8c19..6c81454 100644
--- a/gnu/packages/openstack.scm
+++ b/gnu/packages/openstack.scm
@@ -144,7 +144,7 @@ manner.")
("python-mccabe-0.2.1" ,python-mccabe-0.2.1)
("python-pbr" ,python-pbr)
("python-pep8-1.5.7" ,python-pep8-1.5.7)
- ("python-pyflakes-0.8.1" ,python-pyflakes-0.8.1)
+ ("python-pyflakes-1.2" ,python-pyflakes-1.2)
("python-six" ,python-six)))
(native-inputs
`( ;; Tests
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c6c6bf2..80185f4 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -7380,6 +7380,27 @@ PEP 8.")
(define-public python2-pyflakes
(package-with-python2 python-pyflakes))
+;; Flake8 2.6 requires an older version of pyflakes.
+;; This should be removed ASAP.
+(define-public python-pyflakes-1.2
+ (package (inherit python-pyflakes)
+ (version "1.2.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "pyflakes" version))
+ (sha256
+ (base32
+ "17hkw8yd44cr8fz13phy4aih3r5j2p7ild4zlvqdh2c8dmiinjif"))))
+ (arguments
+ '(#:phases
+ (modify-phases %standard-phases
+ ;; This one test fails.
+ (replace 'check
+ (lambda _ (invoke "pytest" "-vv" "-k" "not test_f_string"))))))
+ (native-inputs
+ `(("python-pytest" ,python-pytest)))))
+
(define-public python-mccabe
(package
(name "python-mccabe")
@@ -7438,22 +7459,6 @@ complexity of Python source code.")
(define-public python2-pep8-1.5.7
(package-with-python2 python-pep8-1.5.7))
-;; Flake8 2.4.1 requires an older version of pyflakes.
-;; This should be removed ASAP.
-(define-public python-pyflakes-0.8.1
- (package (inherit python-pyflakes)
- (version "0.8.1")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "pyflakes" version))
- (sha256
- (base32
- "0sbpq6pqm1i9wqi41mlfrsc5rk92jv4mskvlyxmnhlbdnc80ma1z"))))
- (arguments
- ;; XXX Tests not compatible with Python 3.5.
- '(#:tests? #f))))
-
(define-public python-flake8
(package
(name "python-flake8")
- branch master updated (145df67 -> 851a3a7), guix-commits, 2020/04/29
- 02/08: gnu: Add python-voluptuous., guix-commits, 2020/04/29
- 03/08: gnu: Add python-cmd2., guix-commits, 2020/04/29
- 04/08: gnu: Remove python2-pyflakes-0.8.1., guix-commits, 2020/04/29
- 05/08: gnu: Replace python-pyflakes-0.8.1 with python-pyflakes-1.2.,
guix-commits <=
- 01/08: gnu: python-psutil: Update to 5.7.0., guix-commits, 2020/04/29
- 06/08: gnu: Remove python2-flake8-2.5., guix-commits, 2020/04/29
- 07/08: gnu: python-flake8-2.5: Update to 2.6.2., guix-commits, 2020/04/29
- 08/08: gnu: python-hacking: Update to 1.1.0., guix-commits, 2020/04/29