mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
guix import pypi: add the Apache License 2.0
* guix/import/pypi.scm (string->license): add ASL2.0.
This commit is contained in:
parent
388fd01b02
commit
cf690129b4
1 changed files with 3 additions and 1 deletions
|
@ -85,6 +85,7 @@ (define string->license
|
|||
((or "BSD" "BSD License") bsd-3)
|
||||
((or "MIT" "MIT license" "Expat license") expat)
|
||||
("Public domain" public-domain)
|
||||
("Apache License, Version 2.0" asl2.0)
|
||||
(_ #f)))
|
||||
|
||||
(define (url-fetch url file-name)
|
||||
|
@ -151,7 +152,8 @@ (define (make-pypi-sexp name version source-url home-page synopsis
|
|||
(,gpl3 . gpl3)
|
||||
(,bsd-3 . bsd-3)
|
||||
(,expat . expat)
|
||||
(,public-domain . public-domain))
|
||||
(,public-domain . public-domain)
|
||||
(,asl2.0 . asl2.0))
|
||||
license))))
|
||||
|
||||
(define (pypi->guix-package package-name)
|
||||
|
|
Loading…
Reference in a new issue