From 9afd076f56bc9c89d2fac67c1a7989bc108f375e Mon Sep 17 00:00:00 2001 From: ng0 Date: Fri, 23 Sep 2016 12:11:09 +0000 Subject: [PATCH 09/18] gnu: Add python-routes-1.13. * gnu/packages/python.scm (python-routes-1.13): 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 6fea678..3009cd8 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1875,6 +1875,35 @@ result back.") (native-inputs `(("python2-setuptools" ,python2-setuptools)))))) +;; Required by kallithea-0.3.2 +(define-public python-routes-1.13 + (package + (inherit python-routes) + (version "1.13") + (source + (origin + (method url-fetch) + (uri (pypi-uri "Routes" version)) + (sha256 + (base32 + "19r4yr4nyz8iw3ykp8mc93xjlaybjgzyi7lhwf1azdydayix20yc")))) + (inputs + `(("python-repoze.lru" ,python-repoze.lru) + ("python-six" ,python-six) + ("python-coverage" ,python-coverage) + ("python-webob" ,python-webob) + ("python-webtest" ,python-webtest) + ("python-nose" ,python-nose) + ("python-paste" ,python-paste))))) + +(define-public python2-routes-1.13 + (let ((base (package-with-python2 + (strip-python2-variant python-routes-1.13)))) + (package + (inherit base) + (native-inputs + `(("python2-setuptools" ,python2-setuptools)))))) + (define-public python-scripttest (package (name "python-scripttest") -- 2.10.0