diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2021-12-13 17:18:24 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2021-12-13 17:48:25 +0100 |
| commit | 8394619baceb118df92e355377fd543bb1aa501a (patch) | |
| tree | 504f07c2a9f88596a305b59ef45f941062426a52 /gnu/packages/python.scm | |
| parent | aca2defe0172868295941fd9f0e97886f6e9b2d4 (diff) | |
gnu: Simplify package inputs.
This commit was obtained by running:
./pre-inst-env guix style
without any additional argument.
Diffstat (limited to 'gnu/packages/python.scm')
| -rw-r--r-- | gnu/packages/python.scm | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 92f4273220e..f0d2fd6eb8d 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm | |||
| @@ -382,16 +382,16 @@ | |||
| 382 | (add-after 'install 'install-sitecustomize.py | 382 | (add-after 'install 'install-sitecustomize.py |
| 383 | ,(customize-site version))))) | 383 | ,(customize-site version))))) |
| 384 | (inputs | 384 | (inputs |
| 385 | `(("bzip2" ,bzip2) | 385 | (list bzip2 |
| 386 | ("expat" ,expat) | 386 | expat |
| 387 | ("gdbm" ,gdbm) | 387 | gdbm |
| 388 | ("libffi" ,libffi) ; for ctypes | 388 | libffi ; for ctypes |
| 389 | ("sqlite" ,sqlite) ; for sqlite extension | 389 | sqlite ; for sqlite extension |
| 390 | ("openssl" ,openssl) | 390 | openssl |
| 391 | ("readline" ,readline) | 391 | readline |
| 392 | ("zlib" ,zlib) | 392 | zlib |
| 393 | ("tcl" ,tcl) | 393 | tcl |
| 394 | ("tk" ,tk))) ; for tkinter | 394 | tk)) ; for tkinter |
| 395 | (native-inputs | 395 | (native-inputs |
| 396 | `(("pkg-config" ,pkg-config) | 396 | `(("pkg-config" ,pkg-config) |
| 397 | ("sitecustomize.py" ,(local-file (search-auxiliary-file | 397 | ("sitecustomize.py" ,(local-file (search-auxiliary-file |
| @@ -729,7 +729,7 @@ To function properly, this package should not be installed together with the | |||
| 729 | `(("pkg-config" ,pkg-config) | 729 | `(("pkg-config" ,pkg-config) |
| 730 | ("python" ,python-wrapper))) | 730 | ("python" ,python-wrapper))) |
| 731 | (inputs | 731 | (inputs |
| 732 | `(("libffi" ,libffi))) | 732 | (list libffi)) |
| 733 | (home-page "https://micropython.org/") | 733 | (home-page "https://micropython.org/") |
| 734 | (synopsis "Python implementation for microcontrollers and constrained systems") | 734 | (synopsis "Python implementation for microcontrollers and constrained systems") |
| 735 | (description "MicroPython is a lean and efficient implementation of the | 735 | (description "MicroPython is a lean and efficient implementation of the |
| @@ -764,18 +764,18 @@ ease from the desktop to a microcontroller or embedded system.") | |||
| 764 | ("nss-certs" ,nss-certs) ; For ssl tests | 764 | ("nss-certs" ,nss-certs) ; For ssl tests |
| 765 | ("gzip" ,gzip))) | 765 | ("gzip" ,gzip))) |
| 766 | (inputs | 766 | (inputs |
| 767 | `(("libffi" ,libffi) | 767 | (list libffi |
| 768 | ("zlib" ,zlib) | 768 | zlib |
| 769 | ("ncurses" ,ncurses) | 769 | ncurses |
| 770 | ("openssl" ,openssl) | 770 | openssl |
| 771 | ("expat" ,expat) | 771 | expat |
| 772 | ("bzip2" ,bzip2) | 772 | bzip2 |
| 773 | ("sqlite" ,sqlite) | 773 | sqlite |
| 774 | ("gdbm" ,gdbm) | 774 | gdbm |
| 775 | ("tcl" ,tcl) | 775 | tcl |
| 776 | ("tk" ,tk) | 776 | tk |
| 777 | ("glibc" ,glibc) | 777 | glibc |
| 778 | ("xz" ,xz))) ; liblzma | 778 | xz)) ; liblzma |
| 779 | (arguments | 779 | (arguments |
| 780 | `(#:tests? #f ;FIXME: 43 out of 364 tests are failing | 780 | `(#:tests? #f ;FIXME: 43 out of 364 tests are failing |
| 781 | #:modules ((ice-9 ftw) (ice-9 match) | 781 | #:modules ((ice-9 ftw) (ice-9 match) |
