mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
import: pypi: Remove unused procedure.
* guix/import/pypi.scm (join): Remove.
This commit is contained in:
parent
025cc9a1ed
commit
e3302fec18
1 changed files with 0 additions and 10 deletions
|
@ -37,16 +37,6 @@ (define-module (guix import pypi)
|
|||
#:use-module (gnu packages python)
|
||||
#:export (pypi->guix-package))
|
||||
|
||||
(define (join lst delimiter)
|
||||
"Return a list that contains the elements of LST, each separated by
|
||||
DELIMETER."
|
||||
(match lst
|
||||
(() '())
|
||||
((elem)
|
||||
(list elem))
|
||||
((elem . rest)
|
||||
(cons* elem delimiter (join rest delimiter)))))
|
||||
|
||||
(define (pypi-fetch name)
|
||||
"Return an alist representation of the PyPI metadata for the package NAME,
|
||||
or #f on failure."
|
||||
|
|
Loading…
Reference in a new issue