From 6ec0a6631e01192d085751c5e4aac801605c22b5 Mon Sep 17 00:00:00 2001 From: ng0 Date: Wed, 14 Sep 2016 14:24:36 +0000 Subject: [PATCH 05/18] gnu: Add python2-mysql-python. * gnu/packages/python.scm (python2-mysql-python): New variable. --- gnu/packages/python.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 02f718a..67b35aa 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -3510,6 +3510,35 @@ toolkits.") ,@(fold alist-delete (package-propagated-inputs matplotlib) '("python-pycairo" "python-pygobject" "python-tkinter"))))))) +(define-public python2-mysql-python + (package + (name "python2-mysql-python") + (version "1.2.5") + (source + (origin + (method url-fetch) + (uri (pypi-uri "MySQL-python" version ".zip")) + (sha256 + (base32 + "0x0c2jg0bb3pp84njaqiic050qkyd7ymwhfvhipnimg58yv40441")))) + (build-system python-build-system) + (arguments + `(#:tests? #f ; tests require a running mysqld at /run/mysqld/mysqld.sock + #:python ,python-2)) ; Application is python2 only + (inputs + `(("python2-setuptools" ,python2-setuptools) + ("unzip" ,unzip) + ("mysql" ,mysql) + ("zlib" ,zlib) + ("openssl" ,openssl) + ("python2-sphinx" ,python2-sphinx) + ("python2-nose" ,python2-nose))) + (home-page "https://github.com/farcepest/MySQLdb1") + (synopsis "Python interface to MySQL") + (description "MySQLdb is an interface to the popular MySQL +database server for Python.") + (license license:gpl3))) + (define-public python2-pysnptools (package (name "python2-pysnptools") -- 2.10.0