gnu: python-minimal@2: Add dependencies on libffi and zlib.

* gnu/packages/python.scm (python2-minimal)[inputs]: Add LIBFFI and ZLIB.
[arguments]: Remove.
This commit is contained in:
Ludovic Courtès 2017-03-19 22:10:12 +01:00
parent 4ed0628737
commit 5927a843b4
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -359,11 +359,12 @@ (define-public python2-minimal
(package (inherit python-2)
(name "python-minimal")
(outputs '("out"))
(arguments
(substitute-keyword-arguments (package-arguments python-2)
((#:configure-flags cf)
`(append ,cf '("--without-system-ffi")))))
(inputs '()))) ;none of the optional dependencies
;; Keep zlib, which is used by 'pip' (via the 'zipimport' module), which
;; is invoked upon 'make install'. 'pip' also expects 'ctypes' and thus
;; libffi.
(inputs `(("libffi" ,libffi)
("zlib" ,zlib)))))
(define-public python-minimal
(package (inherit python)