From 5016c8848de09d52bc899ee1fd8a2a4ea5beebea Mon Sep 17 00:00:00 2001 From: ng0 Date: Fri, 23 Sep 2016 11:56:29 +0000 Subject: [PATCH 08/18] gnu: Add python-routes. * gnu/packages/python.scm (python-routes): New variable. --- gnu/packages/python.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 61c97e2..6fea678 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1841,6 +1841,40 @@ result back.") (native-inputs `(("python2-setuptools" ,python2-setuptools)))))) +(define-public python-routes + (package + (name "python-routes") + (version "2.3.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "Routes" version)) + (sha256 + (base32 + "0l83p5prsjq0cccm6596dpv1inlafa1p7q1v8rrvi40ivjsq1hwq")))) + (build-system python-build-system) + (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))) + (home-page "http://routes.readthedocs.org/") + (synopsis "Routing Recognition and Generation Tools") + (description + "A Routing package for Python that matches URLs to dicts and vice versa.") + (properties `((python2-variant . ,(delay python2-routes)))) + (license license:expat))) + +(define-public python2-routes + (let ((base (package-with-python2 + (strip-python2-variant python-routes)))) + (package + (inherit base) + (native-inputs + `(("python2-setuptools" ,python2-setuptools)))))) + (define-public python-scripttest (package (name "python-scripttest") -- 2.10.0