gnu: Add Python 3.
* gnu/packages/python.scm (python-2): Rename from python for version 2. * gnu/packages/python.scm (python): New variable for version 3.
This commit is contained in:
		
							parent
							
								
									91dcbafab9
								
							
						
					
					
						commit
						f26a77ffbc
					
				
					 1 changed files with 13 additions and 1 deletions
				
			
		|  | @ -31,7 +31,7 @@ | ||||||
|   #:use-module (guix build-system gnu) |   #:use-module (guix build-system gnu) | ||||||
|   #:use-module (guix build-system python)) |   #:use-module (guix build-system python)) | ||||||
| 
 | 
 | ||||||
| (define-public python | (define-public python-2 | ||||||
|   (package |   (package | ||||||
|     (name "python") |     (name "python") | ||||||
|     (version "2.7.5") |     (version "2.7.5") | ||||||
|  | @ -151,6 +151,18 @@ packages; exception-based error handling; and very high level dynamic | ||||||
| data types.") | data types.") | ||||||
|     (license psfl))) |     (license psfl))) | ||||||
| 
 | 
 | ||||||
|  | (define-public python | ||||||
|  |   (package (inherit python-2) | ||||||
|  |     (version "3.3.2") | ||||||
|  |     (source | ||||||
|  |      (origin | ||||||
|  |       (method url-fetch) | ||||||
|  |       (uri (string-append "http://www.python.org/ftp/python/" | ||||||
|  |                           version "/Python-" version ".tar.xz")) | ||||||
|  |       (sha256 | ||||||
|  |        (base32 | ||||||
|  |         "0hsbwqjnhr85a2w252c8d3yj8d9i5sy8s6a6cfk6zqqhp3234nvl")))))) | ||||||
|  | 
 | ||||||
| (define-public pytz | (define-public pytz | ||||||
|   (package |   (package | ||||||
|     (name "pytz") |     (name "pytz") | ||||||
|  |  | ||||||
		Reference in a new issue