[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/08: gnu: python-astroid: Update to 1.5.3.
From: |
Marius Bakke |
Subject: |
07/08: gnu: python-astroid: Update to 1.5.3. |
Date: |
Mon, 3 Jul 2017 20:53:03 -0400 (EDT) |
mbakke pushed a commit to branch master
in repository guix.
commit de2f56cf96c70d5d3e61809621e71864f5a7f51e
Author: Marius Bakke <address@hidden>
Date: Tue Jul 4 02:38:55 2017 +0200
gnu: python-astroid: Update to 1.5.3.
* gnu/packages/python.scm (python-astroid): Update to 1.5.3.
[properties]: Declare python2 variant.
(python2-astroid)[propagated-inputs]: Add
PYTHON2-BACKPORTS-FUNCTOOLS-LRU-CACHE,
PYTHON2-ENUM34 and PYTHON2-SINGLEDISPATCH.
---
gnu/packages/python.scm | 17 +++++++++++++----
1 file changed, 13 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index f34f2d3..54ab56e 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -13864,7 +13864,7 @@ users' sessions over extended periods of time.")
(define-public python-astroid
(package
(name "python-astroid")
- (version "1.4.9")
+ (version "1.5.3")
(source
(origin
(method url-fetch)
@@ -13873,7 +13873,7 @@ users' sessions over extended periods of time.")
version ".tar.gz"))
(sha256
(base32
- "0j0wgy54d13a470vm4b9rdjk99n1hmdxpf34x9k3pbmi9w9b566z"))))
+ "0isn5p7f9n48hmksgbrj7dkm9dyglnayzn5jngk37qywg8a74ngn"))))
(build-system python-build-system)
(propagated-inputs
`(("python-lazy-object-proxy" ,python-lazy-object-proxy)
@@ -13898,10 +13898,19 @@ down the AST and building an extended ast. The new
node classes have
additional methods and attributes for different usages. They include some
support for static inference and local name scopes. Furthermore, astroid
builds partial trees by inspecting living objects.")
- (license license:lgpl2.1+)))
+ (license license:lgpl2.1+)
+ (properties `((python2-variant . ,(delay python2-astroid))))))
(define-public python2-astroid
- (package-with-python2 python-astroid))
+ (let ((base (package-with-python2
+ (strip-python2-variant python-astroid))))
+ (package (inherit base)
+ (propagated-inputs
+ `(("python2-backports-functools-lru-cache"
+ ,python2-backports-functools-lru-cache)
+ ("python2-enum34" ,python2-enum34)
+ ("python2-singledispatch" ,python2-singledispatch)
+ ,@(package-propagated-inputs base))))))
(define-public python-isort
(package
- branch master updated (f88eacc -> a8a964d), Marius Bakke, 2017/07/03
- 02/08: gnu: re2: Update to 2017-07-01., Marius Bakke, 2017/07/03
- 01/08: install: Drop redundant package after c0f5eee4b2cc737be222c4ba331d0., Marius Bakke, 2017/07/03
- 03/08: gnu: python-cffi: Really enable tests., Marius Bakke, 2017/07/03
- 04/08: gnu: python-cffi: Update to 1.10.0., Marius Bakke, 2017/07/03
- 05/08: gnu: python-cryptography: Update to 1.9., Marius Bakke, 2017/07/03
- 08/08: gnu: python-pylint: Update to 1.7.2., Marius Bakke, 2017/07/03
- 06/08: gnu: python-pyopenssl: Update to 17.1.0., Marius Bakke, 2017/07/03
- 07/08: gnu: python-astroid: Update to 1.5.3.,
Marius Bakke <=