Danny Milosavljevic writes: > * gnu/packages/python.scm (python-geventhttpclient, python2-geventhttpclient): > New variables. > --- > gnu/packages/python.scm | 23 +++++++++++++++++++++++ > 1 file changed, 23 insertions(+) > > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > index deb801631..8c81eae64 100644 > --- a/gnu/packages/python.scm > +++ b/gnu/packages/python.scm > @@ -12656,6 +12656,29 @@ Features: > @end enumerate") > (license (license:x11-style "file://LICENSE")))) > > +(define-public python-geventhttpclient > + (package > + (name "python-geventhttpclient") > + (version "1.3.1") > + (source > + (origin > + (method url-fetch) > + (uri (pypi-uri "geventhttpclient" version)) > + (sha256 > + (base32 "07d0q3wzmml75227r6y6mrl5a0zpf4v9gj0ni5rhbyzmaj4az1xx")))) > + (build-system python-build-system) > + (propagated-inputs > + `(("python-gevent" ,python-gevent) > + ("python-six" ,python-six) > + ("python-certifi" ,python-certifi))) > + (home-page "http://github.com/gwik/geventhttpclient") > + (synopsis "HTTP client library for gevent") > + (description "This package provides an HTTP client library for gevent in Python.") > + (license license:expat))) > + > +(define-public python2-geventhttpclient > + (package-with-python2 python-geventhttpclient)) 'python setup.py test' doesn't actually do anything on this package. In addition, the tarball comes with .pyc files for the tests and breaks. Here is a patch with .pyc files removed and tests enabled: