summaryrefslogtreecommitdiff
path: root/gnu/packages/python.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2015-09-24 22:18:07 +0200
committerLudovic Courtès <ludo@gnu.org>2015-09-24 22:18:07 +0200
commit1007b6bf0bef3f662f65ffdd0d4383179dd07355 (patch)
tree4a9b2a4baa2d82434e12fe4aacc8f28e3266793e /gnu/packages/python.scm
parent12cd4dd3a9052491e3912ffeecbe8854ea9b971a (diff)
parenta7a4fd9a7cd02e4897e7b2156bd9ecc7e72e9818 (diff)
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/python.scm')
-rw-r--r--gnu/packages/python.scm31
1 files changed, 27 insertions, 4 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index ca367929e08..0c13303d7d6 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -3388,14 +3388,14 @@ a front-end for C compilers or analysis tools.")
3388(define-public python-cffi 3388(define-public python-cffi
3389 (package 3389 (package
3390 (name "python-cffi") 3390 (name "python-cffi")
3391 (version "0.8.6") 3391 (version "1.2.1")
3392 (source 3392 (source
3393 (origin 3393 (origin
3394 (method url-fetch) 3394 (method url-fetch)
3395 (uri (string-append "https://pypi.python.org/packages/source/c/" 3395 (uri (string-append "https://pypi.python.org/packages/source/c/"
3396 "cffi/cffi-" version ".tar.gz")) 3396 "cffi/cffi-" version ".tar.gz"))
3397 (sha256 3397 (sha256
3398 (base32 "0406j3sgndmx88idv5zxkkrwfqxmjl18pj8gf47nsg4ymzixjci5")))) 3398 (base32 "0g8yfzinry1vsj6d1jlnd19338bh92lhhk207ksy4lm1n3g73dga"))))
3399 (build-system python-build-system) 3399 (build-system python-build-system)
3400 (outputs '("out" "doc")) 3400 (outputs '("out" "doc"))
3401 (inputs 3401 (inputs
@@ -3405,10 +3405,10 @@ a front-end for C compilers or analysis tools.")
3405 (native-inputs 3405 (native-inputs
3406 `(("pkg-config" ,pkg-config) 3406 `(("pkg-config" ,pkg-config)
3407 ("python-sphinx" ,python-sphinx) 3407 ("python-sphinx" ,python-sphinx)
3408 ("python-pytest" ,python-pytest)
3408 ("python-setuptools" ,python-setuptools))) 3409 ("python-setuptools" ,python-setuptools)))
3409 (arguments 3410 (arguments
3410 `(#:tests? #f ; FIXME: requires pytest 3411 `(#:phases
3411 #:phases
3412 (alist-cons-after 3412 (alist-cons-after
3413 'install 'install-doc 3413 'install 'install-doc
3414 (lambda* (#:key outputs #:allow-other-keys) 3414 (lambda* (#:key outputs #:allow-other-keys)
@@ -4945,3 +4945,26 @@ printing of sub-tables by specifying a row range.")
4945 4945
4946(define-public python2-prettytable 4946(define-public python2-prettytable
4947 (package-with-python2 python-prettytable)) 4947 (package-with-python2 python-prettytable))
4948
4949(define-public python-pyasn1
4950 (package
4951 (name "python-pyasn1")
4952 (version "0.1.8")
4953 (source
4954 (origin
4955 (method url-fetch)
4956 (uri (string-append "https://pypi.python.org/packages/source/p/"
4957 "pyasn1/pyasn1-" version ".tar.gz"))
4958 (sha256
4959 (base32
4960 "0iw31d9l0zwx35szkzq72hiw002wnqrlrsi9dpbrfngcl1ybwcsx"))))
4961 (build-system python-build-system)
4962 (home-page "http://pyasn1.sourceforge.net/")
4963 (synopsis "ASN.1 types and codecs")
4964 (description
4965 "This is an implementation of ASN.1 types and codecs in Python. It is
4966suitable for a wide range of protocols based on the ASN.1 specification.")
4967 (license bsd-2)))
4968
4969(define-public python2-pyasn1
4970 (package-with-python2 python-pyasn1))