gnu: python-isort: Update to 4.3.4.
[jackhill/guix/guix.git] / gnu / packages / python-xyz.scm
CommitLineData
44d10b1f
RW
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
3;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
4;;; Copyright © 2013, 2014, 2015, 2016 Andreas Enge <andreas@enge.fr>
5;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
6;;; Copyright © 2014, 2017 Eric Bavier <bavier@member.fsf.org>
7;;; Copyright © 2014, 2015 Federico Beffa <beffa@fbengineering.ch>
8;;; Copyright © 2015 Omar Radwan <toxemicsquire4@gmail.com>
9;;; Copyright © 2015 Pierre-Antoine Rault <par@rigelk.eu>
10;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
11;;; Copyright © 2015, 2016 Christopher Allan Webber <cwebber@dustycloud.org>
12;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
13;;; Copyright © 2015, 2016 David Thompson <davet@gnu.org>
14;;; Copyright © 2015, 2016, 2017 Leo Famulari <leo@famulari.name>
15;;; Copyright © 2015, 2017 Ben Woodcroft <donttrustben@gmail.com>
16;;; Copyright © 2015, 2016 Erik Edrosa <erik.edrosa@gmail.com>
17;;; Copyright © 2015, 2016, 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
18;;; Copyright © 2015, 2017 Kyle Meyer <kyle@kyleam.com>
19;;; Copyright © 2015, 2016 Chris Marusich <cmmarusich@gmail.com>
20;;; Copyright © 2016 Danny Milosavljevic <dannym+a@scratchpost.org>
21;;; Copyright © 2016 Lukas Gradl <lgradl@openmailbox.org>
22;;; Copyright © 2016, 2018 Hartmut Goebel <h.goebel@crazy-compilers.com>
23;;; Copyright © 2016 Daniel Pimentel <d4n1@d4n1.org>
24;;; Copyright © 2016 Sou Bunnbu <iyzsong@gmail.com>
25;;; Copyright © 2016, 2017 Troy Sankey <sankeytms@gmail.com>
26;;; Copyright © 2016, 2017 Nils Gillmann <ng0@n0.is>
27;;; Copyright © 2016 Dylan Jeffers <sapientech@sapientech@openmailbox.org>
28;;; Copyright © 2016 David Craven <david@craven.ch>
29;;; Copyright © 2016, 2017, 2018 Marius Bakke <mbakke@fastmail.com>
30;;; Copyright © 2016, 2017 Stefan Reichör <stefan@xsteve.at>
31;;; Copyright © 2016 Dylan Jeffers <sapientech@sapientech@openmailbox.org>
32;;; Copyright © 2016, 2017 Alex Vong <alexvong1995@gmail.com>
33;;; Copyright © 2016, 2017, 2018 Arun Isaac <arunisaac@systemreboot.net>
34;;; Copyright © 2016, 2017, 2018 Julien Lepiller <julien@lepiller.eu>
35;;; Copyright © 2016, 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
36;;; Copyright © 2016, 2017 Thomas Danckaert <post@thomasdanckaert.be>
37;;; Copyright © 2017 Carlo Zancanaro <carlo@zancanaro.id.au>
38;;; Copyright © 2017 Frederick M. Muriithi <fredmanglis@gmail.com>
39;;; Copyright © 2017, 2018 Adriano Peluso <catonano@gmail.com>
40;;; Copyright © 2017 Ben Sturmfels <ben@sturm.com.au>
41;;; Copyright © 2017, 2018 Mathieu Othacehe <m.othacehe@gmail.com>
42;;; Copyright © 2017 José Miguel Sánchez García <jmi2k@openmailbox.org>
43;;; Copyright © 2017 Roel Janssen <roel@gnu.org>
44;;; Copyright © 2017, 2018 Kei Kebreau <kkebreau@posteo.net>
45;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
46;;; Copyright © 2017 Muriithi Frederick Muriuki <fredmanglis@gmail.com>
47;;; Copyright © 2017 Brendan Tildesley <brendan.tildesley@openmailbox.org>
48;;; Copyright © 2018 Ethan R. Jones <ethanrjones97@gmail.com
49;;; Copyright © 2018 Fis Trivial <ybbs.daans@hotmail.com>
50;;; Copyright © 2018 Vijayalakshmi Vedantham <vijimay12@gmail.com>
51;;; Copyright © 2018 Mathieu Lirzin <mthl@gnu.org>
52;;; Copyright © 2018 Adam Massmann <massmannak@gmail.com>
53;;; Copyright © 2016, 2018 Tomáš Čech <sleep_walker@gnu.org>
54;;; Copyright © 2018 Nicolas Goaziou <mail@nicolasgoaziou.fr>
55;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
56;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
57;;; Copyright © 2018 Maxim Cournoyer <maxim.cournoyer@gmail.com>
58;;; Copyright © 2018 Luther Thompson <lutheroto@gmail.com>
59;;; Copyright © 2018 Vagrant Cascadian <vagrant@debian.org>
60;;;
61;;; This file is part of GNU Guix.
62;;;
63;;; GNU Guix is free software; you can redistribute it and/or modify it
64;;; under the terms of the GNU General Public License as published by
65;;; the Free Software Foundation; either version 3 of the License, or (at
66;;; your option) any later version.
67;;;
68;;; GNU Guix is distributed in the hope that it will be useful, but
69;;; WITHOUT ANY WARRANTY; without even the implied warranty of
70;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
71;;; GNU General Public License for more details.
72;;;
73;;; You should have received a copy of the GNU General Public License
74;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
75
76(define-module (gnu packages python-xyz)
77 #:use-module ((guix licenses) #:prefix license:)
78 #:use-module (gnu packages)
79 #:use-module (gnu packages algebra)
80 #:use-module (gnu packages adns)
81 #:use-module (gnu packages attr)
82 #:use-module (gnu packages backup)
83 #:use-module (gnu packages bash)
84 #:use-module (gnu packages check)
85 #:use-module (gnu packages compression)
86 #:use-module (gnu packages crypto)
87 #:use-module (gnu packages databases)
88 #:use-module (gnu packages file)
89 #:use-module (gnu packages fontutils)
90 #:use-module (gnu packages gcc)
91 #:use-module (gnu packages geo)
92 #:use-module (gnu packages ghostscript)
93 #:use-module (gnu packages gl)
94 #:use-module (gnu packages glib)
95 #:use-module (gnu packages graphviz)
96 #:use-module (gnu packages graphics)
97 #:use-module (gnu packages gstreamer)
98 #:use-module (gnu packages gtk)
99 #:use-module (gnu packages icu4c)
100 #:use-module (gnu packages image)
101 #:use-module (gnu packages imagemagick)
102 #:use-module (gnu packages libevent)
103 #:use-module (gnu packages libffi)
104 #:use-module (gnu packages linux)
105 #:use-module (gnu packages llvm)
106 #:use-module (gnu packages man)
107 #:use-module (gnu packages maths)
108 #:use-module (gnu packages multiprecision)
109 #:use-module (gnu packages networking)
110 #:use-module (gnu packages ncurses)
111 #:use-module (gnu packages openstack)
112 #:use-module (gnu packages pcre)
113 #:use-module (gnu packages perl)
114 #:use-module (gnu packages pkg-config)
115 #:use-module (gnu packages python)
116 #:use-module (gnu packages python-crypto)
117 #:use-module (gnu packages python-web)
118 #:use-module (gnu packages qt)
119 #:use-module (gnu packages readline)
120 #:use-module (gnu packages sdl)
121 #:use-module (gnu packages search)
122 #:use-module (gnu packages shells)
123 #:use-module (gnu packages ssh)
124 #:use-module (gnu packages terminals)
125 #:use-module (gnu packages tex)
126 #:use-module (gnu packages texinfo)
127 #:use-module (gnu packages time)
128 #:use-module (gnu packages tls)
129 #:use-module (gnu packages version-control)
130 #:use-module (gnu packages video)
131 #:use-module (gnu packages web)
132 #:use-module (gnu packages base)
133 #:use-module (gnu packages xml)
134 #:use-module (gnu packages xorg)
135 #:use-module (gnu packages xdisorg)
136 #:use-module (gnu packages tcl)
137 #:use-module (gnu packages bdw-gc)
138 #:use-module (guix packages)
139 #:use-module (guix download)
140 #:use-module (guix git-download)
141 #:use-module (guix utils)
142 #:use-module (guix build-system gnu)
143 #:use-module (guix build-system cmake)
144 #:use-module (guix build-system python)
145 #:use-module (guix build-system trivial)
146 #:use-module (srfi srfi-1)
147 #:use-module (srfi srfi-26))
148
149(define-public python-psutil
150 (package
151 (name "python-psutil")
152 (version "5.4.3")
153 (source
154 (origin
155 (method url-fetch)
156 (uri (pypi-uri "psutil" version))
157 (sha256
158 (base32
159 "063v69x7spyclyaxrd3gmzj3p16q5ayg97xqhwb1kyn22a9pwip2"))))
160 (build-system python-build-system)
161 (arguments
162 ;; FIXME: some tests does not return and times out.
163 '(#:tests? #f))
164 (home-page "https://www.github.com/giampaolo/psutil")
165 (synopsis "Library for retrieving information on running processes")
166 (description
167 "psutil (Python system and process utilities) is a library for retrieving
168information on running processes and system utilization (CPU, memory, disks,
169network) in Python. It is useful mainly for system monitoring, profiling and
170limiting process resources and management of running processes. It implements
171many functionalities offered by command line tools such as: ps, top, lsof,
172netstat, ifconfig, who, df, kill, free, nice, ionice, iostat, iotop, uptime,
173pidof, tty, taskset, pmap.")
174 (properties `((python2-variant . ,(delay python2-psutil))))
175 (license license:bsd-3)))
176
177(define-public python2-psutil
178 (let ((base (package-with-python2 (strip-python2-variant python-psutil))))
179 (package
180 (inherit base)
181 (propagated-inputs
182 `(("python2-enum34" ,python2-enum34) ;optional
183 ,@(package-propagated-inputs base))))))
184
185(define-public python-shapely
186 (package
187 (name "python-shapely")
188 (version "1.6.3")
189 (source
190 (origin
191 (method url-fetch)
192 (uri (pypi-uri "Shapely" version))
193 (sha256
194 (base32
195 "0svc58dzcw9gj92b4sgq35sdxkf85z0qwlzxarkzq4bp3h8jy58l"))))
196 (build-system python-build-system)
197 (native-inputs
198 `(("python-cython" ,python-cython)
199 ("python-matplotlib" ,python-matplotlib)
200 ("python-pytest" ,python-pytest)
201 ("python-pytest-cov" ,python-pytest-cov)))
202 (inputs
203 `(("geos" ,geos)))
204 (propagated-inputs
205 `(("python-numpy" ,python-numpy)))
206 (arguments
207 `(#:phases
208 (modify-phases %standard-phases
209 (add-after 'unpack 'patch-geos-path
210 (lambda* (#:key inputs #:allow-other-keys)
211 (let ((geos (assoc-ref inputs "geos"))
212 (glibc (assoc-ref inputs ,(if (%current-target-system)
213 "cross-libc" "libc"))))
214 (substitute* "shapely/geos.py"
215 (("_lgeos = load_dll\\('geos_c', fallbacks=.*\\)")
216 (string-append "_lgeos = load_dll('geos_c', fallbacks=['"
217 geos "/lib/libgeos_c.so'])"))
218 (("free = load_dll\\('c'\\)\\.free")
219 (string-append "free = load_dll('c', fallbacks=['"
220 glibc "/lib/libc.so.6']).free"))))
221 #t)))))
222 (home-page "https://github.com/Toblerity/Shapely")
223 (synopsis "Library for the manipulation and analysis of geometric objects")
224 (description "Shapely is a Python package for manipulation and analysis of
225planar geometric objects. It is based on the @code{GEOS} library.")
226 (license license:bsd-3)))
227
228(define-public python-logwrap
229 (package
230 (name "python-logwrap")
231 (version "3.2.1")
232 (source
233 (origin
234 (method url-fetch)
235 (uri (pypi-uri "logwrap" version ".zip"))
236 (sha256
237 (base32
238 "1d2k0hvpbi51vl410y8fbs5m0nxnlh2k7gr2nrh3k81ibhzscsra"))))
239 (build-system python-build-system)
240 (propagated-inputs
241 `(("python-six" ,python-six)
242 ("python-typing" ,python-typing)))
243 (native-inputs
244 `(("unzip" ,unzip)
245 ("python-cython" ,python-cython)
246 ("python-pytest" ,python-pytest)
247 ("python-pytest-cov" ,python-pytest-cov)
248 ("python-pytest-runner" ,python-pytest-runner)))
249 (home-page "https://github.com/penguinolog/logwrap")
250 (synopsis "Decorator for logging function arguments")
251 (description "This package provides a decorator to log function arguments
252and function call return values in a human-readable way.")
253 (license license:asl2.0)))
254
255(define-public python2-shapely
256 (package-with-python2 python-shapely))
257
258(define-public python-clyent
259 (package
260 (name "python-clyent")
261 (version "1.2.1")
262 (source
263 (origin
264 (method url-fetch)
265 (uri (pypi-uri "clyent" version))
266 (sha256
267 (base32
268 "1r9987qmy1pz3hq54160bapqsywpq14waw4w9x3ly8hmq7kpgfbj"))))
269 (build-system python-build-system)
270 (native-inputs
271 `(("python-mock" ,python-mock)))
272 (home-page "https://github.com/binstar/clyent")
273 (synopsis "Command line client library")
274 (description "Clyent is a Python command line utiliy library. It is used
275by @code{binstar}, @code{binstar-build} and @code{chalmers}.")
276 (license license:bsd-3)))
277
278(define-public python2-clyent
279 (package-with-python2 python-clyent))
280
281(define-public python-babel
282 (package
283 (name "python-babel")
284 (version "2.6.0")
285 (source
286 (origin
287 (method url-fetch)
288 (uri (pypi-uri "Babel" version))
289 (sha256
290 (base32
291 "08rxmbx2s4irp0w0gmn498vns5xy0fagm0fg33xa772jiks51flc"))))
292 (build-system python-build-system)
293 (native-inputs
294 `(("python-freezegun" ,python-freezegun)
295 ("python-pytest" ,python-pytest)))
296 (propagated-inputs
297 `(("python-pytz" ,python-pytz)))
298 (arguments
299 `(#:phases (modify-phases %standard-phases
300 (replace 'check
301 (lambda _ (invoke "pytest" "-vv"))))))
302 (home-page "http://babel.pocoo.org/")
303 (synopsis
304 "Tools for internationalizing Python applications")
305 (description
306 "Babel is composed of two major parts:
307- tools to build and work with gettext message catalogs
308- a Python interface to the CLDR (Common Locale Data Repository), providing
309access to various locale display names, localized number and date formatting,
310etc. ")
311 (license license:bsd-3)))
312
313(define-public python2-babel
314 (package-with-python2 python-babel))
315
316(define-public python2-backport-ssl-match-hostname
317 (package
318 (name "python2-backport-ssl-match-hostname")
319 (version "3.5.0.1")
320 (source
321 (origin
322 (method url-fetch)
323 (uri (string-append
324 "https://pypi.python.org/packages/source/b/"
325 "backports.ssl_match_hostname/backports.ssl_match_hostname-"
326 version ".tar.gz"))
327 (sha256
328 (base32
329 "1wndipik52cyqy0677zdgp90i435pmvwd89cz98lm7ri0y3xjajh"))))
330 (build-system python-build-system)
331 (arguments
332 `(#:python ,python-2
333 #:tests? #f)) ; no test target
334 (home-page "https://bitbucket.org/brandon/backports.ssl_match_hostname")
335 (synopsis "Backport of ssl.match_hostname() function from Python 3.5")
336 (description
337 "This backport brings the ssl.match_hostname() function to users of
338earlier versions of Python. The function checks the hostname in the
339certificate returned by the server to which a connection has been established,
340and verifies that it matches the intended target hostname.")
341 (license license:psfl)))
342
343(define-public python-hdf4
344 (package
345 (name "python-hdf4")
346 (version "0.9")
347 (source
348 (origin
349 (method url-fetch)
350 (uri (pypi-uri name version))
351 (sha256
352 (base32
353 "1hjiyrxvxk9817qyqky3nar4y3fs4z8wxz0n884zzb5wi6skrjks"))))
354 (build-system python-build-system)
355 (native-inputs `(("nose" ,python-nose)))
356 (propagated-inputs `(("numpy" ,python-numpy)))
357 (inputs
358 `(("hdf4" ,hdf4)
359 ("libjpeg" ,libjpeg)
360 ("zlib" ,zlib)))
361 (arguments
362 `(#:phases
363 (modify-phases %standard-phases
364 (replace 'check
365 (lambda _
366 ;; The 'runexamples' script sets PYTHONPATH to CWD, then goes
367 ;; on to import numpy. Somehow this works on their CI system.
368 ;; Let's just manage PYTHONPATH here instead.
369 (substitute* "runexamples.sh"
370 (("export PYTHONPATH=.*") ""))
371 (setenv "PYTHONPATH"
372 (string-append (getcwd) ":"
373 (getenv "PYTHONPATH")))
374 (invoke "./runexamples.sh")
375 (invoke "nosetests" "-v"))))))
376 (home-page "https://github.com/fhs/python-hdf4")
377 (synopsis "Python interface to the NCSA HDF4 library")
378 (description
379 "Python-HDF4 is a python wrapper around the NCSA HDF version 4 library,
380which implements the SD (Scientific Dataset), VS (Vdata) and V (Vgroup) API’s.
381NetCDF files can also be read and modified. Python-HDF4 is a fork of
382@url{http://hdfeos.org/software/pyhdf.php,pyhdf}.")
383 (license license:expat)))
384
385(define-public python2-hdf4
386 (package-with-python2 python-hdf4))
387
388(define-public python-h5py
389 (package
390 (name "python-h5py")
391 (version "2.8.0")
392 (source
393 (origin
394 (method url-fetch)
395 (uri (pypi-uri "h5py" version))
396 (sha256
397 (base32
398 "0mdr6wrq02ac93m1aqx9kad0ppfzmm4imlxqgyy1x4l7hmdcc9p6"))))
399 (build-system python-build-system)
400 (arguments
401 `(#:tests? #f ; no test target
402 #:phases
403 (modify-phases %standard-phases
404 (add-after 'unpack 'fix-hdf5-paths
405 (lambda* (#:key inputs #:allow-other-keys)
406 (let ((prefix (assoc-ref inputs "hdf5")))
407 (substitute* "setup_build.py"
408 (("\\['/opt/local/lib', '/usr/local/lib'\\]")
409 (string-append "['" prefix "/lib" "']"))
410 (("'/opt/local/include', '/usr/local/include'")
411 (string-append "'" prefix "/include" "'")))
412 (substitute* "setup_configure.py"
413 (("\\['/usr/local/lib', '/opt/local/lib'\\]")
414 (string-append "['" prefix "/lib" "']")))
415 #t))))))
416 (propagated-inputs
417 `(("python-six" ,python-six)
418 ("python-numpy" ,python-numpy)))
419 (inputs
420 `(("hdf5" ,hdf5)))
421 (native-inputs
422 `(("python-cython" ,python-cython)
423 ("python-pkgconfig" ,python-pkgconfig)))
424 (home-page "http://www.h5py.org/")
425 (synopsis "Read and write HDF5 files from Python")
426 (description
427 "The h5py package provides both a high- and low-level interface to the
428HDF5 library from Python. The low-level interface is intended to be a
429complete wrapping of the HDF5 API, while the high-level component supports
430access to HDF5 files, datasets and groups using established Python and NumPy
431concepts.")
432 (license license:bsd-3)))
433
434(define-public python2-h5py
435 (package-with-python2 python-h5py))
436
437(define-public python-netcdf4
438 (package
439 (name "python-netcdf4")
440 (version "1.2.9")
441 (source
442 (origin
443 (method url-fetch)
444 (uri (pypi-uri "netCDF4" version))
445 (sha256
446 (base32
447 "1h6jq338amlbk0ilzvjyl7cck80i0bah9a5spn9in71vy2qxm7i5"))))
448 (build-system python-build-system)
449 (native-inputs
450 `(("python-cython" ,python-cython)))
451 (propagated-inputs
452 `(("python-numpy" ,python-numpy)))
453 (inputs
454 `(("netcdf" ,netcdf)
455 ("hdf4" ,hdf4)
456 ("hdf5" ,hdf5)))
457 (arguments
458 '(#:phases
459 (modify-phases %standard-phases
460 (replace 'check
461 (lambda _
462 (setenv "NO_NET" "1") ; disable opendap tests
463 (with-directory-excursion "test"
464 (setenv "PYTHONPATH" ; find and add the library we just built
465 (string-append
466 (car (find-files "../build" "lib.*"
467 #:directories? #:t
468 #:fail-on-error? #:t))
469 ":" (getenv "PYTHONPATH")))
470 (zero? (system* "python" "run_all.py"))))))))
471 (home-page
472 "https://github.com/Unidata/netcdf4-python")
473 (synopsis "Python/numpy interface to the netCDF library")
474 (description "Netcdf4-python is a Python interface to the netCDF C
475library. netCDF version 4 has many features not found in earlier
476versions of the library and is implemented on top of HDF5. This module
477can read and write files in both the new netCDF 4 and the old netCDF 3
478format, and can create files that are readable by HDF5 clients. The
479API is modelled after @code{Scientific.IO.NetCDF}, and should be familiar
480to users of that module.")
481 ;; The software is mainly ISC, but includes some files covered
482 ;; by the Expat license.
483 (license (list license:isc license:expat))))
484
485(define-public python2-netcdf4
486 (package-with-python2 python-netcdf4))
487
488(define-public python-lockfile
489 (package
490 (name "python-lockfile")
491 (version "0.12.2")
492 (source
493 (origin
494 (method url-fetch)
495 (uri (string-append "https://pypi.python.org/packages/source/l/lockfile/"
496 "lockfile-" version ".tar.gz"))
497 (sha256
498 (base32
499 "16gpx5hm73ah5n1079ng0vy381hl802v606npkx4x8nb0gg05vba"))))
500 (build-system python-build-system)
501 (arguments '(#:test-target "check"))
502 (native-inputs
503 `(("python-pbr" ,python-pbr)))
504 (home-page "https://launchpad.net/pylockfile")
505 (synopsis "Platform-independent file locking module")
506 (description
507 "The lockfile package exports a LockFile class which provides a simple
508API for locking files.")
509 (license license:expat)))
510
511(define-public python2-lockfile
512 (package-with-python2 python-lockfile))
513
514(define-public python-semantic-version
515 (package
516 (name "python-semantic-version")
517 (version "2.6.0")
518 (source
519 (origin
520 (method url-fetch)
521 (uri (pypi-uri "semantic_version" version))
522 (sha256
523 (base32
524 "1h2l9xyg1zzsda6kjcmfcgycbvrafwci283vcr1v5sbk01l2hhra"))))
525 (build-system python-build-system)
526 (arguments
527 `(#:tests? #f)) ; PyPI tarball lacks tests
528 (home-page "https://github.com/rbarrois/python-semanticversion")
529 (synopsis "Semantic versioning module for Python")
530 (description
531 "The @code{semantic_version} class is a small library for handling
532@uref{https://semver.org/, semantic versioning} (@dfn{SemVer}) in Python.
533
534It can compare versions, generate a new version that represents a bump in one of
535the version levels, and check whether any given string is a proper semantic
536version identifier.")
537 (license license:bsd-3)))
538
539(define-public python2-semantic-version
540 (package-with-python2 python-semantic-version))
541
542(define-public python-serpent
543 (package
544 (name "python-serpent")
545 (version "1.27")
546 (source
547 (origin
548 (method url-fetch)
549 (uri (pypi-uri "serpent" version))
550 (sha256
551 (base32
552 "04p9dsrm5pv8vhk3flvih55kgvlzpi38hlaykdiakddmgwqw93bg"))))
553 (build-system python-build-system)
554 (home-page "https://github.com/irmen/Serpent")
555 (synopsis "Serializer for literal Python expressions")
556 (description
557 "Serpent provides ast.literal_eval() compatible object tree
558serialization. It serializes an object tree into bytes (utf-8 encoded string)
559that can be decoded and then passed as-is to ast.literal_eval() to rebuild it
560as the original object tree. As such it is safe to send serpent data to other
561machines over the network for instance (because only safe literals are
562encoded).")
563 (license license:expat)))
564
565(define-public python-setuptools
566 (package
567 (name "python-setuptools")
568 (version "40.0.0")
569 (source
570 (origin
571 (method url-fetch)
572 (uri (pypi-uri "setuptools" version ".zip"))
573 (sha256
574 (base32
575 "0pq116lr14gnc62v76nk0npkm6krb2mpp7p9ab369zgv4n7dnah1"))
576 (modules '((guix build utils)))
577 (snippet
578 '(begin
579 ;; Remove included binaries which are used to build self-extracting
580 ;; installers for Windows.
581 ;; TODO: Find some way to build them ourself so we can include them.
582 (for-each delete-file (find-files "setuptools" "^(cli|gui).*\\.exe$"))
583 #t))))
584 (build-system python-build-system)
585 ;; FIXME: Tests require pytest, which itself relies on setuptools.
586 ;; One could bootstrap with an internal untested setuptools.
587 (arguments
588 `(#:tests? #f))
589 (home-page "https://pypi.python.org/pypi/setuptools")
590 (synopsis
591 "Library designed to facilitate packaging Python projects")
592 (description
593 "Setuptools is a fully-featured, stable library designed to facilitate
594packaging Python projects, where packaging includes:
595Python package and module definitions,
596distribution package metadata,
597test hooks,
598project installation,
599platform-specific details,
600Python 3 support.")
601 ;; TODO: setuptools now bundles the following libraries:
602 ;; packaging, pyparsing, six and appdirs. How to unbundle?
603 (license (list license:psfl ; setuptools itself
604 license:expat ; six, appdirs, pyparsing
605 license:asl2.0 ; packaging is dual ASL2/BSD-2
606 license:bsd-2))))
607
608(define-public python2-setuptools
609 (package-with-python2 python-setuptools))
610
611(define-public python-uniseg
612 (package
613 (name "python-uniseg")
614 (version "0.7.1")
615 (source
616 (origin
617 (method url-fetch)
618 (uri (pypi-uri "uniseg" version ".zip"))
619 (sha256
620 (base32
621 "05jsazvz6nbmh6l3v1rph5ydkqn1hzx1pyggdyvgp2qgmgrnmiz2"))))
622 (build-system python-build-system)
623 (arguments
624 '(#:tests? #f)) ; The test suite requires network access.
625 (native-inputs
626 `(("unzip" ,unzip)))
627 (home-page
628 "https://bitbucket.org/emptypage/uniseg-python")
629 (synopsis
630 "Python library to determine Unicode text segmentations")
631 (description
632 "Uniseg is a Python package used to determine Unicode text segmentations.
633Supported segmentations include:
634@enumerate
635@item @dfn{Code point} (any value in the Unicode codespace)
636@item @dfn{Grapheme cluster} (user-perceived character made of a single or
637multiple Unicode code points, e.g. \"G\" + acute-accent)
638@item Word break
639@item Sentence break
640@item Line break
641@end enumerate")
642 (license license:expat)))
643
644(define-public python2-uniseg
645 (package-with-python2 python-uniseg))
646
647(define-public python-humanfriendly
648 (package
649 (name "python-humanfriendly")
650 (version "4.4.1")
651 (source
652 (origin
653 (method url-fetch)
654 (uri (pypi-uri "humanfriendly" version))
655 (sha256
656 (base32
657 "0pisgizjql86785jchfjv217g0lsgk114g2lja5j4y3lsc3b9szi"))))
658 (build-system python-build-system)
659 (arguments
660 `(;; XXX: Tests depend on coloredlogs, which in turn depends on humanfriendly.
661 #:tests? #f))
662 (propagated-inputs
663 `(("python-monotonic" ,python-monotonic)))
664 (home-page "https://humanfriendly.readthedocs.io")
665 (synopsis "Human-friendly input and output in Python")
666 (description
667 "The functions and classes in @code{humanfriendly} can be used to make
668text interfaces more user-friendly. It includes tools to parse and format
669numbers, file sizes, and timespans, timers for long-running operations, menus
670to allow the user to choose from a list of options, and terminal interaction
671helpers.")
672 (license license:expat)))
673
674(define-public python2-humanfriendly
675 (package-with-python2 python-humanfriendly))
676
677(define-public python-capturer
678 (package
679 (name "python-capturer")
680 (version "2.4")
681 (source
682 (origin
683 (method url-fetch)
684 (uri (pypi-uri "capturer" version))
685 (sha256
686 (base32
687 "05d6ji4j8ipiq0br7bwam38qc6hd9l1djmfxlzrxx19ziyjl4089"))))
688 (build-system python-build-system)
689 (arguments
690 `(#:tests? #f))
691 (propagated-inputs
692 `(("python-humanfriendly" ,python-humanfriendly)))
693 (home-page "https://capturer.readthedocs.io")
694 (synopsis "Capture stdout and stderr streams of the current process")
695 (description
696 "The capturer package makes it easy to capture the stdout and stderr
697streams of the current process and subprocesses. Output can be relayed
698to the terminal in real time but is also available to the Python program
699for additional processing.")
700 (license license:expat)))
701
702(define-public python2-capturer
703 (package-with-python2 python-capturer))
704
705(define-public python-case
706 (package
707 (name "python-case")
708 (version "1.5.3")
709 (source
710 (origin
711 (method url-fetch)
712 (uri (pypi-uri "case" version))
713 (sha256
714 (base32
715 "1cagg06vfph864s6l5jb0zqliwxh647bki8j6lf4a4qrv40jnhs8"))))
716 (build-system python-build-system)
717 (propagated-inputs
718 `(("python-mock" ,python-mock)
719 ("python-nose" ,python-nose)
720 ("python-six" ,python-six)
721 ("python-unittest2" ,python-unittest2)))
722 (native-inputs
723 `(("python-coverage" ,python-coverage)))
724 (home-page "https://github.com/celery/case")
725 (synopsis "Unittest utilities and convenience methods")
726 (description
727 "The @code{case} package provides utilities on top of unittest, including
728some helpful Python 2 compatibility convenience methods.")
729 (license license:bsd-3)))
730
731(define-public python-verboselogs
732 (package
733 (name "python-verboselogs")
734 (version "1.7")
735 (source
736 (origin
737 (method url-fetch)
738 (uri (pypi-uri "verboselogs" version))
739 (sha256
740 (base32
741 "09z4d1jiasn7k1hs5af2ckmnrd0i1d1m04bhfjhv7z6svzfdwgg3"))))
742 (build-system python-build-system)
743 (native-inputs
744 `(("python-mock" ,python-mock)
745 ("python-astroid" ,python-astroid)
746 ("python-pylint" ,python-pylint)))
747 (home-page "https://verboselogs.readthedocs.io")
748 (synopsis "Verbose logging level for Python's logging module")
749 (description
750 "The @code{verboselogs} package extends Python's @code{logging} module to
751add the log levels NOTICE, SPAM, SUCCESS and VERBOSE.")
752 (license license:expat)))
753
754(define-public python2-verboselogs
755 (package-with-python2 python-verboselogs))
756
757(define-public python-coloredlogs
758 (package
759 (name "python-coloredlogs")
760 (version "7.3")
761 (source
762 (origin
763 (method url-fetch)
764 (uri (pypi-uri "coloredlogs" version))
765 (sha256
766 (base32
767 "1blcann6dyg5dhps9pg12rn0q0rjrlajpmmil0gy0j4cbvnl2il9"))))
768 (build-system python-build-system)
769 (arguments
770 `(;Tests require some updated modules
771 #:tests? #f))
772 (propagated-inputs
773 `(("python-capturer" ,python-capturer)))
774 (home-page "https://coloredlogs.readthedocs.io")
775 (synopsis "Colored stream handler for Python's logging module")
776 (description
777 "The @code{coloredlogs} package enables colored terminal output for
778Python's logging module. The @code{ColoredFormatter} class inherits from
779@code{logging.Formatter} and uses ANSI escape sequences to render your logging
780messages in color.")
781 (license license:expat)))
782
783(define-public python2-coloredlogs
784 (package-with-python2 python-coloredlogs))
785
786(define-public python-eventlet
787 (package
788 (name "python-eventlet")
789 (version "0.20.1")
790 (source
791 (origin
792 (method url-fetch)
793 (uri (pypi-uri "eventlet" version))
794 (sha256
795 (base32
796 "0f3q55mq4n021wb7qa53pz3ix6i2py64sap66vsaqm2scjw83m9s"))))
797 (build-system python-build-system)
798 (propagated-inputs
799 `(("python-greenlet" ,python-greenlet)))
800 (arguments
801 ;; TODO: Requires unpackaged 'enum-compat'.
802 '(#:tests? #f))
803 (home-page "http://eventlet.net")
804 (synopsis "Concurrent networking library for Python")
805 (description
806 "Eventlet is a concurrent networking library for Python that
807allows you to change how you run your code, not how you write it.
808It uses @code{epoll} or @code{libevent} for highly scalable non-blocking I/O.
809Coroutines ensure that the developer uses a blocking style of programming
810that is similar to threading, but provide the benefits of non-blocking I/O.
811The event dispatch is implicit, which means you can easily use @code{Eventlet}
812from the Python interpreter, or as a small part of a larger application.")
813 (license license:expat)))
814
815(define-public python2-eventlet
816 (let ((base (package-with-python2
817 (strip-python2-variant python-eventlet))))
818 (package (inherit base)
819 (propagated-inputs
820 `(("python2-enum34" ,python2-enum34)
821 ,@(package-propagated-inputs base))))))
822
823(define-public python-six
824 (package
825 (name "python-six")
826 (version "1.11.0")
827 (source
828 (origin
829 (method url-fetch)
830 (uri (pypi-uri "six" version))
831 (sha256
832 (base32
833 "1scqzwc51c875z23phj48gircqjgnn3af8zy2izjwmnlxrxsgs3h"))))
834 (build-system python-build-system)
835 (arguments
836 `(#:phases
837 (modify-phases %standard-phases
838 (replace 'check
839 (lambda _
840 (invoke "py.test" "-v"))))))
841 (native-inputs
842 `(("python-py" ,python-py)
843 ("python-pytest" ,python-pytest-bootstrap)))
844 (home-page "https://pypi.python.org/pypi/six/")
845 (synopsis "Python 2 and 3 compatibility utilities")
846 (description
847 "Six is a Python 2 and 3 compatibility library. It provides utility
848functions for smoothing over the differences between the Python versions with
849the goal of writing Python code that is compatible on both Python versions.
850Six supports every Python version since 2.5. It is contained in only one
851Python file, so it can be easily copied into your project.")
852 (license license:x11)))
853
854(define-public python2-six
855 (package-with-python2 python-six))
856
857(define-public python-six-bootstrap
858 (package
859 (inherit python-six)
860 (name "python-six-bootstrap")
861 (native-inputs `())
862 (arguments `(#:tests? #f))))
863
864(define-public python2-six-bootstrap
865 (package-with-python2 python-six-bootstrap))
866
867(define-public python-schedule
868 (package
869 (name "python-schedule")
870 (version "0.4.3")
871 (source
872 (origin
873 (method url-fetch)
874 (uri (pypi-uri "schedule" version))
875 (sha256
876 (base32
877 "0vplyjcbfrq50sphlwya749z8p2pcyi2nycw3518i0qpd9a6189i"))))
878 (build-system python-build-system)
879 (native-inputs
880 `(("python-pytest" ,python-pytest)
881 ("python-mock" ,python-mock)))
882 (home-page "https://github.com/dbader/schedule")
883 (synopsis "Schedule periodic function calls in Python")
884 (description
885 "Schedule is an in-process scheduler for periodic jobs that uses the
886builder pattern for configuration. Schedule lets you run Python functions (or
887any other callable) periodically at pre-determined intervals using a simple,
888human-friendly syntax.")
889 (license license:expat)))
890
891(define-public python2-schedule
892 (package-with-python2 python-schedule))
893
894(define-public python-pandas
895 (package
896 (name "python-pandas")
897 (version "0.23.4")
898 (source
899 (origin
900 (method url-fetch)
901 (uri (pypi-uri "pandas" version))
902 (sha256
903 (base32 "1x54pd7hr3y7qahx6b5bf2wzj54xvl8r3s1h4pl254pnmi3wl92v"))))
904 (build-system python-build-system)
905 (arguments
906 `(#:modules ((guix build utils)
907 (guix build python-build-system)
908 (ice-9 ftw)
909 (srfi srfi-26))
910 #:phases (modify-phases %standard-phases
911 (replace 'check
912 (lambda _
913 (let ((build-directory
914 (string-append
915 (getcwd) "/build/"
916 (car (scandir "build"
917 (cut string-prefix? "lib." <>))))))
918 ;; Disable the "strict data files" option which causes
919 ;; the build to error out if required data files are not
920 ;; available (as is the case with PyPI archives).
921 (substitute* "setup.cfg"
922 (("addopts = --strict-data-files") "addopts = "))
923 (with-directory-excursion build-directory
924 ;; Delete tests that require "moto" which is not yet in Guix.
925 (for-each delete-file
926 '("pandas/tests/io/conftest.py"
927 "pandas/tests/io/json/test_compression.py"
928 "pandas/tests/io/parser/test_network.py"
929 "pandas/tests/io/test_excel.py"
930 "pandas/tests/io/test_parquet.py"))
931 (invoke "pytest" "-vv" "pandas" "--skip-slow"
932 "--skip-network" "-k"
933 ;; XXX: Due to the deleted tests above.
934 "not test_read_s3_jsonl"))))))))
935 (propagated-inputs
936 `(("python-numpy" ,python-numpy)
937 ("python-pytz" ,python-pytz)
938 ("python-dateutil" ,python-dateutil)))
939 (native-inputs
940 `(("python-cython" ,python-cython)
941 ("python-beautifulsoup4" ,python-beautifulsoup4)
942 ("python-lxml" ,python-lxml)
943 ("python-html5lib" ,python-html5lib)
944 ("python-nose" ,python-nose)
945 ("python-pytest" ,python-pytest)))
946 (home-page "https://pandas.pydata.org")
947 (synopsis "Data structures for data analysis, time series, and statistics")
948 (description
949 "Pandas is a Python package providing fast, flexible, and expressive data
950structures designed to make working with structured (tabular,
951multidimensional, potentially heterogeneous) and time series data both easy
952and intuitive. It aims to be the fundamental high-level building block for
953doing practical, real world data analysis in Python.")
954 (license license:bsd-3)))
955
956(define-public python2-pandas
957 (package-with-python2 python-pandas))
958
959(define-public python2-mechanize
960 (package
961 (name "python2-mechanize")
962 (version "0.2.5")
963 (source
964 (origin
965 (method url-fetch)
966 (uri (string-append "https://pypi.python.org/packages/source/m/mechanize/mechanize-"
967 version ".tar.gz"))
968 (sha256
969 (base32
970 "0rj7r166i1dyrq0ihm5rijfmvhs8a04im28lv05c0c3v206v4rrf"))))
971 (build-system python-build-system)
972 (arguments
973 `(#:python ,python-2 ; apparently incompatible with Python 3
974 #:tests? #f))
975 ;; test fails with message
976 ;; AttributeError: 'module' object has no attribute 'test_pullparser'
977 ;; (python-3.3.2) or
978 ;; AttributeError: 'module' object has no attribute 'test_urllib2_localnet'
979 ;; (python-2.7.5).
980 ;; The source code is from March 2011 and probably not up-to-date
981 ;; with respect to python unit tests.
982 (home-page "http://wwwsearch.sourceforge.net/mechanize/")
983 (synopsis
984 "Stateful programmatic web browsing in Python")
985 (description
986 "Mechanize implements stateful programmatic web browsing in Python,
987after Andy Lester’s Perl module WWW::Mechanize.")
988 (license (license:non-copyleft
989 "file://COPYING"
990 "See COPYING in the distribution."))))
991
992
993(define-public python-simplejson
994 (package
995 (name "python-simplejson")
996 (version "3.14.0")
997 (source
998 (origin
999 (method url-fetch)
1000 (uri (pypi-uri "simplejson" version))
1001 (sha256
1002 (base32
1003 "1lkv3xlf7ryzi69zqfdbkvpxdfy1rg1rq2yzcnxgf4km5m6difqy"))))
1004 (build-system python-build-system)
1005 (home-page "http://simplejson.readthedocs.org/en/latest/")
1006 (synopsis
1007 "Json library for Python")
1008 (description
1009 "JSON (JavaScript Object Notation) is a subset of JavaScript
1010syntax (ECMA-262 3rd edition) used as a lightweight data interchange
1011format.
1012
1013Simplejson exposes an API familiar to users of the standard library marshal
1014and pickle modules. It is the externally maintained version of the json
1015library contained in Python 2.6, but maintains compatibility with Python 2.5
1016and (currently) has significant performance advantages, even without using
1017the optional C extension for speedups. Simplejson is also supported on
1018Python 3.3+.")
1019 (license license:x11)))
1020
1021(define-public python2-simplejson
1022 (package-with-python2 python-simplejson))
1023
1024
1025(define-public python-pyicu
1026 (package
1027 (name "python-pyicu")
1028 (version "2.2")
1029 (source
1030 (origin
1031 (method url-fetch)
1032 (uri (pypi-uri "PyICU" version))
1033 (sha256
1034 (base32
1035 "0wq9y5fi1ighgf5aws9nr87vi1w44p7q1k83rx2y3qj5d2xyhspa"))))
1036 (build-system python-build-system)
1037 (inputs
1038 `(("icu4c" ,icu4c)))
1039 (native-inputs
1040 `(("python-pytest" ,python-pytest)
1041 ("python-six" ,python-six)))
1042 (home-page "https://github.com/ovalhub/pyicu")
1043 (synopsis "Python extension wrapping the ICU C++ API")
1044 (description
1045 "PyICU is a python extension wrapping the ICU C++ API.")
1046 (properties `((python2-variant . ,(delay python2-pyicu))))
1047 (license license:x11)))
1048
1049(define-public python2-pyicu
1050 (let ((base (package-with-python2
1051 (strip-python2-variant python-pyicu))))
1052 (package
1053 (inherit base)
1054 (arguments
1055 `(,@(package-arguments base)
1056 #:phases
1057 (modify-phases %standard-phases
1058 (add-before 'check 'delete-failing-test
1059 (λ _
1060 ;; XXX: This fails due to Unicode issues unique to Python 2,
1061 ;; it seems: <https://github.com/ovalhub/pyicu/issues/61>.
1062 (delete-file "test/test_Script.py")
1063 #t))))))))
1064
1065(define-public python2-dogtail
1066 ;; Python 2 only, as it leads to "TabError: inconsistent use of tabs and
1067 ;; spaces in indentation" with Python 3.
1068 (package
1069 (name "python2-dogtail")
1070 (version "0.9.9")
1071 (source (origin
1072 (method url-fetch)
1073 (uri (pypi-uri "dogtail" version))
1074 (sha256
1075 (base32
1076 "0p5wfssvzr9w0bvhllzbbd8fnp4cca2qxcpcsc33dchrmh5n552x"))))
1077 (build-system python-build-system)
1078 (arguments `(#:python ,python-2
1079 #:tests? #f)) ; invalid command "test"
1080 ;; Currently no offical homepage.
1081 (home-page "https://pypi.python.org/pypi/dogtail/")
1082 (synopsis "GUI test tool and automation framework written in Python")
1083 (description
1084 "Dogtail is a GUI test tool and automation framework written in Python.
1085It uses Accessibility (a11y) technologies to communicate with desktop
1086applications. dogtail scripts are written in Python and executed like any
1087other Python program.")
1088 (license license:gpl2+)))
1089
1090(define-public python-empy
1091 (package
1092 (name "python-empy")
1093 (version "3.3")
1094 (source (origin
1095 (method url-fetch)
1096 (uri (string-append "http://www.alcyone.com/software/empy/empy-"
1097 version ".tar.gz"))
1098 (sha256
1099 (base32
1100 "01g8mmkfnvjdmlhsihwyx56lrg7r5m5d2fg6mnxsvy6g0dnl69f6"))))
1101 (build-system python-build-system)
1102 (arguments
1103 `(#:tests? #f)) ;python2 only
1104 (home-page "http://www.alcyone.com/software/empy/")
1105 (synopsis "Templating system for Python")
1106 (description
1107 "EmPy is a system for embedding Python expressions and statements in
1108template text; it takes an EmPy source file, processes it, and produces
1109output. This is accomplished via expansions, which are special signals to the
1110EmPy system and are set off by a special prefix (by default the at sign, @@).
1111EmPy can expand arbitrary Python expressions and statements in this way, as
1112well as a variety of special forms. Textual data not explicitly delimited in
1113this way is sent unaffected to the output, allowing Python to be used in
1114effect as a markup language. Also supported are callbacks via hooks,
1115recording and playback via diversions, and dynamic, chainable filters. The
1116system is highly configurable via command line options and embedded
1117commands.")
1118 (license license:lgpl2.1+)))
1119
1120(define-public python2-empy
1121 (package-with-python2 python-empy))
1122
1123(define-public python2-element-tree
1124 (package
1125 (name "python2-element-tree")
1126 (version "1.2.6")
1127 (source (origin
1128 (method url-fetch)
1129 (uri (string-append
1130 "http://effbot.org/media/downloads/elementtree-"
1131 version "-20050316.tar.gz"))
1132 (sha256
1133 (base32
1134 "016bphqnlg0l4vslahhw4r0aanw95bpypy65r1i1acyb2wj5z7dj"))))
1135 (build-system python-build-system)
1136 (arguments
1137 `(#:python ,python-2 ; seems to be part of Python 3
1138 #:tests? #f)) ; no 'test' sub-command
1139 (synopsis "Toolkit for XML processing in Python")
1140 (description
1141 "ElementTree is a Python library supporting lightweight XML processing.")
1142 (home-page "http://effbot.org/zone/element-index.htm")
1143 (license (license:x11-style
1144 "http://docs.python.org/2/license.html"
1145 "Like \"CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2\"."))))
1146
1147(define-public python2-pybugz
1148 (package
1149 (name "python2-pybugz")
1150 (version "0.6.11")
1151 (source (origin
1152 (method url-fetch)
1153 (uri (string-append
1154 "http://bits.liquidx.net/projects/pybugz/pybugz-"
1155 version ".tar.gz"))
1156 (sha256
1157 (base32
1158 "17ni00p08gp5lkxlrrcnvi3x09fmajnlbz4da03qcgl9q21ym4jd"))
1159 (patches (search-patches "pybugz-stty.patch"
1160 "pybugz-encode-error.patch"))))
1161 (build-system python-build-system)
1162 (arguments
1163 `(#:python ,python-2 ; SyntaxError with Python 3
1164 #:tests? #f)) ; no 'test' sub-command
1165 (propagated-inputs
1166 `(("element-tree" ,python2-element-tree)))
1167 (synopsis "Python and command-line interface to Bugzilla")
1168 (description
1169 "PyBugz is a Python library and command-line tool to query the Bugzilla
1170bug tracking system. It is meant as an aid to speed up interaction with the
1171bug tracker.")
1172 (home-page "http://www.liquidx.net/pybugz/")
1173 (license license:gpl2)))
1174
1175(define-public python2-enum
1176 (package
1177 (name "python2-enum")
1178 (version "0.4.6")
1179 (source (origin
1180 (method url-fetch)
1181 (uri (pypi-uri "enum" version))
1182 (sha256
1183 (base32
1184 "13lk3yrwj42vl30kw3c194f739nrfrdg64s6i0v2p636n4k8brsl"))))
1185 (build-system python-build-system)
1186 (arguments
1187 `(#:python ,python-2))
1188 (home-page "http://pypi.python.org/pypi/enum/")
1189 (synopsis "Robust enumerated type support in Python")
1190 (description
1191 "This provides a module for robust enumerations in Python. It has
1192been superseded by the Python standard library and is provided only for
1193compatibility.")
1194 ;; Choice of either license.
1195 (license (list license:gpl3+ license:psfl))))
1196
1197(define-public python-enum34
1198 (package
1199 (name "python-enum34")
1200 (version "1.1.6")
1201 (source
1202 (origin
1203 (method url-fetch)
1204 (uri (pypi-uri "enum34" version))
1205 (sha256
1206 (base32
1207 "1cgm5ng2gcfrkrm3hc22brl6chdmv67b9zvva9sfs7gn7dwc9n4a"))))
1208 (build-system python-build-system)
1209 (home-page "https://pypi.python.org/pypi/enum34")
1210 (synopsis "Backported Python 3.4 Enum")
1211 (description
1212 "Enum34 is the new Python stdlib enum module available in Python 3.4
1213backported for previous versions of Python from 2.4 to 3.3.")
1214 (license license:bsd-3)))
1215
1216(define-public python2-enum34
1217 (package-with-python2 python-enum34))
1218
1219(define-public python-parse-type
1220 (package
1221 (name "python-parse-type")
1222 (version "0.4.2")
1223 (source
1224 (origin
1225 (method url-fetch)
1226 (uri (pypi-uri "parse_type" version))
1227 (sha256
1228 (base32
1229 "0g3b6gsdwnm8dpkh2vn34q6dzxm9gl908ggyzcv31n9xbp3vv5pm"))))
1230 (build-system python-build-system)
1231 (propagated-inputs
1232 `(("python-six" ,python-six)
1233 ("python-parse" ,python-parse)))
1234 (native-inputs
1235 `(("python-pytest" ,python-pytest)
1236 ("python-pytest-runner" ,python-pytest-runner)))
1237 (home-page "https://github.com/jenisys/parse_type")
1238 (synopsis "Extended parse module")
1239 (description
1240 "Parse_type extends the python parse module.")
1241 (properties
1242 `((python2-variant . ,(delay python2-parse-type))))
1243 (license license:bsd-3)))
1244
1245(define-public python2-parse-type
1246 (let ((base (package-with-python2
1247 (strip-python2-variant python-parse-type))))
1248 (package (inherit base)
1249 (propagated-inputs
1250 `(("python2-enum34" ,python2-enum34)
1251 ,@(package-propagated-inputs base))))))
1252
1253(define-public python-parse
1254 (package
1255 (name "python-parse")
1256 (version "1.8.4")
1257 (source
1258 (origin
1259 (method url-fetch)
1260 (uri (pypi-uri "parse" version))
1261 (sha256
1262 (base32
1263 "0f8997xr8nq2nq35iiviq8ningd1zvy59fg503xfpbi2dwhgdkf3"))))
1264 (build-system python-build-system)
1265 (arguments
1266 `(#:phases
1267 (modify-phases %standard-phases
1268 (replace 'check
1269 (lambda _ (invoke "python" "test_parse.py"))))))
1270 (home-page "https://github.com/r1chardj0n3s/parse")
1271 (synopsis "Parse strings")
1272 (description
1273 "Parse strings using a specification based on the Python @code{format()}
1274syntax.")
1275 (license license:x11)))
1276
1277(define-public python-polib
1278 (package
1279 (name "python-polib")
1280 (version "1.0.8")
1281 (source (origin
1282 (method url-fetch)
1283 (uri (pypi-uri "polib" version))
1284 (sha256
1285 (base32
1286 "1pq2hbm3m2q0cjdszk8mc4qa1vl3wcblh5nfyirlfnzb2pcy7zss"))))
1287 (build-system python-build-system)
1288 (home-page "https://bitbucket.org/izi/polib/wiki/Home")
1289 (synopsis "Manipulate, create and modify gettext files")
1290 (description "Polib can manipulate any gettext format (po, pot and mo)
1291files. It can be used to create po files from scratch or to modify
1292existing ones.")
1293 (license license:expat)))
1294
1295(define-public python2-polib
1296 (let ((base (package-with-python2 (strip-python2-variant python-polib))))
1297 (package
1298 (inherit base)
1299 (arguments `(,@(package-arguments base)
1300 ;; Tests don't work with python2.
1301 #:tests? #f)))))
1302
1303(define-public scons
1304 (package
1305 (name "scons")
1306 (version "3.0.1")
1307 (source (origin
1308 (method url-fetch)
1309 (uri (string-append "mirror://sourceforge/scons/scons/" version
1310 "/scons-" version ".tar.gz"))
1311 (sha256
1312 (base32
1313 "0wzid419mlwqw9llrg8gsx4nkzhqy16m4m40r0xnh6cwscw5wir4"))))
1314 (build-system python-build-system)
1315 (arguments
1316 `(#:use-setuptools? #f ; still relies on distutils
1317 #:tests? #f)) ; no 'python setup.py test' command
1318 (home-page "http://scons.org/")
1319 (synopsis "Software construction tool written in Python")
1320 (description
1321 "SCons is a software construction tool. Think of SCons as an improved,
1322cross-platform substitute for the classic Make utility with integrated
1323functionality similar to autoconf/automake and compiler caches such as ccache.
1324In short, SCons is an easier, more reliable and faster way to build
1325software.")
1326 (license license:x11)))
1327
1328(define-public scons-python2
1329 (package
1330 (inherit (package-with-python2 scons))
1331 (name "scons-python2")))
1332
1333(define-public python-extras
1334 (package
1335 (name "python-extras")
1336 (version "1.0.0")
1337 (source
1338 (origin
1339 (method url-fetch)
1340 (uri (pypi-uri "extras" version))
1341 (sha256
1342 (base32
1343 "0khvm08rcwm62wc47j8niyl6h13f8w51c8669ifivjdr23g3cbhk"))))
1344 (build-system python-build-system)
1345 (arguments
1346 ;; FIXME: Circular dependency on testtools.
1347 '(#:tests? #f))
1348 (home-page "https://github.com/testing-cabal/extras")
1349 (synopsis "Useful extensions to the Python standard library")
1350 (description
1351 "Extras is a set of extensions to the Python standard library.")
1352 (license license:expat)))
1353
1354(define-public python2-extras
1355 (package-with-python2 python-extras))
1356
1357(define-public python-mimeparse
1358 (package
1359 (name "python-mimeparse")
1360 (version "1.6.0")
1361 (source
1362 (origin
1363 (method url-fetch)
1364 (uri (string-append
1365 "https://pypi.python.org/packages/source/p/python-mimeparse/python-mimeparse-"
1366 version ".tar.gz"))
1367 (sha256
1368 (base32
1369 "0y2g6cl660bpz11srgqyvvm8gmywpgyx8g0xfvbiyr0af0yv1r3n"))))
1370 (build-system python-build-system)
1371 (arguments
1372 '(#:phases
1373 (modify-phases %standard-phases
1374 (replace 'check
1375 (lambda _
1376 (invoke "./mimeparse_test.py"))))))
1377 (home-page
1378 "https://github.com/dbtsai/python-mimeparse")
1379 (synopsis "Python library for parsing MIME types")
1380 (description
1381 "Mimeparse provides basic functions for parsing MIME type names and
1382matching them against a list of media-ranges.")
1383 (license license:expat)))
1384
1385(define-public python2-mimeparse
1386 (package-with-python2 python-mimeparse))
1387
1388(define-public python-miniboa
1389 (package
1390 (name "python-miniboa")
1391 (version "1.0.7")
1392 (source
1393 (origin
1394 (method url-fetch)
1395 (uri (pypi-uri "miniboa" version))
1396 (sha256
1397 (base32
1398 "09jh3pn4rh7kh7jayanf8jzy6gp03791b5a193w6148cf3i6k9m3"))))
1399 (build-system python-build-system)
1400 (home-page "https://github.com/shmup/miniboa")
1401 (synopsis "Simple, single-threaded Telnet server")
1402 (description
1403 "Miniboa is a simple, asynchronous, single-threaded, poll-based Telnet
1404server.")
1405 (license license:asl2.0)))
1406
1407(define-public python2-miniboa
1408 (package-with-python2 python-miniboa))
1409
1410(define-public python-pafy
1411 (package
1412 (name "python-pafy")
1413 (version "0.5.3.1")
1414 (source
1415 (origin
1416 (method url-fetch)
1417 (uri (pypi-uri "pafy" version))
1418 (sha256
1419 (base32
1420 "1a7dxi95m1043rxx1r5x3ngb66nwlq6aqcasyqqjzmmmjps4zrim"))))
1421 (build-system python-build-system)
1422 (arguments
1423 `(#:tests? #f)) ; Currently pafy can not find itself in the tests
1424 (propagated-inputs
1425 ;; Youtube-dl is a python package which is imported in the file
1426 ;; "backend_youtube_dl.py", therefore it needs to be propagated.
1427 `(("youtube-dl" ,youtube-dl)))
1428 (home-page "https://np1.github.io/pafy/")
1429 (synopsis "Retrieve YouTube content and metadata")
1430 (description
1431 "@code{pafy} is a python library to retrieve YouTube content and metadata.")
1432 (license license:lgpl3+)))
1433
1434(define-public python2-funcsigs
1435 (package
1436 (name "python2-funcsigs")
1437 (version "1.0.2")
1438 (source (origin
1439 (method url-fetch)
1440 (uri (pypi-uri "funcsigs" version))
1441 (sha256
1442 (base32
1443 "0l4g5818ffyfmfs1a924811azhjj8ax9xd1cffr1mzd3ycn0zfx7"))))
1444 (build-system python-build-system)
1445 (arguments
1446 `(#:python ,python-2))
1447 (native-inputs
1448 `(("python2-unittest2" ,python2-unittest2)))
1449 (home-page "http://funcsigs.readthedocs.org")
1450 (synopsis "Python function signatures from PEP362")
1451 (description
1452 "Backport of @code{funcsigs} which was introduced in Python 3.3.")
1453 (license license:asl2.0)))
1454
1455(define-public python2-funcsigs-bootstrap
1456 (package
1457 (inherit python2-funcsigs)
1458 (name "python2-funcsigs-bootstrap")
1459 (native-inputs `())
1460 (arguments
1461 `(#:tests? #f
1462 ,@(package-arguments python2-funcsigs)))))
1463
1464(define-public python-py
1465 (package
1466 (name "python-py")
1467 (version "1.5.4")
1468 (source
1469 (origin
1470 (method url-fetch)
1471 (uri (pypi-uri "py" version))
1472 (sha256
1473 (base32
1474 "1xxvwfn82457djf55f5n2c94699rfqnk43br8fif2r2q8gvrmm9z"))))
1475 (build-system python-build-system)
1476 (arguments
1477 ;; FIXME: "ImportError: 'test' module incorrectly imported from
1478 ;; '/gnu/store/...-python-pytest-mimimal-3.0.5/lib/python3.5/site-packages'.
1479 ;; Expected '/tmp/guix-build-python-py-1.4.31.drv-0/py-1.4.31/py'.
1480 ;; Is this module globally installed?"
1481 '(#:tests? #f))
1482 (native-inputs
1483 `(("python-setuptools-scm" ,python-setuptools-scm)))
1484 (home-page "https://github.com/pytest-dev/py")
1485 (synopsis "Python library for parsing, I/O, instrospection, and logging")
1486 (description
1487 "Py is a Python library for file name parsing, .ini file parsing, I/O,
1488code introspection, and logging.")
1489 (license license:expat)))
1490
1491(define-public python2-py
1492 (package-with-python2 python-py))
1493
1494;; Recent versions of python-fixtures and python-testrepository need
1495;; python-pbr for packaging, which itself needs these two packages for
1496;; testing.
1497;; To fix this circular dependency, we use a build of python-pbr, based on the
1498;; same source, just without any test dependencies and with tests disabled.
1499;; python-pbr-minmal is then used to package python-fixtures and
1500;; python-testrepository.
1501;; Strictly speaking we currently could remove the test-requirements from the
1502;; normal python-pbr package (and save this package) since test are disabled
1503;; there anyway. But this may change in future.
1504(define-public python-pbr-minimal
1505 (package
1506 (name "python-pbr-minimal")
1507 (version "3.0.1")
1508 (source
1509 (origin
1510 (method url-fetch)
1511 (uri (pypi-uri "pbr" version))
1512 (sha256
1513 (base32
1514 "14fs5acnalnb3h62s7q7av239j541fk0n0z0lawh4h09b1s93s6p"))))
1515 (build-system python-build-system)
1516 (arguments
1517 `(#:tests? #f))
1518 (home-page "http://docs.openstack.org/developer/pbr/")
1519 (synopsis "Minimal build of python-pbr used for bootstrapping")
1520 (description
1521 "Used only for bootstrapping python2-pbr, you should not need this.")
1522 (license license:asl2.0)))
1523
1524(define-public python2-pbr-minimal
1525 (package-with-python2 python-pbr-minimal))
1526
1527(define-public python-pbr
1528 (package
1529 (inherit python-pbr-minimal)
1530 (name "python-pbr")
1531 (arguments
1532 `(#:tests? #f)) ;; Most tests seem to use the Internet.
1533 (propagated-inputs
1534 `(("git" ,git))) ;; pbr actually uses the "git" binary.
1535 (native-inputs
1536 `(("python-fixtures" ,python-fixtures-bootstrap)
1537 ;; discover, coverage, hacking, subunit
1538 ("python-mock" ,python-mock)
1539 ("python-six" ,python-six)
1540 ("python-sphinx" ,python-sphinx)
1541 ("python-testrepository" ,python-testrepository-bootstrap)
1542 ("python-testresources" ,python-testresources-bootstrap)
1543 ("python-testscenarios" ,python-testscenarios-bootstrap)
1544 ("python-testtools" ,python-testtools-bootstrap)
1545 ("python-virtualenv" ,python-virtualenv)))
1546 (synopsis "Enhance the default behavior of Python’s setuptools")
1547 (description
1548 "Python Build Reasonableness (PBR) is a library that injects some useful
1549and sensible default behaviors into your setuptools run. It will set
1550versions, process requirements files and generate AUTHORS and ChangeLog file
1551from git information.
1552")))
1553
1554(define-public python2-pbr
1555 (package-with-python2 python-pbr))
1556
1557(define-public python-exif-read
1558 (package
1559 (name "python-exif-read")
1560 (version "2.1.2")
1561 (source (origin
1562 (method url-fetch)
1563 (uri (pypi-uri "ExifRead" version))
1564 (sha256
1565 (base32
1566 "1b90jf6m9vxh9nanhpyvqdq7hmfx5iggw1l8kq10jrs6xgr49qkr"))))
1567 (build-system python-build-system)
1568 (arguments `(#:tests? #f)) ; no tests
1569 (home-page "https://github.com/ianare/exif-py")
1570 (synopsis "Python library to extract EXIF data from image files")
1571 (description
1572 "ExifRead is a Python library to extract EXIF data from tiff and jpeg
1573files.")
1574 (license license:bsd-3)))
1575
1576(define-public python2-exif-read
1577 (package-with-python2 python-exif-read))
1578
1579(define-public python-pyld
1580 (package
1581 (name "python-pyld")
1582 (version "1.0.3")
1583 (source (origin
1584 (method url-fetch)
1585 (uri (pypi-uri "PyLD" version))
1586 (sha256
1587 (base32
1588 "12i2g6xdj30k7xxcibg3sc5y76snwq8l6n8fy9lyi577kgy0h2pm"))))
1589 (build-system python-build-system)
1590 (home-page "https://github.com/digitalbazaar/pyld")
1591 (synopsis "Python implementation of the JSON-LD specification")
1592 (description
1593 "PyLD is an implementation of the JSON-LD specification.")
1594 (license license:bsd-3)))
1595
1596(define-public python2-pyld
1597 (package-with-python2 python-pyld))
1598
1599(define-public python-click
1600 (package
1601 (name "python-click")
1602 (version "6.7")
1603 (source
1604 (origin
1605 (method url-fetch)
1606 (uri (pypi-uri "click" version))
1607 (sha256
1608 (base32
1609 "02qkfpykbq35id8glfgwc38yc430427yd05z1wc5cnld8zgicmgi"))))
1610 (build-system python-build-system)
1611 (arguments
1612 `(;; The tests are fragile, depending on a specific version of pytest:
1613 ;; <https://github.com/pallets/click/issues/823>
1614 #:tests? #f
1615 #:phases
1616 (modify-phases %standard-phases
1617 (add-after 'unpack 'fix-paths
1618 (lambda* (#:key inputs #:allow-other-keys)
1619 (let ((glibc (assoc-ref inputs ,(if (%current-target-system)
1620 "cross-libc" "libc"))))
1621 (substitute* "click/_unicodefun.py"
1622 (("'locale'")
1623 (string-append "'" glibc "/bin/locale'"))))
1624 #t)))))
1625 (native-inputs
1626 `(("python-pytest" ,python-pytest)))
1627 (home-page "http://click.pocoo.org")
1628 (synopsis "Command line library for Python")
1629 (description
1630 "Click is a Python package for creating command line interfaces in a
1631composable way with as little code as necessary. Its name stands for
1632\"Command Line Interface Creation Kit\". It's highly configurable but comes
1633with sensible defaults out of the box.")
1634 (license license:bsd-3)))
1635
1636(define-public python2-click
1637 (package-with-python2 python-click))
1638
1639(define-public python-wheel
1640 (package
1641 (name "python-wheel")
1642 (version "0.30.0a0")
1643 (source
1644 (origin
1645 (method url-fetch)
1646 (uri (pypi-uri "wheel" version))
1647 (sha256
1648 (base32
1649 "1nm6mn8isny0hr86rhbfrpfj867c0phf001xgsd69xfp9ady1wwq"))))
1650 (build-system python-build-system)
1651 (native-inputs
1652 `(("python-jsonschema" ,python-jsonschema)
1653 ("python-pytest-cov" ,python-pytest-cov)))
1654 (home-page "https://bitbucket.org/pypa/wheel/")
1655 (synopsis "Format for built Python packages")
1656 (description
1657 "A wheel is a ZIP-format archive with a specially formatted filename and
1658the @code{.whl} extension. It is designed to contain all the files for a PEP
1659376 compatible install in a way that is very close to the on-disk format. Many
1660packages will be properly installed with only the @code{Unpack} step and the
1661unpacked archive preserves enough information to @code{Spread} (copy data and
1662scripts to their final locations) at any later time. Wheel files can be
1663installed with a newer @code{pip} or with wheel's own command line utility.")
1664 (license license:expat)
1665 (properties `((python2-variant . ,(delay python2-wheel))))))
1666
1667(define-public python2-wheel
1668 (let ((wheel (package-with-python2
1669 (strip-python2-variant python-wheel))))
1670 (package (inherit wheel)
1671 (native-inputs `(("python2-functools32" ,python2-functools32)
1672 ,@(package-native-inputs wheel))))))
1673
1674(define-public python-vcversioner
1675 (package
1676 (name "python-vcversioner")
1677 (version "2.16.0.0")
1678 (source
1679 (origin
1680 (method url-fetch)
1681 (uri (pypi-uri "vcversioner" version))
1682 (sha256
1683 (base32
1684 "16z10sm78jd7ca3jbkgc3q5i8a8q7y1h21q1li21yy3rlhbhrrns"))))
1685 (build-system python-build-system)
1686 (synopsis "Python library for version number discovery")
1687 (description "Vcversioner is a Python library that inspects tagging
1688information in a variety of version control systems in order to discover
1689version numbers.")
1690 (home-page "https://github.com/habnabit/vcversioner")
1691 (license license:isc)))
1692
1693(define-public python2-vcversioner
1694 (package-with-python2 python-vcversioner))
1695
1696(define-public python-jsonschema
1697 (package
1698 (name "python-jsonschema")
1699 (version "2.6.0")
1700 (source (origin
1701 (method url-fetch)
1702 (uri
1703 (string-append
1704 "https://pypi.python.org/packages/source/j/jsonschema/jsonschema-"
1705 version ".tar.gz"))
1706 (sha256
1707 (base32
1708 "00kf3zmpp9ya4sydffpifn0j0mzm342a2vzh82p6r0vh10cg7xbg"))))
1709 (build-system python-build-system)
1710 (arguments
1711 '(#:phases
1712 (modify-phases %standard-phases
1713 (replace 'check (lambda _ (zero? (system* "nosetests")))))))
1714 (native-inputs
1715 `(("python-nose" ,python-nose)
1716 ("python-vcversioner" ,python-vcversioner)))
1717 (home-page "https://github.com/Julian/jsonschema")
1718 (synopsis "Implementation of JSON Schema for Python")
1719 (description
1720 "Jsonschema is an implementation of JSON Schema for Python.")
1721 (license license:expat)
1722 (properties `((python2-variant . ,(delay python2-jsonschema))))))
1723
1724(define-public python2-jsonschema
1725 (let ((jsonschema (package-with-python2
1726 (strip-python2-variant python-jsonschema))))
1727 (package (inherit jsonschema)
1728 (native-inputs
1729 `(("python2-mock" ,python2-mock)
1730 ,@(package-native-inputs jsonschema)))
1731 (propagated-inputs
1732 `(("python2-functools32" ,python2-functools32))))))
1733
1734(define-public python-schema
1735 (package
1736 (name "python-schema")
1737 (version "0.6.6")
1738 (source
1739 (origin
1740 (method url-fetch)
1741 (uri (pypi-uri "schema" version))
1742 (sha256
1743 (base32
1744 "1lw28j9w9vxyigg7vkfkvi6ic9lgjkdnfvnxdr7pklslqvzmk2vm"))))
1745 (build-system python-build-system)
1746 (native-inputs
1747 `(("python-pytest" ,python-pytest)))
1748 (home-page "https://github.com/keleshev/schema")
1749 (synopsis "Simple data validation library")
1750 (description
1751 "@code{python-schema} is a library for validating Python data
1752structures, such as those obtained from config-files, forms, external
1753services or command-line parsing, converted from JSON/YAML (or
1754something else) to Python data-types.")
1755 (license license:psfl)))
1756
1757(define-public python2-schema
1758 (package-with-python2 python-schema))
1759
1760(define-public python-schema-0.5
1761 (package (inherit python-schema)
1762 (version "0.5.0")
1763 (source
1764 (origin
1765 (method url-fetch)
1766 (uri (pypi-uri "schema" version))
1767 (sha256
1768 (base32
1769 "10zqvpaky51kgb8nd42bk7jwl8cn2zvayxjpdc1wwmpybj92x67s"))))))
1770
1771(define-public python2-schema-0.5
1772 (package-with-python2 python-schema-0.5))
1773
1774(define-public python-kitchen
1775 (package
1776 (name "python-kitchen")
1777 (version "1.2.5")
1778 (source
1779 (origin
1780 (method url-fetch)
1781 (uri (pypi-uri "kitchen" version))
1782 (sha256
1783 (base32
1784 "1zakh6l0yjvwic9p0nkvmbidpnkygkxbigh2skmb5gccyrhbp7xg"))))
1785 (build-system python-build-system)
1786 (propagated-inputs
1787 `(("python-chardet" ,python-chardet)))
1788 (home-page "https://github.com/fedora-infra/kitchen")
1789 (synopsis "Python API for snippets")
1790 (description "@code{kitchen} module provides a python API for all sorts of
1791little useful snippets of code that everybody ends up writing for their projects
1792but never seem big enough to build an independent release. Use kitchen and stop
1793cutting and pasting that code over and over.")
1794 (license (list license:lgpl2.1+
1795 ;; subprocess.py, test_subprocess.py,
1796 ;; kitchen/pycompat25/defaultdict.py:
1797 license:psfl))))
1798
1799(define-public python2-kitchen
1800 (package-with-python2 python-kitchen))
1801
1802(define-public python-unidecode
1803 (package
1804 (name "python-unidecode")
1805 (version "1.0.23")
1806 (source (origin
1807 (method url-fetch)
1808 (uri (pypi-uri "Unidecode" version))
1809 (sha256
1810 (base32
1811 "1ysjbr3nqfqj97h8zyj3v9pya413vkv7a1mzml80w37xx15kb1cb"))))
1812 (build-system python-build-system)
1813 (home-page "https://pypi.python.org/pypi/Unidecode")
1814 (synopsis "ASCII transliterations of Unicode text")
1815 (description
1816 "Unidecode provides ASCII transliterations of Unicode text. Unidecode is
1817useful when integrating with legacy code that doesn't support Unicode, or for
1818ease of entry of non-Roman names on a US keyboard, or when constructing ASCII
1819machine identifiers from human-readable Unicode strings that should still be
1820somewhat intelligible.")
1821 (license license:gpl2+)))
1822
1823(define-public python2-unidecode
1824 (package-with-python2 python-unidecode))
1825
1826(define-public python-pyjwt
1827 (package
1828 (name "python-pyjwt")
1829 (version "1.5.3")
1830 (source
1831 (origin
1832 (method url-fetch)
1833 (uri (pypi-uri "PyJWT" version))
1834 (sha256
1835 (base32
1836 "1rxsg14i33vm2i6lz0my628108c81k43v10n4h3p0gx62xdyf2sh"))
1837 (modules '((guix build utils)))
1838 (snippet
1839 '(begin
1840 (for-each delete-file-recursively
1841 (find-files "." "\\.pyc$"))
1842 #t))))
1843 (build-system python-build-system)
1844 (native-inputs
1845 `(("python-pytest" ,python-pytest)
1846 ("python-pytest-cov" ,python-pytest-cov)
1847 ("python-pytest-runner" ,python-pytest-runner)))
1848 (home-page "https://github.com/progrium/pyjwt")
1849 (synopsis "JSON Web Token implementation in Python")
1850 (description
1851 "PyJWT is a JSON Web Token implementation written in Python.")
1852 (license license:expat)))
1853
1854(define-public python2-pyjwt
1855 (package-with-python2 python-pyjwt))
1856
1857(define-public python-pykka
1858 (package
1859 (name "python-pykka")
1860 (version "1.2.1")
1861 (source
1862 (origin
1863 (method url-fetch)
1864 (uri (pypi-uri "Pykka" version))
1865 (sha256
1866 (base32
1867 "049w3r0mdnnw7xv19jiq7rvls9k7xs73x05b4qs5d6z4vvmgyiz8"))))
1868 (build-system python-build-system)
1869 (native-inputs
1870 `(("python-mock" ,python-mock)
1871 ("python-nose" ,python-nose)
1872 ("python-gevent" ,python-gevent)
1873 ("python-eventlet" ,python-eventlet)))
1874 (home-page "https://www.pykka.org/")
1875 (synopsis "Pykka is a Python implementation of the actor model")
1876 (description
1877 "Pykka is a Python implementation of the actor model.
1878The actor model introduces some simple rules to control the sharing
1879of state and cooperation between execution units, which makes it
1880easier to build concurrent applications.")
1881 (license license:asl2.0)))
1882
1883(define-public python2-pykka
1884 (package-with-python2 python-pykka))
1885
1886(define-public python-pympler
1887 (package
1888 (name "python-pympler")
1889 (home-page "https://pythonhosted.org/Pympler/")
1890 (version "0.5")
1891 (source (origin
1892 (method url-fetch)
1893 (uri (pypi-uri "Pympler" version))
1894 (sha256
1895 (base32
1896 "03qwsbilqgvnbl3a1jmpgixbr2kq6m3fvdlzyr3wdp01bwlc85kx"))))
1897 (build-system python-build-system)
1898 (arguments
1899 `(#:phases (modify-phases %standard-phases
1900 (delete 'check)
1901 (add-after 'install 'check
1902 (lambda* (#:key inputs outputs #:allow-other-keys)
1903 (add-installed-pythonpath inputs outputs)
1904 (invoke "python" "setup.py" "test"))))))
1905 (synopsis "Measure, monitor and analyze memory behavior")
1906 (description
1907 "Pympler is a development tool to measure, monitor and analyze
1908the memory behavior of Python objects in a running Python application.
1909
1910By pympling a Python application, detailed insight in the size and the
1911lifetime of Python objects can be obtained. Undesirable or unexpected
1912runtime behavior like memory bloat and other @samp{pymples} can easily
1913be identified.
1914
1915A web profiling frontend exposes process statistics, garbage
1916visualisation and class tracker statistics.")
1917 (license license:asl2.0)))
1918
1919(define-public python2-pympler
1920 (package-with-python2 python-pympler))
1921
1922(define-public python-itsdangerous
1923 (package
1924 (name "python-itsdangerous")
1925 (version "0.24")
1926 (source
1927 (origin
1928 (method url-fetch)
1929 (uri (string-append
1930 "https://pypi.python.org/packages/source/i/itsdangerous/itsdangerous-"
1931 version ".tar.gz"))
1932 (sha256
1933 (base32
1934 "06856q6x675ly542ig0plbqcyab6ksfzijlyf1hzhgg3sgwgrcyb"))))
1935 (build-system python-build-system)
1936 (home-page "https://github.com/mitsuhiko/itsdangerous")
1937 (synopsis "Python library for passing data to/from untrusted environments")
1938 (description
1939 "Itsdangerous provides various helpers to pass trusted data to untrusted
1940environments and back.")
1941 (license license:bsd-3)))
1942
1943(define-public python2-itsdangerous
1944 (package-with-python2 python-itsdangerous))
1945
1946(define-public python-pyyaml
1947 (package
1948 (name "python-pyyaml")
1949 (version "3.13")
1950 (source
1951 (origin
1952 (method url-fetch)
1953 (uri (pypi-uri "PyYAML" version))
1954 (sha256
1955 (base32
1956 "1gx603g484z46cb74j9rzr6sjlh2vndxayicvlyhxdz98lhhkwry"))))
1957 (build-system python-build-system)
1958 (inputs
1959 `(("libyaml" ,libyaml)))
1960 (home-page "http://pyyaml.org/wiki/PyYAML")
1961 (synopsis "YAML parser and emitter for Python")
1962 (description
1963 "PyYAML is a YAML parser and emitter for Python. PyYAML features a
1964complete YAML 1.1 parser, Unicode support, pickle support, capable extension
1965API, and sensible error messages. PyYAML supports standard YAML tags and
1966provides Python-specific tags that allow to represent an arbitrary Python
1967object.")
1968 (license license:expat)))
1969
1970(define-public python2-pyyaml
1971 (package-with-python2 python-pyyaml))
1972
1973(define-public python-vine
1974 (package
1975 (name "python-vine")
1976 (version "1.1.4")
1977 (source
1978 (origin
1979 (method url-fetch)
1980 (uri (pypi-uri "vine" version))
1981 (sha256
1982 (base32
1983 "0wkskb2hb494v9gixqnf4bl972p4ibcmxdykzpwjlfa5picns4aj"))))
1984 (build-system python-build-system)
1985 (native-inputs
1986 `(("python-pytest" ,python-pytest)
1987 ("python-case" ,python-case)))
1988 (home-page "https://github.com/celery/vine")
1989 (synopsis "Promises for Python")
1990 (description
1991 "@code{vine} provides a special implementation of promises in that it can
1992be used both for \"promise of a value\" and lazy evaluation. The biggest
1993upside for this is that everything in a promise can also be a promise,
1994e.g. filters, callbacks and errbacks can all be promises.")
1995 (license license:bsd-3)))
1996
1997(define-public python-virtualenv
1998 (package
1999 (name "python-virtualenv")
2782bd51 2000 (version "16.1.0")
44d10b1f
RW
2001 (source
2002 (origin
2003 (method url-fetch)
2004 (uri (pypi-uri "virtualenv" version))
2005 (sha256
2006 (base32
2782bd51 2007 "0242cg3hdq3qdvx5flyrki8lpwlgwf5k45c21ks5049fv7ygm6gq"))))
44d10b1f
RW
2008 (build-system python-build-system)
2009 (arguments
2010 `(#:phases
2011 (modify-phases %standard-phases
2782bd51 2012 (add-before 'check 'disable-failing-test
44d10b1f
RW
2013 (lambda _
2014 ;; Disable failing test. See upstream bug report
2015 ;; https://github.com/pypa/virtualenv/issues/957
2016 (substitute* "tests/test_virtualenv.py"
2017 (("skipif.*") "skipif(True, reason=\"Guix\")\n"))
2782bd51 2018 #t)))))
44d10b1f
RW
2019 (native-inputs
2020 `(("python-mock" ,python-mock)
2021 ("python-pytest" ,python-pytest)))
2022 (home-page "https://virtualenv.pypa.io/")
2023 (synopsis "Virtual Python environment builder")
2024 (description
2025 "Virtualenv is a tool to create isolated Python environments.")
2026 (license license:expat)))
2027
2028(define-public python2-virtualenv
2029 (package-with-python2 python-virtualenv))
2030
2031(define-public python-markupsafe
2032 (package
2033 (name "python-markupsafe")
2034 (version "1.0")
2035 (source
2036 (origin
2037 (method url-fetch)
2038 (uri (string-append
2039 "https://pypi.python.org/packages/source/M/MarkupSafe/MarkupSafe-"
2040 version ".tar.gz"))
2041 (sha256
2042 (base32
2043 "0rdn1s8x9ni7ss8rfiacj7x1085lx8mh2zdwqslnw8xc3l4nkgm6"))))
2044 (build-system python-build-system)
2045 (home-page "https://github.com/mitsuhiko/markupsafe")
2046 (synopsis "XML/HTML/XHTML markup safe string implementation for Python")
2047 (description
2048 "Markupsafe provides an XML/HTML/XHTML markup safe string implementation
2049for Python.")
2050 (license license:bsd-3)))
2051
2052(define-public python2-markupsafe
2053 (package-with-python2 python-markupsafe))
2054
2055(define-public python-jinja2
2056 (package
2057 (name "python-jinja2")
2058 (version "2.10")
2059 (source
2060 (origin
2061 (method url-fetch)
2062 (uri (pypi-uri "Jinja2" version))
2063 (sha256
2064 (base32
2065 "190l36hfw3wb2n3n68yacjabxyb1pnxwn7vjx96cmjj002xy2jzq"))))
2066 (build-system python-build-system)
2067 (propagated-inputs
2068 `(("python-markupsafe" ,python-markupsafe)))
2069 (home-page "http://jinja.pocoo.org/")
2070 (synopsis "Python template engine")
2071 (description
2072 "Jinja2 is a small but fast and easy to use stand-alone template engine
2073written in pure Python.")
2074 (license license:bsd-3)))
2075
2076(define-public python2-jinja2
2077 (package-with-python2 python-jinja2))
2078
2079(define-public python-pystache
2080 (package
2081 (name "python-pystache")
2082 (version "0.5.4")
2083 (source (origin
2084 (method url-fetch)
2085 (uri (pypi-uri "pystache" version))
2086 (sha256
2087 (base32
2088 "0nmqsfmiw4arjxqkmf9z66ml950pcdjk6aq4gin4sywmzdjw5fzp"))))
2089 (build-system python-build-system)
2090 (arguments
2091 '(#:tests? #f)) ; FIXME: Python 3 tests are failing.
2092 (home-page "http://defunkt.io/pystache/")
2093 (synopsis "Python logic-less template engine")
2094 (description
2095 "Pystache is a Python implementation of the framework agnostic,
2096logic-free templating system Mustache.")
2097 (license license:expat)
2098 (properties `((python2-variant . ,(delay python2-pystache))))))
2099
2100(define-public python2-pystache
2101 (package (inherit (package-with-python2
2102 (strip-python2-variant python-pystache)))
2103 (arguments
2104 `(#:python ,python-2
2105 #:phases
2106 (modify-phases %standard-phases
2107 (replace 'check
2108 (lambda _
2109 (zero? (system* "python" "test_pystache.py")))))))))
2110
2111(define-public python-joblib
2112 (package
2113 (name "python-joblib")
2114 (version "0.13.0")
2115 (source (origin
2116 (method url-fetch)
2117 (uri (pypi-uri "joblib" version))
2118 (sha256
2119 (base32
2120 "0612nazad8dxmn3xghfrmjax6456l4xy6hn9cngs7vydi14ds7v5"))))
2121 (build-system python-build-system)
2122 (arguments
2123 `(#:phases
2124 (modify-phases %standard-phases
2125 (replace 'check
2126 (lambda _ (invoke "pytest" "-v" "joblib"))))))
2127 (native-inputs
2128 `(("python-pytest" ,python-pytest)))
2129 (home-page "https://joblib.readthedocs.io/")
2130 (synopsis "Using Python functions as pipeline jobs")
2131 (description
2132 "Joblib is a set of tools to provide lightweight pipelining in Python.
2133In particular, joblib offers: transparent disk-caching of the output values
2134and lazy re-evaluation (memoize pattern), easy simple parallel computing
2135logging and tracing of the execution.")
2136 (license license:bsd-3)))
2137
2138(define-public python2-joblib
2139 (package-with-python2 python-joblib))
2140
2141(define-public python-docutils
2142 (package
2143 (name "python-docutils")
2144 (version "0.14")
2145 (source
2146 (origin
2147 (method url-fetch)
2148 (uri (pypi-uri "docutils" version))
2149 (sha256
2150 (base32
2151 "0x22fs3pdmr42kvz6c654756wja305qv6cx1zbhwlagvxgr4xrji"))))
2152 (build-system python-build-system)
2153 (arguments
2154 '(#:tests? #f)) ; no setup.py test command
2155 (home-page "http://docutils.sourceforge.net/")
2156 (synopsis "Python Documentation Utilities")
2157 (description
2158 "Docutils is a modular system for processing documentation into useful
2159formats, such as HTML, XML, and LaTeX. For input Docutils supports
2160reStructuredText.")
2161 ;; Most of the source code is public domain, but some source files are
2162 ;; licensed under the PFSL, BSD 2-clause, and GPLv3+ licenses.
2163 (license (list license:public-domain license:psfl license:bsd-2 license:gpl3+))))
2164
2165(define-public python2-docutils
2166 (package-with-python2 python-docutils))
2167
2168(define-public python-pygments
2169 (package
2170 (name "python-pygments")
2171 (version "2.2.0")
2172 (source
2173 (origin
2174 (method url-fetch)
2175 (uri (pypi-uri "Pygments" version))
2176 (sha256
2177 (base32
2178 "1k78qdvir1yb1c634nkv6rbga8wv4289xarghmsbbvzhvr311bnv"))))
2179 (build-system python-build-system)
2180 (arguments
2181 ;; FIXME: Tests require sphinx, which depends on this.
2182 '(#:tests? #f))
2183 (home-page "http://pygments.org/")
2184 (synopsis "Syntax highlighting")
2185 (description
2186 "Pygments is a syntax highlighting package written in Python.")
2187 (license license:bsd-2)))
2188
2189(define-public python2-pygments
2190 (package-with-python2 python-pygments))
2191
2192(define-public python-sphinxcontrib-websupport
2193 (package
2194 (name "python-sphinxcontrib-websupport")
2195 (version "1.1.0")
2196 (source (origin
2197 (method url-fetch)
2198 (uri (pypi-uri "sphinxcontrib-websupport" version))
2199 (sha256
2200 (base32
2201 "1ff3ix76xi1y6m99qxhaq5161ix9swwzydilvdya07mgbcvpzr4x"))))
2202 (build-system python-build-system)
2203 (arguments
2204 ;; FIXME: Tests depend on Sphinx, which depends on this.
2205 `(#:tests? #f))
2206 (home-page "http://sphinx-doc.org/")
2207 (synopsis "Sphinx API for web applications")
2208 (description "This package provides a Python API to easily integrate
2209Sphinx documentation into your web application. It provides tools to
2210integrate Sphinx documents in web templates and to handle searches.")
2211 (license license:bsd-3)))
2212
2213(define-public python2-sphinxcontrib-websupport
2214 (package-with-python2 python-sphinxcontrib-websupport))
2215
2216(define-public python-sphinx
2217 (package
2218 (name "python-sphinx")
2219 (version "1.7.7")
2220 (source
2221 (origin
2222 (method url-fetch)
2223 (uri (pypi-uri "Sphinx" version))
2224 (sha256
2225 (base32
2226 "0pkkbfj7cl157q550gcs45am5y78ps0h7q6455d64s1zmw01jlvi"))))
2227 (build-system python-build-system)
2228 (arguments
2229 `(#:phases
2230 (modify-phases %standard-phases
2231 (replace 'check
2232 (lambda _
2233 ;; Requires Internet access.
2234 (delete-file "tests/test_build_linkcheck.py")
2235 (substitute* "tests/test_build_latex.py"
2236 (("@pytest.mark.sphinx\\('latex', testroot='images'\\)")
2237 "@pytest.mark.skip()"))
2238 (when (which "python")
2239 ;; XXX: These tests are broken when using Python2:
2240 ;; <https://github.com/sphinx-doc/sphinx/issues/4710>.
2241 (delete-file "tests/test_api_translator.py")
2242 (delete-file "tests/test_setup_command.py"))
2243 (invoke "make" "test"))))))
2244 (propagated-inputs
2245 `(("python-imagesize" ,python-imagesize)
2246 ("python-sphinx-alabaster-theme"
2247 ,python-sphinx-alabaster-theme)
2248 ("python-babel" ,python-babel)
2249 ("python-snowballstemmer" ,python-snowballstemmer)
2250 ("python-docutils" ,python-docutils)
2251 ("python-jinja2" ,python-jinja2)
2252 ("python-packaging" ,python-packaging)
2253 ("python-pygments" ,python-pygments)
2254 ("python-requests" ,python-requests)
2255 ("python-six" ,python-six)
2256 ("python-sphinxcontrib-websupport" ,python-sphinxcontrib-websupport)))
2257 (native-inputs
2258 `(("graphviz" ,graphviz)
2259 ("imagemagick" ,imagemagick) ;for "convert"
2260 ("python-html5lib" ,python-html5lib)
2261 ("python-mock" ,python-mock)
2262 ("python-nose" ,python-nose)
2263 ("python-pytest" ,python-pytest)))
2264 (home-page "http://sphinx-doc.org/")
2265 (synopsis "Python documentation generator")
2266 (description "Sphinx is a tool that makes it easy to create documentation
2267for Python projects or other documents consisting of multiple reStructuredText
2268sources.")
2269 (license license:bsd-3)
2270 (properties `((python2-variant . ,(delay python2-sphinx))))))
2271
2272(define-public python2-sphinx
2273 (let ((base (package-with-python2 (strip-python2-variant python-sphinx))))
2274 (package
2275 (inherit base)
2276 (native-inputs `(("python2-mock" ,python2-mock)
2277 ("python2-enum34" ,python2-enum34)
2278 ,@(package-native-inputs base)))
2279 (propagated-inputs `(("python2-pytz" ,python2-pytz)
2280 ("python2-typing" ,python2-typing)
2281 ,@(package-propagated-inputs base))))))
2282
2283(define-public python-sphinx-gallery
2284 (package
2285 (name "python-sphinx-gallery")
2286 (version "0.1.13")
2287 (source (origin
2288 (method url-fetch)
2289 (uri (string-append "https://github.com/sphinx-gallery/sphinx-gallery"
2290 "/archive/v" version ".tar.gz"))
2291 (file-name (string-append name "-" version ".tar.gz"))
2292 (sha256
2293 (base32
2294 "03fs99mcb1r7qp0xixqv07vcz98sk21yq19ffdysi0infdcpzfkd"))))
2295 (build-system python-build-system)
2296 (arguments
2297 ;; FIXME: Tests attempt to download <https://docs.python.org/3/objects.inv>,
2298 ;; <https://docs.scipy.org/doc/numpy/objects.inv>, and
2299 ;; <https://matplotlib.org/objects.inv>.
2300 `(#:tests? #f))
2301 (native-inputs
2302 `(("python-pytest-runner" ,python-pytest-runner)))
2303 (home-page "https://sphinx-gallery.github.io/")
2304 (synopsis "Generate an examples gallery automatically")
2305 (description
2306 "@code{sphinx_gallery} is a Sphinx extension that builds an HTML version
2307from any set of Python scripts and puts it into an examples gallery.")
2308 (license license:bsd-3)))
2309
2310(define-public python2-sphinx-gallery
2311 (package-with-python2 python-sphinx-gallery))
2312
2313(define-public python-sphinx-rtd-theme
2314 (package
2315 (name "python-sphinx-rtd-theme")
2316 (version "0.2.4")
2317 (source
2318 (origin
2319 (method url-fetch)
2320 (uri (pypi-uri "sphinx_rtd_theme" version))
2321 (sha256
2322 (base32
2323 "05rlhjzdyapr2w74jjs7mrm8hi69qskcr5vya9f9drpsys7lpxrd"))))
2324 (build-system python-build-system)
2325 (arguments '(#:tests? #f)) ; No tests.
2326 (propagated-inputs
2327 `(("python-sphinx" ,python-sphinx)))
2328 (home-page "https://github.com/snide/sphinx_rtd_theme/")
2329 (synopsis "ReadTheDocs.org theme for Sphinx")
2330 (description "A theme for Sphinx used by ReadTheDocs.org.")
2331 (license license:expat)))
2332
2333(define-public python2-sphinx-rtd-theme
2334 (package-with-python2 python-sphinx-rtd-theme))
2335
2336(define-public python-guzzle-sphinx-theme
2337 (package
2338 (name "python-guzzle-sphinx-theme")
2339 (version "0.7.11")
2340 (source
2341 (origin
2342 (method url-fetch)
2343 (uri (pypi-uri "guzzle_sphinx_theme" version))
2344 (sha256
2345 (base32
2346 "1rnkzrrsbnifn3vsb4pfaia3nlvgvw6ndpxp7lzjrh23qcwid34v"))))
2347 (build-system python-build-system)
2348 (propagated-inputs
2349 `(("python-sphinx" ,python-sphinx)))
2350 (home-page "https://github.com/guzzle/guzzle_sphinx_theme")
2351 (synopsis "Sphinx theme used by Guzzle")
2352 (description "This package provides guzzle_sphinx_theme, a theme for the
2353Sphinx documentation system, used by @uref{http://docs.guzzlephp.org, Guzzle}
2354and several other projects.")
2355 (license license:expat)))
2356
2357(define-public python2-guzzle-sphinx-theme
2358 (package-with-python2 python-guzzle-sphinx-theme))
2359
2360(define-public python-rst.linker
2361 (package
2362 (name "python-rst.linker")
2363 (version "1.10")
2364 (source
2365 (origin
2366 (method url-fetch)
2367 (uri (pypi-uri "rst.linker" version))
2368 (sha256
2369 (base32
2370 "0iqaacp7pj1s8avs4kc0qg0r7dscywaq37y6l9j14glqdikk0wdj"))))
2371 (build-system python-build-system)
2372 (propagated-inputs
2373 `(("python-dateutil" ,python-dateutil)
2374 ("python-six" ,python-six)))
2375 (native-inputs
2376 `(("python-setuptools-scm" ,python-setuptools-scm)))
2377 ;; Test would require path.py, which would introduce a cyclic dependence.
2378 (arguments `(#:tests? #f))
2379 ;; Note: As of version 1.7 the documentation is not worth building.
2380 (home-page "https://github.com/jaraco/rst.linker")
2381 (synopsis "Sphinx plugin to add links and timestamps")
2382 (description "rst.linker allows to automatically replace text by a
2383reStructuredText external reference or timestamps. It's primary purpose is to
2384augment the changelog, but it can be used for other documents, too.")
2385 (license license:expat)))
2386
2387(define-public python2-rst.linker
2388 (package-with-python2 python-rst.linker))
2389
2390(define-public python-feedgenerator
2391 (package
2392 (name "python-feedgenerator")
2393 (version "1.9")
2394 (source
2395 (origin
2396 (method url-fetch)
2397 (uri (pypi-uri "feedgenerator" version))
2398 (sha256
2399 (base32
2400 "01mirwkm7xfx539hmvj7g9da1j51gw5lsx74dr0glizskjm5vq2s"))
2401 (modules '((guix build utils)))
2402 (snippet
2403 '(begin
2404 ;; Remove pre-compiled .pyc files from source.
2405 (for-each delete-file-recursively
2406 (find-files "." "__pycache__" #:directories? #t))
2407 (for-each delete-file (find-files "." "\\.pyc$"))
2408 #t))))
2409 (build-system python-build-system)
2410 (propagated-inputs
2411 `(("python-pytz" ,python-pytz)
2412 ("python-six" ,python-six)))
2413 (home-page "https://github.com/getpelican/feedgenerator")
2414 (synopsis
2415 "Standalone version of Django's Atom/RSS feed generator")
2416 (description
2417 "Feedgenerator-py3k is a standalone version of Django's feedgenerator,
2418which can produce feeds in RSS 2.0, RSS 0.91, and Atom formats.")
2419 (license license:bsd-3)))
2420
2421(define-public python2-feedgenerator
2422 (package-with-python2 python-feedgenerator))
2423
2424(define-public python-toml
2425 (package
2426 (name "python-toml")
2427 (version "0.9.4")
2428 (source
2429 (origin
2430 (method url-fetch)
2431 (uri (pypi-uri "toml" version))
2432 (sha256
2433 (base32
2434 "0bdbpbip67wdm6c7xwc6mmbmskyradj4cdxn1iibj4fcx1nbv1lf"))))
2435 (build-system python-build-system)
2436 (arguments
2437 `(#:tests? #f)) ;no tests suite in release
2438 (home-page "https://github.com/uiri/toml")
2439 (synopsis "Library for TOML")
2440 (description
2441 "@code{toml} is a library for parsing and creating Tom's Obvious, Minimal
2442Language (TOML) configuration files.")
2443 (license license:expat)))
2444
2445(define-public python-black
2446 (package
2447 (name "python-black")
2448 (version "18.6b4")
2449 (source
2450 (origin
2451 (method url-fetch)
2452 (uri (pypi-uri "black" version))
2453 (sha256
2454 (base32
2455 "0i4sfqgz6w15vd50kbhi7g7rifgqlf8yfr8y78rypd56q64qn592"))))
2456 (build-system python-build-system)
2457 (arguments
2458 `(#:phases
2459 (modify-phases %standard-phases
2460 (add-after 'patch-source-shebangs 'patch-extra-shebangs
2461 (lambda _
2462 (let ((python3 (which "python3")))
2463 (substitute* '("tests/data/fmtonoff.py"
2464 "tests/data/string_prefixes.py"
2465 "tests/data/function.py")
2466 (("#!/usr/bin/env python3(\\.[0-9]+)?" _ minor-version)
2467 (string-append "#!" python3 (if (string? minor-version)
2468 minor-version
2469 ""))))))))))
2470 (propagated-inputs
2471 `(("python-click" ,python-click)
2472 ("python-attrs" ,python-attrs)
2473 ("python-appdirs" ,python-appdirs)
2474 ("python-toml" ,python-toml)))
2475 (home-page "https://github.com/ambv/black")
2476 (synopsis "The uncompromising code formatter")
2477 (description "Black is the uncompromising Python code formatter.")
2478 (license license:expat)))
2479
2480(define-public python-blinker
2481 (package
2482 (name "python-blinker")
2483 (version "1.4")
2484 (source
2485 (origin
2486 (method url-fetch)
2487 (uri (pypi-uri "blinker" version))
2488 (sha256
2489 (base32
2490 "1dpq0vb01p36jjwbhhd08ylvrnyvcc82yxx3mwjx6awrycjyw6j7"))))
2491 (build-system python-build-system)
2492 (home-page "http://pythonhosted.org/blinker/")
2493 (synopsis "Fast, simple object-to-object and broadcast signaling")
2494 (description
2495 "Blinker provides a fast dispatching system that allows any number of
2496interested parties to subscribe to events, or \"signals\".")
2497 (license license:expat)))
2498
2499(define-public python2-blinker
2500 (package-with-python2 python-blinker))
2501
2502(define-public pelican
2503 (package
2504 (name "pelican")
2505 (version "3.7.1")
2506 (source
2507 (origin
2508 (method url-fetch)
2509 (uri (pypi-uri "pelican" version))
2510 (sha256
2511 (base32
2512 "12spygavv9b6xpb5pgp7f0p3z0mms60nx6zrpx1yfkj68zz4flra"))))
2513 (build-system python-build-system)
2514 (propagated-inputs
2515 `(("python-feedgenerator" ,python-feedgenerator)
2516 ("python-jinja2" ,python-jinja2)
2517 ("python-pygments" ,python-pygments)
2518 ("python-docutils" ,python-docutils)
2519 ("python-pytz" ,python-pytz)
2520 ("python-blinker" ,python-blinker)
2521 ("python-unidecode" ,python-unidecode)
2522 ("python-six" ,python-six)
2523 ("python-dateutil" ,python-dateutil)
2524 ("python-markdown" ,python-markdown)))
2525 (home-page "https://getpelican.com/")
2526 (arguments
2527 `(;; XXX Requires a lot more packages to do unit tests :P
2528 #:tests? #f
2529 #:phases (modify-phases %standard-phases
2530 (add-before
2531 'install 'adjust-requires
2532 ;; Since feedgenerator is installed from git, it doesn't
2533 ;; conform to the version requirements.
2534 ;;
2535 ;; We *do have* "feedgenerator >= 1.6", but strip off the
2536 ;; version requirement so setuptools doesn't get confused.
2537 (lambda _
2538 (substitute* "setup.py"
2539 (("['\"]feedgenerator.*?['\"]")
2540 "'feedgenerator'")))))))
2541 (synopsis "Python-based static site publishing system")
2542 (description
2543 "Pelican is a tool to generate a static blog from reStructuredText,
2544Markdown input files, and more. Pelican uses Jinja2 for templating
2545and is very extensible.")
2546 (license license:agpl3+)))
2547
2548(define-public python-scikit-image
2549 (package
2550 (name "python-scikit-image")
2551 (version "0.14.1")
2552 (source
2553 (origin
2554 (method url-fetch)
2555 (uri (pypi-uri "scikit-image" version))
2556 (sha256
2557 (base32 "0l1c3rl4s1jyv80i5hns4pgih09zrxfj7lygdc51w8sgyysb7ac6"))))
2558 (build-system python-build-system)
2559 (arguments
2560 ;; TODO: Some tests require running X11 server. Disable them?
2561 '(#:tests? #f))
2562 ;; See DEPENDS.txt for the list of build and run time requiremnts
2563 (propagated-inputs
2564 `(("python-cloudpickle" ,python-cloudpickle)
2565 ("python-dask" ,python-dask)
2566 ("python-matplotlib" ,python-matplotlib)
2567 ("python-networkx" ,python-networkx)
2568 ("python-numpy" ,python-numpy)
2569 ("python-pillow" ,python-pillow)
2570 ("python-pywavelets" ,python-pywavelets)
2571 ("python-scipy" ,python-scipy)
2572 ("python-six" ,python-six)))
2573 (native-inputs
2574 `(("python-cython" ,python-cython)))
2575 (home-page "http://scikit-image.org/")
2576 (synopsis "Image processing in Python")
2577 (description
2578 "Scikit-image is a collection of algorithms for image processing.")
2579 (license license:bsd-3)))
2580
2581(define-public python2-scikit-image
2582 (package-with-python2 python-scikit-image))
2583
2584(define-public python-cython
2585 (package
2586 (name "python-cython")
2587 (version "0.28.4")
2588 (source
2589 (origin
2590 (method url-fetch)
2591 (uri (pypi-uri "Cython" version))
2592 (sha256
2593 (base32
2594 "0imw9s2rbrh32clbl10csnwmig9p3nzkrd2baxxxfmnrsc42pb3n"))))
2595 (build-system python-build-system)
2596 ;; we need the full python package and not just the python-wrapper
2597 ;; because we need libpython3.3m.so
2598 (inputs
2599 `(("python" ,python)))
2600 (arguments
2601 `(#:phases
2602 (modify-phases %standard-phases
2603 (add-before 'check 'set-HOME
2604 ;; some tests require access to "$HOME/.cython"
2605 (lambda _ (setenv "HOME" "/tmp") #t))
2606
2607 ;; FIXME: These tests started failing on armhf after the 0.28 update
2608 ;; (commit c69d11c5930), both with an error such as this:
2609 ;; compiling (cpp) and running dictcomp ...
2610 ;; === C/C++ compiler error output: ===
2611 ;; ‘
2612 ;; dictcomp.cpp:5221: confused by earlier errors, bailing out
2613 ;; See <https://hydra.gnu.org/build/2948724> for logs.
2614 ,@(if (target-arm32?)
2615 `((add-before 'check 'disable-failing-tests
2616 (lambda _
2617 (let ((disabled-tests (open-file "tests/bugs.txt" "a")))
2618 (for-each (lambda (test)
2619 (format disabled-tests "~a\n" test))
2620 '("memslice" "dictcomp"))
2621 (close-port disabled-tests)))))
2622 '())
2623
2624 (replace 'check
2625 (lambda _
2626 ;; The "with_outer_raising" test fails with Python 3.7. See
2627 ;; https://github.com/cython/cython/issues/2454
2628 (delete-file "tests/run/generators_py.py")
2629 (invoke "python" "runtests.py" "-vv"))))))
2630 (home-page "http://cython.org/")
2631 (synopsis "C extensions for Python")
2632 (description "Cython is an optimising static compiler for both the Python
2633programming language and the extended Cython programming language. It makes
2634writing C extensions for Python as easy as Python itself.")
2635 (license license:asl2.0)
2636 (properties `((python2-variant . ,(delay python2-cython))))))
2637
2638(define-public python2-cython
2639 (package (inherit (package-with-python2
2640 (strip-python2-variant python-cython)))
2641 (name "python2-cython")
2642 (inputs
2643 `(("python-2" ,python-2))))) ; this is not automatically changed
2644
2645;; The RPython toolchain currently does not support Python 3.
2646(define-public python2-rpython
2647 (package
2648 (name "python2-rpython")
2649 (version "0.2.1")
2650 (source
2651 (origin
2652 (method url-fetch)
2653 (uri (pypi-uri "rpython" version))
2654 (sha256
2655 (base32
2656 "02z9cvxf0y41dcvwnvf2zn0albhhw1drvjjbq27m6i1piw1k6fc0"))))
2657 (build-system python-build-system)
2658 (arguments `(#:python ,python-2))
2659 (native-inputs
2660 `(("python2-pytest" ,python2-pytest))) ; needed for running tests
2661 (home-page "https://rpython.readthedocs.org")
2662 (synopsis "Framework for implementing interpreters and virtual machines")
2663 (description "RPython is a translation and support framework for
2664producing implementations of dynamic languages, emphasizing a clean separation
2665between language specification and implementation aspects.")
2666 (license license:expat)))
2667
2668;; NOTE: when upgrading numpy please make sure that python-pandas and
2669;; python-scipy still build, as these three packages are often used together.
2670(define-public python-numpy
2671 (package
2672 (name "python-numpy")
2673 (version "1.15.4")
2674 (source
2675 (origin
2676 (method url-fetch)
2677 (uri (string-append
2678 "https://github.com/numpy/numpy/releases/download/v"
2679 version "/numpy-" version ".tar.gz"))
2680 (sha256
2681 (base32
2682 "102vcl2qq4pjbm7a3d67vkkvn4466ngia1d8wi5avqwqh8j0jvkn"))))
2683 (build-system python-build-system)
2684 (inputs
2685 `(("openblas" ,openblas)
2686 ("lapack" ,lapack)))
2687 (native-inputs
2688 `(("python-cython" ,python-cython)
2689 ("python-pytest" ,python-pytest)
2690 ("gfortran" ,gfortran)))
2691 (arguments
2692 `(#:phases
2693 (modify-phases %standard-phases
2694 (add-before 'build 'configure-blas-lapack
2695 (lambda* (#:key inputs #:allow-other-keys)
2696 (call-with-output-file "site.cfg"
2697 (lambda (port)
2698 (format port
2699 "[openblas]
2700libraries = openblas
2701library_dirs = ~a/lib
2702include_dirs = ~a/include
2703
2704# backslash-n to make emacs happy
2705\n[lapack]
2706lapack_libs = lapack
2707library_dirs = ~a/lib
2708include_dirs = ~a/include
2709"
2710 (assoc-ref inputs "openblas")
2711 (assoc-ref inputs "openblas")
2712 (assoc-ref inputs "lapack")
2713 (assoc-ref inputs "lapack"))))
2714 #t))
2715 (add-before 'build 'fix-executable-paths
2716 (lambda* (#:key inputs #:allow-other-keys)
2717 ;; Make /gnu/store/...-bash-.../bin/sh the default shell,
2718 ;; instead of /bin/sh.
2719 (substitute* "numpy/distutils/exec_command.py"
2720 (("(os.environ.get\\('SHELL', ')(/bin/sh'\\))" match match-start match-end)
2721 (string-append match-start (assoc-ref inputs "bash") match-end)))
2722 ;; Use "gcc" executable, not "cc".
2723 (substitute* "numpy/distutils/system_info.py"
2724 (("c = distutils\\.ccompiler\\.new_compiler\\(\\)")
2725 "c = distutils.ccompiler.new_compiler(); c.set_executables(compiler='gcc',compiler_so='gcc',linker_exe='gcc',linker_so='gcc -shared')"))
2726 #t))
2727 ;; Tests can only be run after the library has been installed and not
2728 ;; within the source directory.
2729 (delete 'check)
2730 (add-after 'install 'check
2731 (lambda* (#:key outputs inputs #:allow-other-keys)
2732 ;; Make installed package available for running the tests
2733 (add-installed-pythonpath inputs outputs)
2734 ;; Make sure "f2py" etc is found.
2735 (setenv "PATH" (string-append (assoc-ref outputs "out") "/bin"
2736 ":" (getenv "PATH")))
2737 (with-directory-excursion "/tmp"
2738 (invoke "python" "-c"
2739 "import numpy; numpy.test(verbose=2)")))))))
2740 (home-page "http://www.numpy.org/")
2741 (synopsis "Fundamental package for scientific computing with Python")
2742 (description "NumPy is the fundamental package for scientific computing
2743with Python. It contains among other things: a powerful N-dimensional array
2744object, sophisticated (broadcasting) functions, tools for integrating C/C++
2745and Fortran code, useful linear algebra, Fourier transform, and random number
2746capabilities.")
2747 (license license:bsd-3)))
2748
2749(define-public python2-numpy
2750 (package-with-python2 python-numpy))
2751
2752;; NOTE: NumPy 1.8 is packaged only for Python 2 because it is of
2753;; interest only for legacy code going back to NumPy's predecessor
2754;; Numeric.
2755(define-public python2-numpy-1.8
2756 (package (inherit python2-numpy)
2757 (version "1.8.2")
2758 (source
2759 (origin
2760 (method url-fetch)
2761 (uri (string-append
2762 "https://github.com/numpy/numpy/archive/v" version ".tar.gz"))
2763 (file-name (string-append "python2-numpy-" version ".tar.gz"))
2764 (sha256
2765 (base32
2766 "0sc20gz1b17xnyrkp5frca3ql5qfalpv916hfg2kqxpwr6jg0f1g"))))
2767 (arguments
2768 (substitute-keyword-arguments (package-arguments python2-numpy)
2769 ((#:phases phases)
2770 `(modify-phases ,phases
2771 (replace 'configure-blas-lapack
2772 (lambda* (#:key inputs #:allow-other-keys)
2773 (call-with-output-file "site.cfg"
2774 (lambda (port)
2775 (format port
2776 "[openblas]
2777libraries = openblas,lapack
2778library_dirs = ~a/lib:~a/lib
2779include_dirs = ~a/include:~a/include
2780"
2781 (assoc-ref inputs "openblas")
2782 (assoc-ref inputs "lapack")
2783 (assoc-ref inputs "openblas")
2784 (assoc-ref inputs "lapack"))))
2785 #t))))))
2786 (native-inputs
2787 `(("python2-nose" ,python2-nose)))
2788 (description "NumPy is the fundamental package for scientific computing
2789with Python. It contains among other things: a powerful N-dimensional array
2790object, sophisticated (broadcasting) functions, tools for integrating C/C++
2791and Fortran code, useful linear algebra, Fourier transform, and random number
2792capabilities. Version 1.8 is the last one to contain the numpy.oldnumeric API
2793that includes the compatibility layer numpy.oldnumeric with NumPy's predecessor
2794Numeric.")
2795 (license license:bsd-3)))
2796
2797(define-public python-munch
2798 (package
2799 (name "python-munch")
2800 (version "2.0.4")
2801 (source
2802 (origin
2803 (method url-fetch)
2804 (uri (pypi-uri "munch" version))
2805 (sha256
2806 (base32
2807 "1cmqg91xnqx8gvnh4pmp0bfl1dfcm65d5p9mg73zz8pkjhx6h80l"))))
2808 (build-system python-build-system)
2809 (home-page "https://github.com/Infinidat/munch")
2810 (synopsis "Dot-accessible dictionary")
2811 (description "Munch is a dot-accessible dictionary similar to JavaScript
2812objects.")
2813 (license license:expat)))
2814
2815(define-public python2-munch
2816 (package-with-python2 python-munch))
2817
2818(define-public python-colormath
2819 (package
2820 (name "python-colormath")
2821 (version "3.0.0")
2822 (source
2823 (origin
2824 (method url-fetch)
2825 (uri (pypi-uri "colormath" version))
2826 (sha256
2827 (base32
2828 "05qjycgxp3p2f9n6lmic68sxmsyvgnnlyl4z9w7dl9s56jphaiix"))))
2829 (build-system python-build-system)
2830 (propagated-inputs
2831 `(("python-networkx" ,python-networkx)
2832 ("python-numpy" ,python-numpy)))
2833 (home-page "https://github.com/gtaylor/python-colormath")
2834 (synopsis "Color math and conversion library")
2835 (description
2836 "This is a Python library for color math and conversions.")
2837 (license license:bsd-3)))
2838
2839(define-public python2-colormath
2840 (package-with-python2 python-colormath))
2841
2842(define-public python-spectra
2843 (package
2844 (name "python-spectra")
2845 (version "0.0.11")
2846 (source
2847 (origin
2848 (method url-fetch)
2849 (uri (pypi-uri "spectra" version))
2850 (sha256
2851 (base32
2852 "1f322x914bhkg6r5gv1vmnir3iy0k5kih0fd2gp3rdkw32jn5cwf"))))
2853 (build-system python-build-system)
2854 (arguments
2855 `(#:phases
2856 (modify-phases %standard-phases
2857 (replace 'check
2858 (lambda _
2859 (zero? (system* "nosetests" "-v")))))))
2860 (propagated-inputs
2861 `(("python-colormath" ,python-colormath)))
2862 (native-inputs
2863 `(("python-nose" ,python-nose)))
2864 (home-page "https://github.com/jsvine/spectra")
2865 (synopsis "Color scales and color conversion")
2866 (description
2867 "This package provides a Python library intended to make color math,
2868color scales, and color space conversion easy. It has support for:
2869
2870@enumerate
2871@item Color scales
2872@item Color ranges
2873@item Color blending
2874@item Brightening/darkening colors
2875@item Saturating/desaturating colors
2876@item Conversion to/from multiple color spaces.
2877@end enumerate\n")
2878 (license license:expat)))
2879
2880(define-public python2-spectra
2881 (package-with-python2 python-spectra))
2882
2883(define-public python-numpy-documentation
2884 (package
2885 (name "python-numpy-documentation")
2886 (version (package-version python-numpy))
2887 (source (package-source python-numpy))
2888 (build-system python-build-system)
2889 (native-inputs
2890 `(("python-matplotlib" ,python-matplotlib)
2891 ("python-numpy" ,python-numpy)
2892 ("pkg-config" ,pkg-config)
2893 ("python-sphinx" ,python-sphinx)
2894 ("python-numpydoc" ,python-numpydoc)
2895 ("texlive" ,(texlive-union (list texlive-fonts-amsfonts
2896 texlive-fonts-cm-super
2897 texlive-fonts-ec
2898 texlive-generic-ifxetex
2899 texlive-generic-pdftex
2900 texlive-latex-amsfonts
2901 texlive-latex-capt-of
2902 texlive-latex-cmap
2903 texlive-latex-environ
2904 texlive-latex-eqparbox
2905 texlive-latex-etoolbox
2906 texlive-latex-expdlist
2907 texlive-latex-fancyhdr
2908 texlive-latex-fancyvrb
2909 texlive-latex-fncychap
2910 texlive-latex-float
2911 texlive-latex-framed
2912 texlive-latex-geometry
2913 texlive-latex-graphics
2914 texlive-latex-hyperref
2915 texlive-latex-mdwtools
2916 texlive-latex-multirow
2917 texlive-latex-needspace
2918 texlive-latex-oberdiek
2919 texlive-latex-parskip
2920 texlive-latex-preview
2921 texlive-latex-tabulary
2922 texlive-latex-threeparttable
2923 texlive-latex-titlesec
2924 texlive-latex-trimspaces
2925 texlive-latex-ucs
2926 texlive-latex-upquote
2927 texlive-latex-url
2928 texlive-latex-varwidth
2929 texlive-latex-wrapfig)))
2930 ("texinfo" ,texinfo)
2931 ("perl" ,perl)
2932 ("scipy-sphinx-theme"
2933 ,(origin ; The build script expects scipy-sphinx-theme as a git submodule
2934 (method git-fetch)
2935 (uri (git-reference
2936 (url "https://github.com/scipy/scipy-sphinx-theme.git")
2937 (commit "c466764e2231ba132c09826b5b138fffa1cfcec3")))
2938 (sha256
2939 (base32
2940 "0q2y87clwlsgc7wvlsn9pzyssybcq10plwhq2w1ydykfsyyqbmkl"))))
2941 ,@(package-native-inputs python-numpy)))
2942 (arguments
2943 `(#:tests? #f ; we're only generating the documentation
2944 #:phases
2945 (modify-phases %standard-phases
2946 (delete 'build)
2947 (replace 'install
2948 (lambda* (#:key inputs outputs #:allow-other-keys)
2949 (let* ((data (string-append (assoc-ref outputs "out") "/share"))
2950 (doc (string-append
2951 data "/doc/" ,name "-"
2952 ,(package-version python-numpy)))
2953 (info-reader (string-append data "/info"))
2954 (html (string-append doc "/html"))
2955 (scipy-sphinx-theme "scipy-sphinx-theme")
2956 (sphinx-theme-checkout (assoc-ref inputs scipy-sphinx-theme))
2957 (pyver ,(string-append "PYVER=")))
2958
2959 ;; FIXME: this is needed to for texlive-union to generate
2960 ;; fonts, which are not found.
2961 (setenv "HOME" "/tmp")
2962
2963 (with-directory-excursion "doc"
2964 (copy-recursively sphinx-theme-checkout scipy-sphinx-theme)
2965 (mkdir-p html)
2966 (system* "make" "html" pyver)
2967 (system* "make" "latex" "PAPER=a4" pyver)
2968 (system* "make" "-C" "build/latex"
2969 "all-pdf" "PAPER=a4" pyver)
2970 ;; FIXME: Generation of the info file fails.
2971 ;; (system* "make" "info" pyver)
2972 ;; (mkdir-p info)
2973 ;; (copy-file "build/texinfo/numpy.info"
2974 ;; (string-append info "/numpy.info"))
2975 (for-each (lambda (file)
2976 (copy-file (string-append "build/latex" file)
2977 (string-append doc file)))
2978 '("/numpy-ref.pdf" "/numpy-user.pdf"))
2979 (with-directory-excursion "build/html"
2980 (for-each (lambda (file)
2981 (let* ((dir (dirname file))
2982 (tgt-dir (string-append html "/" dir)))
2983 (unless (equal? "." dir)
2984 (mkdir-p tgt-dir))
2985 (install-file file html)))
2986 (find-files "." ".*")))))
2987 #t)))))
2988 (home-page (package-home-page python-numpy))
2989 (synopsis "Documentation for the python-numpy package")
2990 (description (package-description python-numpy))
2991 (license (package-license python-numpy))))
2992
2993(define-public python2-numpy-documentation
2994 (let ((numpy-documentation (package-with-python2 python-numpy-documentation)))
2995 (package
2996 (inherit numpy-documentation)
2997 (native-inputs `(("python2-functools32" ,python2-functools32)
2998 ,@(package-native-inputs numpy-documentation))))))
2999
3000(define-public python-pygit2
3001 (package
3002 (name "python-pygit2")
3003 (version "0.27.3")
3004 (source
3005 (origin
3006 (method url-fetch)
3007 (uri (pypi-uri "pygit2" version))
3008 (sha256
3009 (base32
3010 "046ahvsb7a20sgvscqfm3cb32sp3sii4gim9vz7zzrkf7yz16xlv"))))
3011 (build-system python-build-system)
3012 (arguments
3013 '(#:phases
3014 (modify-phases %standard-phases
3015 ;; Remove after the next update. See:
3016 ;; https://github.com/libgit2/pygit2/pull/851
3017 (add-after 'unpack 'compile-with-cffi
3018 (lambda _
3019 (substitute* "setup.py"
3020 (("install_requires")
3021 "setup_requires=['cffi'],\n install_requires"))
3022 #t))
3023 (add-after 'unpack 'fix-dependency-versioning
3024 (lambda _
3025 (substitute* "setup.py"
3026 (("<") "<="))
3027 #t)))))
3028 (propagated-inputs
3029 `(("python-six" ,python-six)
3030 ("python-cffi" ,python-cffi)
3031 ("libgit2" ,libgit2)
3032 ("python-tox" ,python-tox)))
3033 (native-inputs
3034 `(("python-pytest" ,python-pytest)))
3035 (home-page "https://github.com/libgit2/pygit2")
3036 (synopsis "Python bindings for libgit2")
3037 (description "Pygit2 is a set of Python bindings to the libgit2 shared
3038library, libgit2 implements Git plumbing.")
3039 ;; GPL2.0 only, with linking exception.
3040 (license license:gpl2)))
3041
3042(define-public python2-pygit2
3043 (package-with-python2 python-pygit2))
3044
3045(define-public python-pyparsing
3046 (package
3047 (name "python-pyparsing")
3048 (version "2.2.1")
3049 (source
3050 (origin
3051 (method url-fetch)
3052 (uri (pypi-uri "pyparsing" version))
3053 (sha256
3054 (base32 "06dgd0iilvf8m0ssmfpcbh8l6jf0zkp8adbb84llksg17crfx4zl"))))
3055 (build-system python-build-system)
3056 (outputs '("out" "doc"))
3057 (arguments
3058 `(#:tests? #f ; no test target
3059 #:phases
3060 (modify-phases %standard-phases
3061 (add-after 'install 'install-doc
3062 (lambda* (#:key outputs #:allow-other-keys)
3063 (let* ((doc (string-append (assoc-ref outputs "doc")
3064 "/share/doc/" ,name "-" ,version))
3065 (html-doc (string-append doc "/html"))
3066 (examples (string-append doc "/examples")))
3067 (mkdir-p html-doc)
3068 (mkdir-p examples)
3069 (for-each
3070 (lambda (dir tgt)
3071 (map (lambda (file)
3072 (install-file file tgt))
3073 (find-files dir ".*")))
3074 (list "docs" "htmldoc" "examples")
3075 (list doc html-doc examples))
3076 #t))))))
3077 (home-page "https://github.com/pyparsing/pyparsing")
3078 (synopsis "Python parsing class library")
3079 (description
3080 "The pyparsing module is an alternative approach to creating and
3081executing simple grammars, vs. the traditional lex/yacc approach, or the use
3082of regular expressions. The pyparsing module provides a library of classes
3083that client code uses to construct the grammar directly in Python code.")
3084 (license license:expat)))
3085
3086(define-public python2-pyparsing
3087 (package-with-python2 python-pyparsing))
3088
3089(define-public python-numpydoc
3090 (package
3091 (name "python-numpydoc")
3092 (version "0.8.0")
3093 (source
3094 (origin
3095 (method url-fetch)
3096 (uri (pypi-uri "numpydoc" version))
3097 (sha256
3098 (base32
3099 "1zazxg3m8j4fksv3f7v7vpf4bj9qb1vj3r326am0vdip141vzx31"))))
3100 (build-system python-build-system)
3101 (propagated-inputs
3102 `(("python-sphinx" ,python-sphinx)))
3103 (native-inputs
3104 `(("python-nose" ,python-nose)))
3105 (home-page "https://pypi.python.org/pypi/numpydoc")
3106 (synopsis
3107 "Numpy's Sphinx extensions")
3108 (description
3109 "Sphinx extension to support docstrings in Numpy format.")
3110 (license license:bsd-2)))
3111
3112(define-public python2-numpydoc
3113 (package-with-python2 python-numpydoc))
3114
3115(define-public python-numexpr
3116 (package
3117 (name "python-numexpr")
3118 (version "2.6.5")
3119 (source
3120 (origin
3121 (method url-fetch)
3122 (uri (pypi-uri "numexpr" version))
3123 (sha256
3124 (base32
3125 "1frnbcwmsi312154x274xl28xazr1k8vjby83fwyla2n10a81bgq"))))
3126 (build-system python-build-system)
3127 (arguments `(#:tests? #f)) ; no tests included
3128 (propagated-inputs
3129 `(("python-numpy" ,python-numpy)))
3130 (home-page "https://github.com/pydata/numexpr")
3131 (synopsis "Fast numerical expression evaluator for NumPy")
3132 (description
3133 "Numexpr is a fast numerical expression evaluator for NumPy. With it,
3134expressions that operate on arrays are accelerated and use less memory than
3135doing the same calculation in Python. In addition, its multi-threaded
3136capabilities can make use of all your cores, which may accelerate
3137computations, most specially if they are not memory-bounded (e.g. those using
3138transcendental functions).")
3139 (license license:expat)))
3140
3141(define-public python2-numexpr
3142 (package-with-python2 python-numexpr))
3143
3144(define-public python-cycler
3145 (package
3146 (name "python-cycler")
3147 (version "0.10.0")
3148 (source (origin
3149 (method url-fetch)
3150 (uri (pypi-uri "cycler" version))
3151 (sha256
3152 (base32
3153 "1n69n23fak1gjxlrbhqisi2b9pv3ckrfj98llx3p53953082syyd"))))
3154 (build-system python-build-system)
3155 (arguments
3156 ;; XXX: The current version requires 'coveralls' which we don't have.
3157 ;; Enable this for the next release which uses 'python-pytest'.
3158 '(#:tests? #f))
3159 (propagated-inputs
3160 `(("python-six" ,python-six)))
3161 (home-page "http://matplotlib.org/cycler/")
3162 (synopsis "Composable keyword argument iterator")
3163 (description
3164 "When using @code{matplotlib} and plotting more than one line, it is
3165common to want to be able to want to be able to cycle over one or more artist
3166styles; but the plotting logic can quickly become involved.
3167To address this and enable easy cycling over arbitrary @code{kwargs}, the
3168@code{Cycler} class was developed.")
3169 (license license:bsd-3)))
3170
3171(define-public python2-cycler
3172 (package-with-python2 python-cycler))
3173
3174(define-public python-colorspacious
3175 (package
3176 (name "python-colorspacious")
3177 (version "1.1.0")
3178 (source
3179 (origin
3180 (method url-fetch)
3181 (uri (string-append "https://github.com/njsmith/colorspacious/archive/v"
3182 version ".tar.gz"))
3183 (file-name (string-append name "-" version))
3184 (sha256
3185 (base32 "1vflh5jm32qb0skza2i8pjacv09w6gq84fqpp2nj77s0rbmzgr4k"))))
3186 (build-system python-build-system)
3187 (propagated-inputs
3188 `(("python-numpy" ,python-numpy)))
3189 (native-inputs
3190 `(("python-nose" ,python-nose)))
3191 (arguments
3192 `(#:phases
3193 (modify-phases %standard-phases
3194 (replace 'check
3195 (lambda _
3196 (zero? (system* "nosetests" "--all-modules" "-v" "colorspacious")))))))
3197 (home-page "https://github.com/njsmith/colorspacious")
3198 (synopsis "Python library for colorspace conversions")
3199 (description "@code{colorspacious} is a Python library that lets you
3200convert between colorspaces like sRGB, XYZ, CIEL*a*b*, CIECAM02, CAM02-UCS, etc.")
3201 (license license:expat)))
3202
3203(define-public python2-colorspacious
3204 (package-with-python2 python-colorspacious))
3205
3206(define-public python-matplotlib
3207 (package
3208 (name "python-matplotlib")
3209 (version "2.2.3")
3210 (source
3211 (origin
3212 (method url-fetch)
3213 (uri (pypi-uri "matplotlib" version))
3214 (sha256
3215 (base32
3216 "1rcc7x9ig3hpchkc4cwdvym3y451w74275fxr455zkfagrsvymbk"))))
3217 (build-system python-build-system)
3218 (propagated-inputs ; the following packages are all needed at run time
3219 `(("python-cycler" ,python-cycler)
3220 ("python-kiwisolver" ,python-kiwisolver)
3221 ("python-pyparsing" ,python-pyparsing)
3222 ("python-pygobject" ,python-pygobject)
3223 ("gobject-introspection" ,gobject-introspection)
3224 ("python-tkinter" ,python "tk")
3225 ("python-dateutil" ,python-dateutil)
3226 ("python-numpy" ,python-numpy)
3227 ("python-pillow" ,python-pillow)
3228 ("python-pytz" ,python-pytz)
3229 ("python-six" ,python-six)
3230 ;; The 'gtk+' package (and 'gdk-pixbuf', 'atk' and 'pango' propagated
3231 ;; from 'gtk+') provides the required 'typelib' files used by
3232 ;; 'gobject-introspection'. The location of these files is set with the
3233 ;; help of the environment variable GI_TYPELIB_PATH. At build time this
3234 ;; is done automatically by a 'native-search-path' procedure. However,
3235 ;; at run-time the user must set this variable as follows:
3236 ;;
3237 ;; export GI_TYPELIB_PATH=~/.guix-profile/lib/girepository-1.0
3238 ("gtk+" ,gtk+)
3239 ;; From version 1.4.0 'matplotlib' makes use of 'cairocffi' instead of
3240 ;; 'pycairo'. However, 'pygobject' makes use of a 'pycairo' 'context'
3241 ;; object. For this reason we need to import both libraries.
3242 ;; https://pythonhosted.org/cairocffi/cffi_api.html#converting-pycairo
3243 ("python-pycairo" ,python-pycairo)
3244 ;; XXX: qtwebkit cannot be built reliably.
3245 ("python-pyqt" ,python-pyqt-without-qtwebkit)
3246 ("python-cairocffi" ,python-cairocffi)))
3247 (inputs
3248 `(("libpng" ,libpng)
3249 ("imagemagick" ,imagemagick)
3250 ("freetype" ,freetype)
3251 ("cairo" ,cairo)
3252 ("glib" ,glib)
3253 ;; FIXME: Add backends when available.
3254 ;("python-wxpython" ,python-wxpython)
3255 ("tcl" ,tcl)
3256 ("tk" ,tk)))
3257 (native-inputs
3258 `(("pkg-config" ,pkg-config)
3259 ("python-nose" ,python-nose)
3260 ("python-mock" ,python-mock)))
3261 (arguments
3262 `(#:phases
3263 (modify-phases %standard-phases
3264 (add-before 'build 'configure-environment
3265 (lambda* (#:key outputs inputs #:allow-other-keys)
3266 (let ((cairo (assoc-ref inputs "cairo"))
3267 (gtk+ (assoc-ref inputs "gtk+")))
3268 ;; Setting these directories in the 'basedirlist' of 'setup.cfg'
3269 ;; has not effect.
3270 (setenv "LD_LIBRARY_PATH"
3271 (string-append cairo "/lib:" gtk+ "/lib"))
3272 (setenv "HOME" (getcwd))
3273 (call-with-output-file "setup.cfg"
3274 (lambda (port)
3275 (format port "[directories]~%
3276basedirlist = ~a,~a~%
3277 [rc_options]~%
3278backend = TkAgg~%"
3279 (assoc-ref inputs "tcl")
3280 (assoc-ref inputs "tk")))))
3281 #t)))))
3282 (home-page "http://matplotlib.org")
3283 (synopsis "2D plotting library for Python")
3284 (description
3285 "Matplotlib is a Python 2D plotting library which produces publication
3286quality figures in a variety of hardcopy formats and interactive environments
3287across platforms. Matplotlib can be used in Python scripts, the python and
3288ipython shell, web application servers, and six graphical user interface
3289toolkits.")
3290 (license license:psfl)
3291 (properties `((python2-variant . ,(delay python2-matplotlib))))))
3292
3293(define-public python2-matplotlib
3294 (let ((matplotlib (package-with-python2
3295 (strip-python2-variant python-matplotlib))))
3296 (package (inherit matplotlib)
3297 ;; Make sure to use special packages for Python 2 instead
3298 ;; of those automatically rewritten by package-with-python2.
3299 (propagated-inputs
3300 `(("python2-pycairo" ,python2-pycairo)
3301 ("python2-backports-functools-lru-cache"
3302 ,python2-backports-functools-lru-cache)
3303 ("python2-functools32" ,python2-functools32)
3304 ("python2-pygobject-2" ,python2-pygobject-2)
3305 ("python2-subprocess32" ,python2-subprocess32)
3306 ("python2-tkinter" ,python-2 "tk")
3307 ,@(fold alist-delete (package-propagated-inputs matplotlib)
3308 '("python-pycairo" "python-pygobject" "python-tkinter")))))))
3309
3310(define-public python-matplotlib-documentation
3311 (package
3312 (name "python-matplotlib-documentation")
3313 (version (package-version python-matplotlib))
3314 (source (package-source python-matplotlib))
3315 (build-system python-build-system)
3316 (native-inputs
3317 `(("python-matplotlib" ,python-matplotlib)
3318 ("python-colorspacious" ,python-colorspacious)
3319 ("python-sphinx" ,python-sphinx)
3320 ("python-sphinx-gallery" ,python-sphinx-gallery)
3321 ("python-numpydoc" ,python-numpydoc)
3322 ("python-ipython" ,python-ipython)
3323 ("python-mock" ,python-mock)
3324 ("graphviz" ,graphviz)
3325 ("texlive" ,texlive)
3326 ("texinfo" ,texinfo)
3327 ,@(package-native-inputs python-matplotlib)))
3328 (arguments
3329 `(#:tests? #f ; we're only generating documentation
3330 #:phases
3331 (modify-phases %standard-phases
3332 (replace 'build
3333 (lambda _
3334 (chdir "doc")
3335 ;; Produce pdf in 'A4' format.
3336 (substitute* "conf.py"
3337 (("latex_paper_size = 'letter'") "")
3338 ;; latex_paper_size is deprecated -> set paper size using
3339 ;; latex_elements
3340 (("latex_elements\\['pointsize'\\] = '11pt'" match)
3341 ;; insert at a point where latex_elements{} is defined:
3342 (string-append match "\nlatex_elements['papersize'] = 'a4paper'")))
3343 (invoke "make" "SPHINXBUILD=sphinx-build" "html" "latex" "texinfo")))
3344 (replace 'install
3345 (lambda* (#:key inputs outputs #:allow-other-keys)
3346 (let* ((data (string-append (assoc-ref outputs "out") "/share"))
3347 (doc (string-append data "/doc/python-matplotlib-" ,version))
3348 (info (string-append data "/info"))
3349 (html (string-append doc "/html")))
3350 (mkdir-p html)
3351 (mkdir-p info)
3352 (copy-recursively "build/html" html)
3353 (symlink (string-append html "/_images")
3354 (string-append info "/matplotlib-figures"))
3355 (with-directory-excursion "build/texinfo"
3356 (substitute* "matplotlib.texi"
3357 (("@image\\{([^,]*)" all file)
3358 (string-append "@image{matplotlib-figures/" file)))
3359 (symlink (string-append html "/_images")
3360 "./matplotlib-figures")
3361 (system* "makeinfo" "--no-split"
3362 "-o" "matplotlib.info" "matplotlib.texi"))
3363 (copy-file "build/texinfo/matplotlib.info"
3364 (string-append info "/matplotlib.info"))
3365 (copy-file "build/latex/Matplotlib.pdf"
3366 (string-append doc "/Matplotlib.pdf")))
3367 #t)))))
3368 (home-page (package-home-page python-matplotlib))
3369 (synopsis "Documentation for the python-matplotlib package")
3370 (description (package-description python-matplotlib))
3371 (license (package-license python-matplotlib))))
3372
3373(define-public python2-matplotlib-documentation
3374 (package-with-python2 python-matplotlib-documentation))
3375
3376(define-public python2-pysnptools
3377 (package
3378 (name "python2-pysnptools")
3379 (version "0.3.9")
3380 (source
3381 (origin
3382 (method url-fetch)
3383 (uri (pypi-uri "pysnptools" version ".zip"))
3384 (sha256
3385 (base32
3386 "1wybggjzz8zw7aav4pjsg2h22xp17a1lghrprza1pxwlm7wf96y2"))))
3387 (build-system python-build-system)
3388 (arguments
3389 `(#:python ,python-2)) ; only Python 2.7 is supported
3390 (propagated-inputs
3391 `(("python2-numpy" ,python2-numpy)
3392 ("python2-scipy" ,python2-scipy)
3393 ("python2-pandas" ,python2-pandas)))
3394 (native-inputs
3395 `(("python2-cython" ,python2-cython)))
3396 (native-inputs
3397 `(("unzip" ,unzip)))
3398 (home-page "http://research.microsoft.com/en-us/um/redmond/projects/mscompbio/")
3399 (synopsis "Library for reading and manipulating genetic data")
3400 (description
3401 "PySnpTools is a library for reading and manipulating genetic data. It
3402can, for example, efficiently read whole PLINK *.bed/bim/fam files or parts of
3403those files. It can also efficiently manipulate ranges of integers using set
3404operators such as union, intersection, and difference.")
3405 (license license:asl2.0)))
3406
3407(define-public python-scipy
3408 (package
3409 (name "python-scipy")
3410 (version "1.1.0")
3411 (source
3412 (origin
3413 (method url-fetch)
3414 (uri (pypi-uri "scipy" version))
3415 (sha256
3416 (base32
3417 "1lfg686w6vv2m2dfs8v9d0bf2i18z7wz5vgzjnkgmpr4hi0550w7"))))
3418 (build-system python-build-system)
3419 (propagated-inputs
3420 `(("python-numpy" ,python-numpy)
3421 ("python-matplotlib" ,python-matplotlib)
3422 ("python-pyparsing" ,python-pyparsing)))
3423 (inputs
3424 `(("lapack" ,lapack)
3425 ("openblas" ,openblas)))
3426 (native-inputs
3427 `(("python-cython" ,python-cython)
3428 ("python-pytest" ,python-pytest)
3429 ("python-sphinx" ,python-sphinx)
3430 ("python-numpydoc" ,python-numpydoc)
3431 ("gfortran" ,gfortran)
3432 ("perl" ,perl)
3433 ("which" ,which)))
3434 (outputs '("out" "doc"))
3435 (arguments
3436 `(#:phases
3437 (modify-phases %standard-phases
3438 (add-after 'unpack 'disable-broken-tests
3439 (lambda _
3440 (substitute* "scipy/sparse/linalg/dsolve/tests/test_linsolve.py"
3441 (("^( +)def test_threads_parallel\\(self\\):" m indent)
3442 (string-append indent
3443 "@pytest.mark.skip(reason=\"Disabled by Guix\")\n"
3444 m)))
3445 (substitute* "scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py"
3446 (("^def test_parallel_threads\\(\\):" m)
3447 (string-append "@pytest.mark.skip(reason=\"Disabled by Guix\")\n"
3448 m)))
3449 #t))
3450 (add-before 'build 'configure-openblas
3451 (lambda* (#:key inputs #:allow-other-keys)
3452 (call-with-output-file "site.cfg"
3453 (lambda (port)
3454 (format port
3455 "[blas]
3456libraries = openblas
3457library_dirs = ~a/lib
3458include_dirs = ~a/include
3459
3460# backslash-n to make emacs happy
3461\n[atlas]
3462library_dirs = ~a/lib
3463atlas_libs = openblas
3464"
3465 (assoc-ref inputs "openblas")
3466 (assoc-ref inputs "openblas")
3467 (assoc-ref inputs "openblas"))))
3468 #t))
3469 (add-after 'install 'install-doc
3470 (lambda* (#:key inputs outputs #:allow-other-keys)
3471 (let* ((data (string-append (assoc-ref outputs "doc") "/share"))
3472 (doc (string-append data "/doc/" ,name "-" ,version))
3473 (html (string-append doc "/html"))
3474 (pyver ,(string-append "PYVER=" (version-major+minor
3475 (package-version python))))
3476 ;; By default it tries to run sphinx-build through the Python
3477 ;; interpreter which won't work with our shell wrapper.
3478 (sphinxbuild "SPHINXBUILD=LANG=C sphinx-build"))
3479 ;; Make installed package available for building the
3480 ;; documentation
3481 (add-installed-pythonpath inputs outputs)
3482 (with-directory-excursion "doc"
3483 ;; Fix generation of images for mathematical expressions.
3484 (substitute* (find-files "source" "conf\\.py")
3485 (("pngmath_use_preview = True")
3486 "pngmath_use_preview = False"))
3487 (mkdir-p html)
3488 (invoke "make" "html" pyver sphinxbuild)
3489 (with-directory-excursion "build/html"
3490 (for-each (lambda (file)
3491 (let* ((dir (dirname file))
3492 (tgt-dir (string-append html "/" dir)))
3493 (install-file file html)))
3494 (find-files "." ".*")))))
3495 #t))
3496 ;; Tests can only be run after the library has been installed and not
3497 ;; within the source directory.
3498 (delete 'check)
3499 (add-after 'install 'check
3500 (lambda* (#:key inputs outputs #:allow-other-keys)
3501 (add-installed-pythonpath inputs outputs)
3502 (with-directory-excursion "/tmp"
3503 (invoke "python" "-c"
3504 "import scipy; scipy.test(verbose=2)")))))))
3505 (home-page "https://www.scipy.org/")
3506 (synopsis "The Scipy library provides efficient numerical routines")
3507 (description "The SciPy library is one of the core packages that make up
3508the SciPy stack. It provides many user-friendly and efficient numerical
3509routines such as routines for numerical integration and optimization.")
3510 (properties `((python2-variant . ,(delay python2-scipy))))
3511 (license license:bsd-3)))
3512
3513(define-public python2-scipy
3514 (package-with-python2
3515 (strip-python2-variant python-scipy)))
3516
3517(define-public python-socksipy-branch
3518 (package
3519 (name "python-socksipy-branch")
3520 (version "1.01")
3521 (source
3522 (origin
3523 (method url-fetch)
3524 (uri (pypi-uri "SocksiPy-branch" version))
3525 (sha256
3526 (base32
3527 "01l41v4g7fy9fzvinmjxy6zcbhgqaif8dhdqm4w90fwcw9h51a8p"))))
3528 (build-system python-build-system)
3529 (arguments
3530 `(#:tests? #f)) ; There are no tests
3531 (home-page "https://code.google.com/archive/p/socksipy-branch/")
3532 (synopsis "Python SOCKS module")
3533 (description
3534 "SocksiPy - A Python SOCKS client module. It provides a
3535socket-like interface that supports connections to any TCP
3536service through the use of a SOCKS4, SOCKS5 or HTTP proxy.
3537The original version was developed by Dan Haim, this is a
3538branch created by Mario Vilas to address some open issues,
3539as the original project seems to have been abandoned circa 2007.")
3540 (license license:bsd-3)))
3541
3542(define-public python2-socksipy-branch
3543 (package-with-python2 python-socksipy-branch))
3544
3545(define-public python-pycodestyle
3546 (package
3547 (name "python-pycodestyle")
3548 (version "2.4.0")
3549 (source
3550 (origin
3551 (method url-fetch)
3552 (uri (pypi-uri "pycodestyle" version))
3553 (sha256
3554 (base32
3555 "0fhy4vnlgpjq4qd1wdnl6pvdw7rah0ypmn8c9mkhz8clsndskz6b"))))
3556 (build-system python-build-system)
3557 (home-page "https://pycodestyle.readthedocs.io/")
3558 (synopsis "Python style guide checker")
3559 (description "@code{pycodestyle} (formerly pep8) is a tool to check
3560Python code against some of the style conventions in
3561@url{http://www.python.org/dev/peps/pep-0008/,PEP 8}.")
3562 (license license:expat)))
3563
3564(define-public python2-pycodestyle
3565 (package-with-python2 python-pycodestyle))
3566
3567(define-public python-multidict
3568 (package
3569 (name "python-multidict")
3570 (version "4.2.0")
3571 (source
3572 (origin
3573 (method url-fetch)
3574 (uri (pypi-uri "multidict" version))
3575 (sha256
3576 (base32
3577 "1vf5bq8hn5a9rvhr5v4fwbmarfsp35hhr8gs74kqfijy34j2f194"))))
3578 (build-system python-build-system)
3579 (native-inputs
3580 `(("python-pytest" ,python-pytest)
3581 ("python-pytest-runner" ,python-pytest-runner)))
3582 (home-page "https://github.com/aio-libs/multidict/")
3583 (synopsis "Multidict implementation")
3584 (description "Multidict is dict-like collection of key-value pairs
3585where key might be occurred more than once in the container.")
3586 (license license:asl2.0)))
3587
3588(define-public python-orderedmultidict
3589 (package
3590 (name "python-orderedmultidict")
3591 (version "0.7.11")
3592 (source
3593 (origin
3594 (method url-fetch)
3595 (uri (pypi-uri "orderedmultidict" version))
3596 (sha256
3597 (base32
3598 "0dls862ibm7qbq4fnvwx0xn1v9hwyzywbff8xjjdr42dd75208yw"))))
3599 (build-system python-build-system)
3600 (arguments
3601 `(#:phases
3602 (modify-phases %standard-phases
3603 (add-after 'unpack 'fix-tests
3604 (lambda _
3605 ;; The package uses nosetest for running the tests.
3606 ;; Adding this initfile allows to run the test suite
3607 ;; without requiring nosetest.
3608 (zero? (system* "touch" "tests/__init__.py")))))))
3609 (propagated-inputs
3610 `(("python-six" ,python-six)))
3611 (native-inputs
3612 `(("python-pycodestyle" ,python-pycodestyle)))
3613 (home-page "https://github.com/gruns/orderedmultidict")
3614 (synopsis "Python Ordered Multivalue Dictionary - omdict")
3615 (description "This package contains a library for ordered multivalue
3616dictionaries. A multivalue dictionary is a dictionary that can store
3617multiple values for the same key. An ordered multivalue dictionary is a
3618multivalue dictionary that retains the order of insertions and deletions.")
3619 (license license:unlicense)))
3620
3621(define-public python2-orderedmultidict
3622 (package-with-python2 python-orderedmultidict))
3623
3624(define-public python-autopep8
3625 (package
3626 (name "python-autopep8")
3627 (version "1.3.5")
3628 (source
3629 (origin
3630 (method url-fetch)
3631 (uri (pypi-uri "autopep8" version))
3632 (sha256
3633 (base32
3634 "192bvhzi4d0claqxgzymvv7k3qnj627742bc8sgxpzjj42pd9112"))))
3635 (build-system python-build-system)
3636 (propagated-inputs
3637 `(("python-pycodestyle" ,python-pycodestyle)))
3638 (home-page "https://github.com/hhatto/autopep8")
3639 (synopsis "Format Python code according to the PEP 8 style guide")
3640 (description
3641 "@code{autopep8} automatically formats Python code to conform to
3642the PEP 8 style guide. It uses the pycodestyle utility to determine
3643what parts of the code needs to be formatted. @code{autopep8} is
3644capable of fixing most of the formatting issues that can be reported
3645by pycodestyle.")
3646 (license (license:non-copyleft
3647 "https://github.com/hhatto/autopep8/blob/master/LICENSE"))))
3648
3649(define-public python2-autopep8
3650 (package-with-python2 python-autopep8))
3651
3652(define-public python-distutils-extra
3653 (package
3654 (name "python-distutils-extra")
3655 (version "2.38")
3656 (source
3657 (origin
3658 (method url-fetch)
3659 (uri (string-append "https://launchpad.net/python-distutils-extra/trunk/"
3660 version "/+download/python-distutils-extra-"
3661 version ".tar.gz"))
3662 (sha256
3663 (base32
3664 "0lx15kcbby9zisx33p2h5hgakgwh2bvh0ibag8z0px4j6ifhs41x"))))
3665 (build-system python-build-system)
3666 (home-page "https://launchpad.net/python-distutils-extra/")
3667 (synopsis "Enhancements to Python's distutils")
3668 (description
3669 "The python-distutils-extra module enables you to easily integrate
3670gettext support, themed icons, and scrollkeeper-based documentation into
3671Python's distutils.")
3672 (license license:gpl2)))
3673
3674(define-public python2-distutils-extra
3675 (package-with-python2 python-distutils-extra))
3676
3677(define-public python2-elib.intl
3678 (package
3679 (name "python2-elib.intl")
3680 (version "0.0.3")
3681 (source
3682 (origin
3683 ;; This project doesn't tag releases or publish tarballs, so we take
3684 ;; source from a (semi-arbitrary, i.e. latest as of now) git commit.
3685 (method git-fetch)
3686 (uri (git-reference
3687 (url "https://github.com/dieterv/elib.intl.git")
3688 (commit "d09997cfef")))
3689 (file-name (string-append name "-" version "-checkout"))
3690 (sha256
3691 (base32
3692 "0y7vzff9xgbnaay7m0va1arl6g68ncwrvbgwl7jqlclsahzzb09d"))))
3693 (build-system python-build-system)
3694 (arguments
3695 ;; incompatible with Python 3 (exception syntax)
3696 `(#:python ,python-2
3697 #:tests? #f))
3698 (home-page "https://github.com/dieterv/elib.intl")
3699 (synopsis "Enhanced internationalization for Python")
3700 (description
3701 "The elib.intl module provides enhanced internationalization (I18N)
3702services for your Python modules and applications.")
3703 (license license:lgpl3+)))
3704
3705(define-public python-olefile
3706 (package
3707 (name "python-olefile")
3708 (version "0.45.1")
3709 (source
3710 (origin
3711 (method url-fetch)
3712 (uri (string-append "https://github.com/decalage2/olefile/archive/v"
3713 version ".tar.gz"))
3714 (file-name (string-append name "-" version ".tar.gz"))
3715 (sha256
3716 (base32
3717 "18ai19zwagm6nli14k8bii31ipbab2rp7plrvsm6gmfql551a8ai"))))
3718 (build-system python-build-system)
3719 (home-page
3720 "https://www.decalage.info/python/olefileio")
3721 (synopsis "Read and write Microsoft OLE2 files.")
3722 (description
3723 "@code{olefile} can parse, read and write Microsoft OLE2 files (Structured
3724Storage or Compound Document, Microsoft Office). It is an improved version of
3725the OleFileIO module from PIL, the Python Image Library.")
3726 (license license:bsd-3)))
3727
3728(define-public python2-olefile
3729 (package-with-python2 python-olefile))
3730
3731(define-public python-pillow
3732 (package
3733 (name "python-pillow")
3734 (version "5.4.1")
3735 (source
3736 (origin
3737 (method url-fetch)
3738 (uri (pypi-uri "Pillow" version))
3739 (sha256
3740 (base32
3741 "17waygkhhzjd75kajlfw9v57mbb41lcpg6cvkdijqd7smm76ccsj"))))
3742 (build-system python-build-system)
3743 (native-inputs
3744 `(("python-pytest" ,python-pytest)))
3745 (inputs
3746 `(("freetype" ,freetype)
3747 ("lcms" ,lcms)
3748 ("zlib" ,zlib)
3749 ("libjpeg" ,libjpeg)
3750 ("openjpeg" ,openjpeg)
3751 ("libtiff" ,libtiff)
3752 ("libwebp" ,libwebp)))
3753 (propagated-inputs
3754 `(("python-olefile" ,python-olefile)))
3755 (arguments
3756 `(#:phases
3757 (modify-phases %standard-phases
3758 (add-after 'unpack 'patch-ldconfig
3759 (lambda _
3760 (substitute* "setup.py"
3761 (("\\['/sbin/ldconfig', '-p'\\]") "['true']"))))
3762 (delete 'check) ; We must run checks after python-pillow is installed.
3763 (add-after 'install 'check-installed
3764 (lambda* (#:key outputs inputs #:allow-other-keys)
3765 (begin
3766 (setenv "HOME" (getcwd))
3767 ;; Make installed package available for running the tests.
3768 (add-installed-pythonpath inputs outputs)
3769 (invoke "python" "selftest.py" "--installed")
3770 (invoke "python" "-m" "pytest" "-vv")))))))
3771 (home-page "https://python-pillow.org")
3772 (synopsis "Fork of the Python Imaging Library")
3773 (description
3774 "The Python Imaging Library adds image processing capabilities to your
3775Python interpreter. This library provides extensive file format support, an
3776efficient internal representation, and fairly powerful image processing
3777capabilities. The core image library is designed for fast access to data
3778stored in a few basic pixel formats. It should provide a solid foundation for
3779a general image processing tool.")
3780 (license (license:x11-style
3781 "http://www.pythonware.com/products/pil/license.htm"
3782 "The PIL Software License"))))
3783
3784(define-public python2-pillow
3785 (package-with-python2 python-pillow))
3786
3787(define-public python-pycparser
3788 (package
3789 (name "python-pycparser")
3790 (version "2.18")
3791 (source
3792 (origin
3793 (method url-fetch)
3794 (uri (pypi-uri "pycparser" version))
3795 (sha256
3796 (base32
3797 "09mjyw82ibqzl449g7swy8bfxnfpmas0815d2rkdjlcqw81wma4r"))))
3798 (outputs '("out" "doc"))
3799 (build-system python-build-system)
3800 (native-inputs
3801 `(("pkg-config" ,pkg-config)))
3802 (arguments
3803 `(#:phases
3804 (modify-phases %standard-phases
3805 (replace 'check
3806 (lambda _
3807 (with-directory-excursion "tests"
3808 (zero? (system* "python" "all_tests.py")))))
3809 (add-after 'install 'install-doc
3810 (lambda* (#:key outputs #:allow-other-keys)
3811 (let* ((data (string-append (assoc-ref outputs "doc") "/share"))
3812 (doc (string-append data "/doc/" ,name "-" ,version))
3813 (examples (string-append doc "/examples")))
3814 (mkdir-p examples)
3815 (for-each (lambda (file)
3816 (copy-file (string-append "." file)
3817 (string-append doc file)))
3818 '("/README.rst" "/CHANGES" "/LICENSE"))
3819 (copy-recursively "examples" examples)))))))
3820 (home-page "https://github.com/eliben/pycparser")
3821 (synopsis "C parser in Python")
3822 (description
3823 "Pycparser is a complete parser of the C language, written in pure Python
3824using the PLY parsing library. It parses C code into an AST and can serve as
3825a front-end for C compilers or analysis tools.")
3826 (license license:bsd-3)))
3827
3828(define-public python2-pycparser
3829 (package-with-python2 python-pycparser))
3830
3831(define-public python-pywavelets
3832 (package
3833 (name "python-pywavelets")
3834 (version "1.0.1")
3835 (home-page "https://github.com/PyWavelets/pywt")
3836 (source (origin
3837 (method url-fetch)
3838 (uri (pypi-uri "PyWavelets" version))
3839 (sha256
3840 (base32
3841 "1p3qv2v66ghnqrb1f98wyyhp9dz71jwcd6kfpsax65sfdpiyqp1w"))))
3842 (build-system python-build-system)
3843 (arguments
3844 '(#:modules ((ice-9 ftw)
3845 (srfi srfi-1)
3846 (srfi srfi-26)
3847 (guix build utils)
3848 (guix build python-build-system))
3849 #:phases (modify-phases %standard-phases
3850 (replace 'check
3851 (lambda _
3852 (let ((cwd (getcwd))
3853 (libdir (find (cut string-prefix? "lib." <>)
3854 (scandir "build"))))
3855 (with-directory-excursion (string-append cwd "/build/" libdir)
3856 (invoke "nosetests" "-v" "."))))))))
3857 (native-inputs
3858 `(("python-matplotlib" ,python-matplotlib) ;for tests
3859 ("python-nose" ,python-nose)))
3860 (propagated-inputs
3861 `(("python-numpy" ,python-numpy)))
3862 (synopsis "Wavelet transforms in Python")
3863 (description
3864 "PyWavelets is a library for wavelet transforms in Python. Wavelets are
3865mathematical basis functions that are localized in both time and frequency.
3866Wavelet transforms are time-frequency transforms employing wavelets. They are
3867similar to Fourier transforms, the difference being that Fourier transforms are
3868localized only in frequency instead of in time and frequency.")
3869 (license license:expat)))
3870
3871(define-public python2-pywavelets
3872 (package-with-python2 python-pywavelets))
3873
3874(define-public python-xcffib
3875 (package
3876 (name "python-xcffib")
3877 (version "0.6.0")
3878 (source
3879 (origin
3880 (method url-fetch)
3881 (uri (pypi-uri "xcffib" version))
3882 (sha256
3883 (base32
3884 "04k91yxyb3pgc5lvxmivh8w71yjrap2g57yk3s73x4rm4nvjq51n"))))
3885 (build-system python-build-system)
3886 (inputs
3887 `(("libxcb" ,libxcb)))
3888 (propagated-inputs
3889 `(("python-cffi" ,python-cffi) ; used at run time
3890 ("python-six" ,python-six)))
3891 (arguments
3892 `(;; FIXME: Tests need more work. See ".travis.yml" in the repository.
3893 #:tests? #f
3894 #:phases
3895 (modify-phases %standard-phases
3896 (add-after 'unpack 'fix-libxcb-path
3897 (lambda* (#:key inputs #:allow-other-keys)
3898 (let ((libxcb (assoc-ref inputs "libxcb")))
3899 (substitute* '("xcffib/__init__.py")
3900 (("^soname = \"") (string-append "soname = \"" libxcb "/lib/")))
3901 #t)))
3902 (add-after 'install 'install-doc
3903 (lambda* (#:key outputs #:allow-other-keys)
3904 (let ((doc (string-append (assoc-ref outputs "out") "/share"
3905 "/doc/" ,name "-" ,version)))
3906 (mkdir-p doc)
3907 (copy-file "README.md"
3908 (string-append doc "/README.md"))
3909 #t))))))
3910 (home-page "https://github.com/tych0/xcffib")
3911 (synopsis "XCB Python bindings")
3912 (description
3913 "Xcffib is a replacement for xpyb, an XCB Python bindings. It adds
3914support for Python 3 and PyPy. It is based on cffi.")
3915 (license license:expat)))
3916
3917(define-public python2-xcffib
3918 (package-with-python2 python-xcffib))
3919
3920(define-public python-cairocffi
3921 (package
3922 (name "python-cairocffi")
3923 (version "0.9.0")
3924 (source
3925 (origin
3926 (method url-fetch)
3927 (uri (pypi-uri "cairocffi" version))
3928 (sha256
3929 (base32
3930 "0dq3k4zhqd8cwsf3nyjqvjqm8wkvrjn1wjf44rl3v0h8kqx6qf0m"))
3931 (patches (search-patches "python-cairocffi-dlopen-path.patch"))))
3932 (build-system python-build-system)
3933 (outputs '("out" "doc"))
3934 (inputs
3935 `(("glib" ,glib)
3936 ("gtk+" ,gtk+)
3937 ("gdk-pixbuf" ,gdk-pixbuf)
3938 ("cairo" ,cairo)
3939 ("pango" ,pango)))
3940 (native-inputs
3941 `(("pkg-config" ,pkg-config)
3942 ("python-pytest" ,python-pytest)
3943 ("python-pytest-cov" ,python-pytest-cov)
3944 ("python-pytest-runner" ,python-pytest-runner)
3945 ("python-sphinx" ,python-sphinx)
3946 ("python-docutils" ,python-docutils)))
3947 (propagated-inputs
3948 `(("python-xcffib" ,python-xcffib))) ; used at run time
3949 (arguments
3950 `(#:phases
3951 (modify-phases %standard-phases
3952 (add-after 'unpack 'patch-paths
3953 (lambda* (#:key inputs outputs #:allow-other-keys)
3954 (substitute* (find-files "." "\\.py$")
3955 (("dlopen\\(ffi, 'cairo'")
3956 (string-append "dlopen(ffi, '" (assoc-ref inputs "cairo")
3957 "/lib/libcairo.so.2'"))
3958 (("dlopen\\(ffi, 'gdk-3'")
3959 (string-append "dlopen(ffi, '" (assoc-ref inputs "gtk+")
3960 "/lib/libgtk-3.so.0'"))
3961 (("dlopen\\(ffi, 'gdk_pixbuf-2.0'")
3962 (string-append "dlopen(ffi, '" (assoc-ref inputs "gdk-pixbuf")
3963 "/lib/libgdk_pixbuf-2.0.so.0'"))
3964 (("dlopen\\(ffi, 'glib-2.0'")
3965 (string-append "dlopen(ffi, '" (assoc-ref inputs "glib")
3966 "/lib/libglib-2.0.so.0'"))
3967 (("dlopen\\(ffi, 'gobject-2.0'")
3968 (string-append "dlopen(ffi, '" (assoc-ref inputs "glib")
3969 "/lib/libgobject-2.0.so.0'"))
3970 (("dlopen\\(ffi, 'pangocairo-1.0'")
3971 (string-append "dlopen(ffi, '" (assoc-ref inputs "pango")
3972 "/lib/libpangocairo-1.0.so.0'"))
3973 (("dlopen\\(ffi, 'pango-1.0'")
3974 (string-append "dlopen(ffi, '" (assoc-ref inputs "pango")
3975 "/lib/libpango-1.0.so.0'")))
3976 #t))
3977 (add-after 'install 'install-doc
3978 (lambda* (#:key inputs outputs #:allow-other-keys)
3979 (let* ((data (string-append (assoc-ref outputs "doc") "/share"))
3980 (doc (string-append data "/doc/" ,name "-" ,version))
3981 (html (string-append doc "/html")))
3982 (setenv "LD_LIBRARY_PATH"
3983 (string-append (assoc-ref inputs "cairo") "/lib" ":"
3984 (assoc-ref inputs "gdk-pixbuf") "/lib"))
3985 (setenv "LANG" "en_US.UTF-8")
3986 (mkdir-p html)
3987 (for-each (lambda (file)
3988 (copy-file (string-append "." file)
3989 (string-append doc file)))
3990 '("/README.rst" "/CHANGES" "/LICENSE"))
3991 (system* "python" "setup.py" "build_sphinx")
3992 (copy-recursively "docs/_build/html" html)
3993 #t))))))
3994 (home-page "https://github.com/Kozea/cairocffi")
3995 (synopsis "Python bindings and object-oriented API for Cairo")
3996 (description
3997 "Cairocffi is a CFFI-based drop-in replacement for Pycairo, a set of
3998Python bindings and object-oriented API for cairo. Cairo is a 2D vector
3999graphics library with support for multiple backends including image buffers,
4000PNG, PostScript, PDF, and SVG file output.")
4001 (license license:bsd-3)))
4002
4003(define-public python2-cairocffi
4004 (package-with-python2 python-cairocffi))
4005
4006(define-public python-decorator
4007 (package
4008 (name "python-decorator")
4009 (version "4.3.0")
4010 (source
4011 (origin
4012 (method url-fetch)
4013 (uri (pypi-uri "decorator" version))
4014 (sha256
4015 (base32 "0308djallnh00v112y5b7nadl657ysmkp6vc8xn51d6yzc9zm7n3"))))
4016 (build-system python-build-system)
4017 (home-page "https://pypi.python.org/pypi/decorator/")
4018 (synopsis "Python module to simplify usage of decorators")
4019 (description
4020 "The aim of the decorator module is to simplify the usage of decorators
4021for the average programmer, and to popularize decorators usage giving examples
4022of useful decorators, such as memoize, tracing, redirecting_stdout, locked,
4023etc. The core of this module is a decorator factory.")
4024 (license license:expat)))
4025
4026(define-public python2-decorator
4027 (package-with-python2 python-decorator))
4028
4029(define-public python-drmaa
4030 (package
4031 (name "python-drmaa")
4032 (version "0.7.7")
4033 (source
4034 (origin
4035 (method url-fetch)
4036 (uri (pypi-uri "drmaa" version))
4037 (sha256
4038 (base32 "0xzqriqyvk5b8hszbavsyxd29wm3sxirm8zvvdm73rs2iq7w4hkx"))))
4039 (build-system python-build-system)
4040 ;; The test suite requires libdrmaa which is provided by the cluster
4041 ;; environment. At runtime the environment variable DRMAA_LIBRARY_PATH
4042 ;; should be set to the path of the libdrmaa library.
4043 (arguments '(#:tests? #f))
4044 (native-inputs
4045 `(("python-nose" ,python-nose)))
4046 (home-page "https://pypi.python.org/pypi/drmaa")
4047 (synopsis "Python bindings for the DRMAA library")
4048 (description
4049 "A Python package for Distributed Resource Management (DRM) job
4050submission and control. This package is an implementation of the DRMAA 1.0
4051Python language binding specification.")
4052 (license license:bsd-3)))
4053
4054(define-public python2-drmaa
4055 (package-with-python2 python-drmaa))
4056
4057(define-public python-grako
4058 (package
4059 (name "python-grako")
4060 (version "3.99.9")
4061 (source
4062 (origin
4063 (method url-fetch)
4064 (uri
4065 (pypi-uri "grako" version ".zip"))
4066 (sha256
4067 (base32
4068 "0r63i68wcnv63rfjkasq1ah81frz61a6mzbcnaxhrkdpx84p7hzw"))))
4069 (build-system python-build-system)
4070 (arguments '(#:tests? #f)) ; Test file 'grako.ebnf' is missing from archive.
4071 (native-inputs
4072 `(("unzip" ,unzip)
4073 ("python-pytest" ,python-pytest)
4074 ("python-pytest-runner" ,python-pytest-runner)))
4075 (home-page "https://bitbucket.org/neogeny/grako")
4076 (synopsis "EBNF parser generator")
4077 (description
4078 "Grako takes a grammar in a variation of EBNF as input, and outputs a
4079memoizing PEG/Packrat parser in Python.")
4080 (license license:bsd-3)))
4081
4082(define-public python2-grako
4083 (package-with-python2 python-grako))
4084
4085(define-public python-gridmap
4086 (package
4087 (name "python-gridmap")
4088 (version "0.13.0")
4089 (source
4090 (origin
4091 (method url-fetch)
4092 (uri (string-append
4093 "https://github.com/pygridtools/gridmap/archive/v"
4094 version ".tar.gz"))
4095 (file-name (string-append name "-" version ".tar.gz"))
4096 (sha256
4097 (base32 "1gzjg2k6f14i1msm2b0ax8d9ds1hvk6qd5nlaivg8m4cxqp4cp1x"))))
4098 (build-system python-build-system)
4099 (arguments
4100 '(#:tests? #f)) ; FIXME: Requires python-cherrypy.
4101 (propagated-inputs
4102 `(("python-psutil" ,python-psutil)
4103 ("python-drmaa" ,python-drmaa)
4104 ("python-pyzmq" ,python-pyzmq)))
4105 (home-page "https://github.com/pygridtools/gridmap")
4106 (synopsis "Create jobs on a cluster directly from Python")
4107 (description
4108 "Gridmap is a Python package to allow you to easily create jobs on the
4109cluster directly from Python. You can directly map Python functions onto the
4110cluster without needing to write any wrapper code yourself.")
4111 (license license:gpl3+)))
4112
4113(define-public python2-gridmap
4114 (package-with-python2 python-gridmap))
4115
4116(define-public python-honcho
4117 (package
4118 (name "python-honcho")
4119 (version "1.0.1")
4120 (source
4121 (origin
4122 (method url-fetch)
4123 (uri (string-append
4124 "https://github.com/nickstenning/honcho/archive/v"
4125 version ".tar.gz"))
4126 (file-name (string-append name "-" version ".tar.gz"))
4127 (sha256
4128 (base32 "0zizn61n5z5hq421hkypk9pw8s6fpxw30f4hsg7k4ivwzy3gjw9j"))))
4129 (build-system python-build-system)
4130 (native-inputs
4131 `(("python-pytest" ,python-pytest)
4132 ("python-mock" ,python-mock)
4133 ("python-tox" ,python-tox)
4134 ("which" ,which))) ;for tests
4135 (propagated-inputs
4136 `(("python-jinja2" ,python-jinja2)))
4137 (arguments
4138 `(#:phases
4139 (modify-phases %standard-phases
4140 (delete 'check)
4141 (add-after 'install 'check
4142 (lambda* (#:key outputs inputs #:allow-other-keys)
4143 ;; fix honcho path in testsuite
4144 (substitute* "tests/conftest.py"
4145 (("'honcho'") (string-append "'" (assoc-ref outputs "out")
4146 "/bin/honcho" "'")))
4147 ;; It's easier to run tests after install.
4148 ;; Make installed package available for running the tests
4149 (add-installed-pythonpath inputs outputs)
4150 (zero? (system* "py.test" "-v")))))))
4151 (home-page "https://github.com/nickstenning/honcho")
4152 (synopsis "Manage Procfile-based applications")
4153 (description
4154 "A Procfile is a file which describes how to run an application
4155consisting of serveral processes. honcho starts all listed processes.
4156The output of all running processes is collected by honcho and
4157displayed.")
4158 (license license:expat)))
4159
4160(define-public python2-honcho
4161 (package-with-python2 python-honcho))
4162
4163(define-public python-pexpect
4164 (package
4165 (name "python-pexpect")
4166 (version "4.6.0")
4167 (source
4168 (origin
4169 (method url-fetch)
4170 (uri (pypi-uri "pexpect" version))
4171 (sha256
4172 (base32 "1fla85g47iaxxpjhp9vkxdnv4pgc7rplfy6ja491smrrk0jqi3ia"))))
4173 (build-system python-build-system)
4174 (arguments
4175 `(#:phases
4176 (modify-phases %standard-phases
4177 (add-before 'check 'prepare-tests
4178 (lambda _
4179 (substitute* (find-files "tests")
4180 (("/bin/ls") (which "ls"))
4181 (("/bin/echo") (which "echo"))
4182 (("/bin/which") (which "which"))
4183 ;; Many tests try to use the /bin directory which
4184 ;; is not present in the build environment.
4185 ;; Use one that's non-empty and unlikely to change.
4186 (("/bin'") "/dev'"))
4187 ;; XXX: Socket connection test gets "Connection reset by peer".
4188 ;; Why does it not work? Delete for now.
4189 (delete-file "tests/test_socket.py")
4190 #t))
4191 (replace 'check (lambda _ (invoke "nosetests" "-v"))))))
4192 (native-inputs
4193 `(("python-nose" ,python-nose)
4194 ("python-pytest" ,python-pytest)
4195 ("man-db" ,man-db)
4196 ("which" ,which)
4197 ("bash-full" ,bash))) ;full Bash for 'test_replwrap.py'
4198 (propagated-inputs
4199 `(("python-ptyprocess" ,python-ptyprocess)))
4200 (home-page "http://pexpect.readthedocs.org/")
4201 (synopsis "Controlling interactive console applications")
4202 (description
4203 "Pexpect is a pure Python module for spawning child applications;
4204controlling them; and responding to expected patterns in their output.
4205Pexpect works like Don Libes’ Expect. Pexpect allows your script to spawn a
4206child application and control it as if a human were typing commands.")
4207 (license license:isc)))
4208
4209(define-public python2-pexpect
4210 (package-with-python2 python-pexpect))
4211
4212(define-public python-setuptools-scm
4213 (package
4214 (name "python-setuptools-scm")
4215 (version "3.1.0")
4216 (source (origin
4217 (method url-fetch)
4218 (uri (pypi-uri "setuptools_scm" version))
4219 (sha256
4220 (base32
4221 "0h4bglwfz8b9prqljv8z3w9rgydfyxzaj05bm1y6zs5m6shz548i"))))
4222 (build-system python-build-system)
4223 (home-page "https://github.com/pypa/setuptools_scm/")
4224 (synopsis "Manage Python package versions in SCM metadata")
4225 (description
4226 "Setuptools_scm handles managing your Python package versions in
4227@dfn{software configuration management} (SCM) metadata instead of declaring
4228them as the version argument or in a SCM managed file.")
4229 (license license:expat)))
4230
4231(define-public python2-setuptools-scm
4232 (package-with-python2 python-setuptools-scm))
4233
4234(define-public python-pathpy
4235 (package
4236 (name "python-pathpy")
4237 (version "11.0.1")
4238 (source
4239 (origin
4240 (method url-fetch)
4241 (uri (pypi-uri "path.py" version))
4242 (sha256
4243 (base32 "07x15v8c7ry9bvycw294c9yq6ky9v2b0dalvgi6rn38ilh69vsz7"))))
4244 ;; (outputs '("out" "doc"))
4245 (build-system python-build-system)
4246 (propagated-inputs
4247 `(("python-appdirs" ,python-appdirs)))
4248 (native-inputs
4249 `(("python-setuptools-scm" ,python-setuptools-scm)
4250 ("python-sphinx" ,python-sphinx)
4251 ("python-rst.linker" ,python-rst.linker)
4252 ("python-pytest" ,python-pytest)
4253 ("python-pytest-runner" ,python-pytest-runner)))
4254 (arguments
4255 ;; FIXME: Documentation and tests require "jaraco.packaging".
4256 `(#:tests? #f))
4257 ;; #:phases
4258 ;; (modify-phases %standard-phases
4259 ;; (add-after 'build 'build-doc
4260 ;; (lambda _
4261 ;; (setenv "LANG" "en_US.UTF-8")
4262 ;; (zero? (system* "python" "setup.py" "build_sphinx"))))
4263 ;; (add-after 'install 'install-doc
4264 ;; (lambda* (#:key outputs #:allow-other-keys)
4265 ;; (let* ((data (string-append (assoc-ref outputs "doc") "/share"))
4266 ;; (doc (string-append data "/doc/" ,name "-" ,version))
4267 ;; (html (string-append doc "/html")))
4268 ;; (mkdir-p html)
4269 ;; (for-each (lambda (file)
4270 ;; (copy-file file (string-append doc "/" file)))
4271 ;; '("README.rst" "CHANGES.rst"))
4272 ;; (copy-recursively "build/sphinx/html" html)))))))
4273 (home-page "https://github.com/jaraco/path.py")
4274 (synopsis "Python module wrapper for built-in os.path")
4275 (description
4276 "@code{path.py} implements path objects as first-class entities, allowing
4277common operations on files to be invoked on those path objects directly.")
4278 (license license:expat)))
4279
4280(define-public python2-pathpy
4281 (package-with-python2 python-pathpy))
4282
4283(define-public python-simplegeneric
4284 (package
4285 (name "python-simplegeneric")
4286 (version "0.8.1")
4287 (source
4288 (origin
4289 (method url-fetch)
4290 (uri (string-append "https://pypi.python.org/packages/source/s/"
4291 "simplegeneric/simplegeneric-" version ".zip"))
4292 (sha256
4293 (base32 "0wwi1c6md4vkbcsfsf8dklf3vr4mcdj4mpxkanwgb6jb1432x5yw"))))
4294 (build-system python-build-system)
4295 (native-inputs
4296 `(("unzip" ,unzip)))
4297 (home-page "http://cheeseshop.python.org/pypi/simplegeneric")
4298 (synopsis "Python module for simple generic functions")
4299 (description
4300 "The simplegeneric module lets you define simple single-dispatch generic
4301functions, akin to Python’s built-in generic functions like @code{len()},
4302@code{iter()} and so on. However, instead of using specially-named methods,
4303these generic functions use simple lookup tables, akin to those used by
4304e.g. @code{pickle.dump()} and other generic functions found in the Python
4305standard library.")
4306 (license license:zpl2.1)))
4307
4308(define-public python2-simplegeneric
4309 (package-with-python2 python-simplegeneric))
4310
4311(define-public python-ipython-genutils
4312 ;; TODO: This package is retired, check if can be removed, see description.
4313 (package
4314 (name "python-ipython-genutils")
4315 (version "0.1.0")
4316 (source
4317 (origin
4318 (method url-fetch)
4319 (uri (string-append "https://pypi.python.org/packages/source/i/"
4320 "ipython_genutils/ipython_genutils-"
4321 version ".tar.gz"))
4322 (sha256
4323 (base32 "19l2pp1c64ansr89l3cqh19jdi2ixhssdzx0vz4n6r52a6i281is"))))
4324 (build-system python-build-system)
4325 (arguments `(#:tests? #f)) ; no tests
4326 (home-page "https://ipython.org")
4327 (synopsis "Vestigial utilities from IPython")
4328 (description
4329 "This package provides retired utilities from IPython. No packages
4330outside IPython/Jupyter should depend on it.
4331
4332This package shouldn't exist. It contains some common utilities shared by
4333Jupyter and IPython projects during The Big Split. As soon as possible, those
4334packages will remove their dependency on this, and this package will go
4335away.")
4336 (license license:bsd-3)))
4337
4338(define-public python2-ipython-genutils
4339 (package-with-python2 python-ipython-genutils))
4340
4341(define-public python-traitlets
4342 (package
4343 (name "python-traitlets")
4344 (version "4.3.2")
4345 (source
4346 (origin
4347 (method url-fetch)
4348 (uri (pypi-uri "traitlets" version))
4349 (sha256
4350 (base32
4351 "0dbq7sx26xqz5ixs711k5nc88p8a0nqyz6162pwks5dpcz9d4jww"))))
4352 (build-system python-build-system)
4353 (arguments
4354 `(#:phases
4355 (modify-phases %standard-phases
4356 (replace 'check (lambda _ (invoke "pytest" "-vv" "traitlets"))))))
4357 (propagated-inputs
4358 `(("python-ipython-genutils" ,python-ipython-genutils)
4359 ("python-decorator" ,python-decorator))) ;not needed for >4.3.2
4360 (native-inputs
4361 `(("python-pytest" ,python-pytest)))
4362 (properties `((python2-variant . ,(delay python2-traitlets))))
4363 (home-page "https://ipython.org")
4364 (synopsis "Configuration system for Python applications")
4365 (description
4366 "Traitlets is a framework that lets Python classes have attributes with
4367type checking, dynamically calculated default values, and ‘on change’
4368callbacks. The package also includes a mechanism to use traitlets for
4369configuration, loading values from files or from command line arguments. This
4370is a distinct layer on top of traitlets, so you can use traitlets in your code
4371without using the configuration machinery.")
4372 (license license:bsd-3)))
4373
4374(define-public python2-traitlets
4375 (let ((traitlets (package-with-python2 (strip-python2-variant python-traitlets))))
4376 (package
4377 (inherit traitlets)
4378 (propagated-inputs
4379 `(("python2-enum34" ,python2-enum34)
4380 ,@(package-propagated-inputs traitlets))))))
4381
4382(define-public python-jupyter-core
4383 (package
4384 (name "python-jupyter-core")
4385 (version "4.4.0")
4386 (source
4387 (origin
4388 (method url-fetch)
4389 (uri (string-append (pypi-uri "jupyter_core" version)))
4390 (sha256
4391 (base32
4392 "1dy083rarba8prn9f9srxq3c7n7vyql02ycrqq306c40lr57aw5s"))))
4393 (build-system python-build-system)
4394 ;; FIXME: not sure how to run the tests
4395 (arguments `(#:tests? #f))
4396 (propagated-inputs
4397 `(("python-traitlets" ,python-traitlets)))
4398 (home-page "http://jupyter.org/")
4399 (synopsis "Jupyter base package")
4400 (description
4401 "Jupyter core is the base package on which Jupyter projects rely.")
4402 (license license:bsd-3)))
4403
4404(define-public python2-jupyter-core
4405 (package-with-python2 python-jupyter-core))
4406
4407(define-public python-jupyter-client
4408 (package
4409 (name "python-jupyter-client")
4410 (version "5.2.4")
4411 (source
4412 (origin
4413 (method url-fetch)
4414 (uri (pypi-uri "jupyter_client" version))
4415 (sha256
4416 (base32
4417 "0l9mh7ccrpl3lppym3dnky8n1nk7xarzzdcxf4q2s7aw203cpydm"))))
4418 (build-system python-build-system)
4419 ;; Tests fail because of missing native python kernel which I assume is
4420 ;; provided by the ipython package, which we cannot use because it would
4421 ;; cause a dependency cycle.
4422 (arguments `(#:tests? #f))
4423 (propagated-inputs
4424 `(("python-pyzmq" ,python-pyzmq)
4425 ("python-traitlets" ,python-traitlets)
4426 ("python-jupyter-core" ,python-jupyter-core)))
4427 (home-page "http://jupyter.org/")
4428 (synopsis "Jupyter protocol implementation and client libraries")
4429 (description
4430 "The @code{jupyter_client} package contains the reference implementation
4431of the Jupyter protocol. It also provides client and kernel management APIs
4432for working with kernels, and the @code{jupyter kernelspec} entrypoint for
4433installing @code{kernelspec}s for use with Jupyter frontends.")
4434 (license license:bsd-3)))
4435
4436(define-public python2-jupyter-client
4437 (package-with-python2 python-jupyter-client))
4438
4439(define-public python-ipykernel
4440 (package
4441 (name "python-ipykernel")
4442 (version "5.1.0")
4443 (source
4444 (origin
4445 (method url-fetch)
4446 (uri (pypi-uri "ipykernel" version))
4447 (sha256
4448 (base32 "0br95qhrd5k65g10djngiy27hs0642301hlf2q142i8djabvzh0g"))))
4449 (build-system python-build-system)
4450 (arguments
4451 `(#:phases
4452 (modify-phases %standard-phases
4453 (replace 'check
4454 (lambda _
4455 (setenv "HOME" "/tmp")
4456 (invoke "pytest" "-v")
4457 #t)))))
4458 (propagated-inputs
4459 `(("python-ipython" ,python-ipython)
4460 ;; imported at runtime during connect
4461 ("python-jupyter-client" ,python-jupyter-client)))
4462 (native-inputs
4463 `(("python-pytest" ,python-pytest)
4464 ("python-nose" ,python-nose)))
4465 (home-page "https://ipython.org")
4466 (synopsis "IPython Kernel for Jupyter")
4467 (description
4468 "This package provides the IPython kernel for Jupyter.")
4469 (license license:bsd-3)))
4470
4471(define-public python2-ipykernel
4472 (package-with-python2 python-ipykernel))
4473
4474(define-public python-send2trash
4475 (package
4476 (name "python-send2trash")
4477 (version "1.5.0")
4478 (source
4479 (origin
4480 (method url-fetch)
4481 (uri (pypi-uri "send2trash" version))
4482 (sha256
4483 (base32
4484 "1ci8vcwjmjlp11ljj1ckrfmml9fkq1mclx2gr53y4zvhgp01q030"))))
4485 (build-system python-build-system)
4486 (home-page "https://github.com/hsoft/send2trash")
4487 (synopsis "Send files to trash")
4488 (description
4489 "This package provides a cross-platform mechanism to send files to the
4490trash.")
4491 (license license:bsd-3)))
4492
4493(define-public python2-send2trash
4494 (package-with-python2 python-send2trash))
4495
4496;; This is the latest release of the LTS version of ipython with support for
4497;; Python 2.7 and Python 3.x. Later non-LTS versions starting from 6.0 have
4498;; dropped support for Python 2.7. We may want to rename this package.
4499(define-public python-ipython
4500 (package
4501 (name "python-ipython")
4502 (version "5.8.0")
4503 (source
4504 (origin
4505 (method url-fetch)
4506 (uri (pypi-uri "ipython" version ".tar.gz"))
4507 (sha256
4508 (base32 "01l93i4hspf0lvhmycvc8j378bslm9rw30mwfspsl6v1ayc69b2b"))))
4509 (build-system python-build-system)
4510 (outputs '("out" "doc"))
4511 (propagated-inputs
4512 `(("python-pyzmq" ,python-pyzmq)
4513 ("python-prompt-toolkit" ,python-prompt-toolkit-1)
4514 ("python-terminado" ,python-terminado)
4515 ("python-matplotlib" ,python-matplotlib)
4516 ("python-numpy" ,python-numpy)
4517 ("python-numpydoc" ,python-numpydoc)
4518 ("python-jinja2" ,python-jinja2)
4519 ("python-mistune" ,python-mistune)
4520 ("python-pexpect" ,python-pexpect)
4521 ("python-pickleshare" ,python-pickleshare)
4522 ("python-simplegeneric" ,python-simplegeneric)
4523 ("python-jsonschema" ,python-jsonschema)
4524 ("python-traitlets" ,python-traitlets)
4525 ("python-nbformat" ,python-nbformat)
4526 ("python-pygments" ,python-pygments)))
4527 (inputs
4528 `(("readline" ,readline)
4529 ("which" ,which)))
4530 (native-inputs
4531 `(("graphviz" ,graphviz)
4532 ("pkg-config" ,pkg-config)
4533 ("python-requests" ,python-requests) ;; for tests
4534 ("python-testpath" ,python-testpath)
4535 ("python-nose" ,python-nose)
4536 ("python-sphinx" ,python-sphinx)
4537 ("python-shpinx-rtd-theme" ,python-sphinx-rtd-theme)
4538 ;; FIXME: It's possible that a smaller union would work just as well.
4539 ("texlive" ,(texlive-union (list texlive-fonts-amsfonts
4540 texlive-fonts-ec
4541 texlive-generic-ifxetex
4542 texlive-generic-pdftex
4543 texlive-latex-amsfonts
4544 texlive-latex-capt-of
4545 texlive-latex-cmap
4546 texlive-latex-environ
4547 texlive-latex-eqparbox
4548 texlive-latex-etoolbox
4549 texlive-latex-expdlist
4550 texlive-latex-fancyhdr
4551 texlive-latex-fancyvrb
4552 texlive-latex-fncychap
4553 texlive-latex-float
4554 texlive-latex-framed
4555 texlive-latex-geometry
4556 texlive-latex-graphics
4557 texlive-latex-hyperref
4558 texlive-latex-mdwtools
4559 texlive-latex-multirow
4560 texlive-latex-oberdiek
4561 texlive-latex-parskip
4562 texlive-latex-preview
4563 texlive-latex-tabulary
4564 texlive-latex-threeparttable
4565 texlive-latex-titlesec
4566 texlive-latex-trimspaces
4567 texlive-latex-ucs
4568 texlive-latex-upquote
4569 texlive-latex-url
4570 texlive-latex-varwidth
4571 texlive-latex-wrapfig)))
4572 ("texinfo" ,texinfo)))
4573 (arguments
4574 `(#:phases
4575 (modify-phases %standard-phases
4576 (add-after 'install 'install-doc
4577 (lambda* (#:key inputs outputs #:allow-other-keys)
4578 (let* ((data (string-append (assoc-ref outputs "doc") "/share"))
4579 (doc (string-append data "/doc/" ,name "-" ,version))
4580 (html (string-append doc "/html"))
4581 (man1 (string-append data "/man/man1"))
4582 (info (string-append data "/info"))
4583 (examples (string-append doc "/examples"))
4584 (python-arg (string-append "PYTHON=" (which "python"))))
4585 (setenv "LANG" "en_US.utf8")
4586 ;; Make installed package available for running the tests
4587 (add-installed-pythonpath inputs outputs)
4588 (with-directory-excursion "docs"
4589 ;; FIXME: pdf fails to build
4590 ;;(system* "make" "pdf" "PAPER=a4")
4591 (system* "make" python-arg "html")
4592 (system* "make" python-arg "info"))
4593 (copy-recursively "docs/man" man1)
4594 (copy-recursively "examples" examples)
4595 (copy-recursively "docs/build/html" html)
4596 ;; (copy-file "docs/build/latex/ipython.pdf"
4597 ;; (string-append doc "/ipython.pdf"))
4598 (mkdir-p info)
4599 (copy-file "docs/build/texinfo/ipython.info"
4600 (string-append info "/ipython.info"))
4601 (copy-file "COPYING.rst" (string-append doc "/COPYING.rst")))
4602 #t))
4603 ;; Tests can only be run after the library has been installed and not
4604 ;; within the source directory.
4605 (delete 'check)
4606 (add-after 'install 'check
4607 (lambda* (#:key inputs outputs tests? #:allow-other-keys)
4608 (if tests?
4609 (begin
4610 ;; Make installed package available for running the tests
4611 (add-installed-pythonpath inputs outputs)
4612 (setenv "HOME" "/tmp/") ;; required by a test
4613 ;; We only test the core because one of the other tests
4614 ;; tries to import ipykernel.
4615 (invoke "python" "IPython/testing/iptest.py"
4616 "-v" "IPython/core/tests"))
4617 #t)))
4618 (add-before 'check 'fix-tests
4619 (lambda* (#:key inputs #:allow-other-keys)
4620 (substitute* "./IPython/utils/_process_posix.py"
4621 (("/usr/bin/env', 'which") (which "which")))
4622 (substitute* "./IPython/core/tests/test_inputtransformer.py"
4623 (("#!/usr/bin/env python")
4624 (string-append "#!" (which "python"))))
4625 ;; Disable 1 failing test
4626 (substitute* "./IPython/core/tests/test_magic.py"
4627 (("def test_dirops\\(\\):" all)
4628 (string-append "@dec.skipif(True)\n" all)))
4629 ;; This test introduces a circular dependency on ipykernel
4630 ;; (which depends on ipython).
4631 (delete-file "IPython/core/tests/test_display.py")
4632 ;; These tests throw errors for unknown reasons.
4633 (delete-file "IPython/extensions/tests/test_storemagic.py")
4634 (delete-file "IPython/core/tests/test_displayhook.py")
4635 (delete-file "IPython/core/tests/test_interactiveshell.py")
4636 (delete-file "IPython/core/tests/test_pylabtools.py")
4637 (delete-file "IPython/core/tests/test_paths.py")
4638 #t)))))
4639 (home-page "https://ipython.org")
4640 (synopsis "IPython is a tool for interactive computing in Python")
4641 (description
4642 "IPython provides a rich architecture for interactive computing with:
4643Powerful interactive shells, a browser-based notebook, support for interactive
4644data visualization, embeddable interpreters and tools for parallel
4645computing.")
4646 (license license:bsd-3)
4647 (properties `((python2-variant . ,(delay python2-ipython))))))
4648
4649(define-public python2-ipython
4650 (let ((ipython (package-with-python2 (strip-python2-variant python-ipython))))
4651 (package
4652 (inherit ipython)
4653 ;; FIXME: add pyreadline once available.
4654 (propagated-inputs
4655 `(("python2-backports-shutil-get-terminal-size"
4656 ,python2-backports-shutil-get-terminal-size)
4657 ("python2-pathlib2" ,python2-pathlib2)
4658 ,@(package-propagated-inputs ipython)))
4659 (native-inputs
4660 `(("python2-mock" ,python2-mock)
4661 ,@(package-native-inputs ipython))))))
4662
4663(define-public python-urwid
4664 (package
4665 (name "python-urwid")
4666 (version "2.0.1")
4667 (source
4668 (origin
4669 (method url-fetch)
4670 (uri (pypi-uri "urwid" version))
4671 (sha256
4672 (base32
4673 "1g6cpicybvbananpjikmjk8npmjk4xvak1wjzji62wc600wkwkb4"))))
4674 (build-system python-build-system)
4675 (home-page "http://urwid.org")
4676 (synopsis "Console user interface library for Python")
4677 (description
4678 "Urwid is a curses-based UI/widget library for Python. It includes many
4679features useful for text console applications.")
4680 (license license:lgpl2.1+)))
4681
4682(define-public python2-urwid
4683 (package-with-python2 python-urwid))
4684
4685(define-public python-urwidtrees
4686 (package
4687 (name "python-urwidtrees")
4688 (version "1.0.2")
4689 (source
4690 (origin
4691 (method url-fetch)
4692 ;; package author intends on distributing via github rather than pypi:
4693 ;; https://github.com/pazz/alot/issues/877#issuecomment-230173331
4694 (uri (string-append "https://github.com/pazz/urwidtrees/archive/"
4695 version ".tar.gz"))
4696 (file-name (string-append name "-" version ".tar.gz"))
4697 (sha256
4698 (base32
4699 "0d30lyd3s2a97rhqfax5w9ssqds2z6aydqx3c6j2c2lk3cb4ngvh"))))
4700 (build-system python-build-system)
4701 (arguments
4702 '(#:tests? #f)) ; no tests
4703 (propagated-inputs `(("python-urwid" ,python-urwid)))
4704 (home-page "https://github.com/pazz/urwidtrees")
4705 (synopsis "Tree widgets for urwid")
4706 (description "Urwidtrees is a Widget Container API for the @code{urwid}
4707toolkit. Use it to build trees of widgets.")
4708 (license license:gpl3+)))
4709
4710(define-public python2-urwidtrees
4711 (package-with-python2 python-urwidtrees))
4712
4713(define-public python-ua-parser
4714 (package
4715 (name "python-ua-parser")
4716 (version "0.8.0")
4717 (source
4718 (origin
4719 (method url-fetch)
4720 (uri (pypi-uri "ua-parser" version))
4721 (sha256
4722 (base32
4723 "1jwdf58rhchjzzrad405pviv0iq24xa2xmmmdgcm2c8s6b4wzfwp"))))
4724 (build-system python-build-system)
4725 (arguments
4726 `(#:tests? #f)) ;no test suite in release
4727 (native-inputs
4728 `(("python-pyyaml" ,python-pyyaml)))
4729 (home-page "https://github.com/ua-parser/uap-python")
4730 (synopsis "User agent parser")
4731 (description
4732 "@code{ua-parser} is a Python port of Browserscope's user agent parser.")
4733 (license license:asl2.0)))
4734
4735(define-public python2-ua-parser
4736 (package-with-python2 python-ua-parser))
4737
4738(define-public python-user-agents
4739 (package
4740 (name "python-user-agents")
4741 (version "1.1.0")
4742 (source
4743 (origin
4744 (method url-fetch)
4745 (uri (pypi-uri "user-agents" version))
4746 (sha256
4747 (base32
4748 "0fc00cd3j8dahq1zzn8pkgfgd7lq37bp2scmdma2n1c049vicgb4"))))
4749 (build-system python-build-system)
4750 (arguments
4751 `(#:tests? #f)) ;missing devices.json test file in release
4752 (propagated-inputs
4753 `(("python-ua-parser" ,python-ua-parser)))
4754 (home-page "https://github.com/selwin/python-user-agents")
4755 (synopsis "User Agent strings parsing library")
4756 (description
4757 "A library to identify devices (phones, tablets) and their capabilities by
4758parsing (browser/HTTP) user agent strings.")
4759 (license license:expat)))
4760
4761(define-public python2-user-agents
4762 (package-with-python2 python-user-agents))
4763
4764(define-public python-dbus
4765 (package
4766 (name "python-dbus")
4767 (version "1.2.8")
4768 (source
4769 (origin
4770 (method url-fetch)
4771 (uri (string-append "https://dbus.freedesktop.org/releases/dbus-python/"
4772 "dbus-python-" version ".tar.gz"))
4773 (sha256
4774 (base32
4775 "0vvvjmiwnc9cjlks3gcdk43ap7llhlpz7cm1wbw0nc2yfsxjpwdb"))))
4776 (build-system gnu-build-system)
4777 (arguments
4778 '(#:phases
4779 (modify-phases %standard-phases
4780 (add-before
4781 'check 'pre-check
4782 (lambda _
4783 ;; XXX: For the missing '/etc/machine-id'.
4784 (substitute* "test/run-test.sh"
4785 (("DBUS_FATAL_WARNINGS=1")
4786 "DBUS_FATAL_WARNINGS=0"))
4787 #t)))))
4788 (native-inputs
4789 `(("pkg-config" ,pkg-config)))
4790 (inputs
4791 `(("python" ,python-wrapper)
4792 ("dbus-glib" ,dbus-glib)))
4793 (synopsis "Python bindings for D-bus")
4794 (description "python-dbus provides bindings for libdbus, the reference
4795implementation of D-Bus.")
4796 (home-page "https://www.freedesktop.org/wiki/Software/DBusBindings/")
4797 (license license:expat)))
4798
4799(define-public python2-dbus
4800 (package (inherit python-dbus)
4801 (name "python2-dbus")
4802 (inputs `(("python" ,python-2)
4803 ,@(alist-delete "python"
4804 (package-inputs python-dbus)
4805 equal?)))
4806 ;; FIXME: on Python 2, the test_utf8 fails with:
4807 ;; "ValueError: unichr() arg not in range(0x10000) (narrow Python build)"
4808 (arguments `(#:tests? #f))))
4809
4810(define-public python-lxml
4811 (package
4812 (name "python-lxml")
4813 (version "4.2.5")
4814 (source
4815 (origin
4816 (method url-fetch)
4817 (uri (pypi-uri "lxml" version))
4818 (sha256
4819 (base32
4820 "0zw0y9hs0nflxhl9cs6ipwwh53szi3w2x06wl0k9cylyqac0cwin"))))
4821 (build-system python-build-system)
4822 (inputs
4823 `(("libxml2" ,libxml2)
4824 ("libxslt" ,libxslt)))
4825 (home-page "http://lxml.de/")
4826 (synopsis
4827 "Python XML processing library")
4828 (description
4829 "The lxml XML toolkit is a Pythonic binding for the C libraries
4830libxml2 and libxslt.")
4831 (license license:bsd-3))) ; and a few more, see LICENSES.txt
4832
4833(define-public python2-lxml
4834 (package-with-python2 python-lxml))
4835
4836;; beautifulsoup4 has a totally different namespace than 3.x,
4837;; and pypi seems to put it under its own name, so I guess we should too
4838(define-public python-beautifulsoup4
4839 (package
4840 (name "python-beautifulsoup4")
4841 (version "4.6.3")
4842 (source
4843 (origin
4844 (method url-fetch)
4845 (uri (pypi-uri "beautifulsoup4" version))
4846 (sha256
4847 (base32
4848 "041dhalzjciw6qyzzq7a2k4h1yvyk76xigp35hv5ibnn448ydy4h"))))
4849 (build-system python-build-system)
4850 (arguments
4851 `(#:phases
4852 (modify-phases %standard-phases
4853 ;; The Python 2 source is the definitive source of beautifulsoup4. We
4854 ;; must use this conversion script when building with Python 3. The
4855 ;; conversion script also runs the tests.
4856 ;; For more information, see the file 'convert-py3k' in the source
4857 ;; distribution.
4858 (replace 'check
4859 (lambda _ (zero? (system* "./convert-py3k")))))))
4860 (home-page
4861 "https://www.crummy.com/software/BeautifulSoup/bs4/")
4862 (synopsis
4863 "Python screen-scraping library")
4864 (description
4865 "Beautiful Soup is a Python library designed for rapidly setting up
4866screen-scraping projects. It offers Pythonic idioms for navigating,
4867searching, and modifying a parse tree, providing a toolkit for
4868dissecting a document and extracting what you need. It automatically
4869converts incoming documents to Unicode and outgoing documents to UTF-8.")
4870 (license license:expat)
4871 (properties `((python2-variant . ,(delay python2-beautifulsoup4))))))
4872
4873(define-public python2-beautifulsoup4
4874 (package
4875 (inherit (package-with-python2
4876 (strip-python2-variant python-beautifulsoup4)))
4877 (arguments `(#:python ,python-2))))
4878
4879(define-public python-netifaces
4880 (package
4881 (name "python-netifaces")
4882 (version "0.10.7")
4883 (source
4884 (origin
4885 (method url-fetch)
4886 (uri (pypi-uri "netifaces" version))
4887 (sha256
4888 (base32
4889 "1gccklrcplbbqh81g1mdgpa5y8na7kkf29cq2ka3f5a2fp5hyndx"))))
4890 (build-system python-build-system)
4891 (home-page "https://github.com/al45tair/netifaces")
4892 (synopsis
4893 "Python module for portable network interface information")
4894 (description
4895 "Netifaces is a Python module providing information on network
4896interfaces in an easy and portable manner.")
4897 (license license:expat)))
4898
4899(define-public python2-netifaces
4900 (package-with-python2 python-netifaces))
4901
4902(define-public python-networkx
4903 (package
4904 (name "python-networkx")
4905 (version "2.2")
4906 (source
4907 (origin
4908 (method url-fetch)
4909 (uri (pypi-uri "networkx" version ".zip"))
4910 (sha256
4911 (base32 "12swxb15299v9vqjsq4z8rgh5sdhvpx497xwnhpnb0gynrx6zra5"))))
4912 (build-system python-build-system)
4913 ;; python-decorator is needed at runtime.
4914 (propagated-inputs
4915 `(("python-decorator" ,python-decorator)))
4916 (native-inputs
4917 `(("python-nose" ,python-nose)
4918 ("unzip" ,unzip)))
4919 (home-page "https://networkx.github.io/")
4920 (synopsis "Python module for creating and manipulating graphs and networks")
4921 (description
4922 "NetworkX is a Python package for the creation, manipulation, and study
4923of the structure, dynamics, and functions of complex networks.")
4924 (license license:bsd-3)))
4925
4926(define-public python2-networkx
4927 (package-with-python2 python-networkx))
4928
4929(define-public python-datrie
4930 (package
4931 (name "python-datrie")
4932 (version "0.7.1")
4933 (source
4934 (origin
4935 (method url-fetch)
4936 (uri (pypi-uri "datrie" version))
4937 (sha256
4938 (base32
4939 "08r0if7dry2q7p34gf7ffyrlnf4bdvnprxgydlfxgfnvq8f3f4bs"))))
4940 (build-system python-build-system)
4941 (arguments
4942 `(#:phases (modify-phases %standard-phases
4943 (add-before 'build 'cythonize
4944 (lambda _
4945 ;; Regenerate Cython classes to solve ABI issues with Python
4946 ;; 3.7.0. See <https://github.com/pytries/datrie/issues/52>.
4947 (invoke "cython" "src/datrie.pyx" "src/cdatrie.pxd"
4948 "src/stdio_ext.pxd" "-a"))))))
4949 (native-inputs
4950 `(("python-cython" ,python-cython)
4951 ("python-hypothesis" ,python-hypothesis)
4952 ("python-pytest" ,python-pytest)
4953 ("python-pytest-runner" ,python-pytest-runner)))
4954 (home-page "https://github.com/kmike/datrie")
4955 (synopsis "Fast, efficiently stored trie for Python")
4956 (description
4957 "This package provides a fast, efficiently stored trie implementation for
4958Python.")
4959 (license license:lgpl2.1+)))
4960
4961(define-public snakemake
4962 (package
4963 (name "snakemake")
4964 (version "5.2.4")
4965 (source
4966 (origin
4967 (method url-fetch)
4968 (uri (pypi-uri "snakemake" version))
4969 (sha256
4970 (base32 "0gj0xxgiq3mp9qyyrbfzldiaq1giliqw0in64nqiz7vx49myqj7z"))))
4971 (build-system python-build-system)
4972 (arguments
4973 ;; TODO: Package missing test dependencies.
4974 '(#:tests? #f
4975 #:phases
4976 (modify-phases %standard-phases
4977 ;; For cluster execution Snakemake will call Python. Since there is
4978 ;; no suitable PYTHONPATH set, cluster execution will fail. We fix
4979 ;; this by calling the snakemake wrapper instead.
4980 (add-after 'unpack 'call-wrapper-not-wrapped-snakemake
4981 (lambda* (#:key outputs #:allow-other-keys)
4982 (substitute* "snakemake/executors.py"
4983 (("\\{sys.executable\\} -m snakemake")
4984 (string-append (assoc-ref outputs "out")
4985 "/bin/snakemake")))
4986 #t)))))
4987 (propagated-inputs
4988 `(("python-gitpython" ,python-gitpython)
4989 ("python-wrapt" ,python-wrapt)
4990 ("python-requests" ,python-requests)
4991 ("python-appdirs" ,python-appdirs)
4992 ("python-configargparse" ,python-configargparse)
4993 ("python-datrie" ,python-datrie)
4994 ("python-docutils" ,python-docutils)
4995 ("python-jinja2" ,python-jinja2)
4996 ("python-jsonschema" ,python-jsonschema)
4997 ("python-networkx" ,python-networkx)
4998 ("python-pyyaml" ,python-pyyaml)
4999 ("python-ratelimiter" ,python-ratelimiter)))
5000 (home-page "https://snakemake.readthedocs.io")
5001 (synopsis "Python-based execution environment for make-like workflows")
5002 (description
5003 "Snakemake aims to reduce the complexity of creating workflows by
5004providing a clean and modern domain specific specification language (DSL) in
5005Python style, together with a fast and comfortable execution environment.")
5006 (license license:expat)))
5007
5008;; This is currently needed for the pigx-* packages.
5009(define-public snakemake-4
5010 (package (inherit snakemake)
5011 (version "4.4.0")
5012 (source
5013 (origin
5014 (method url-fetch)
5015 (uri (pypi-uri "snakemake" version))
5016 (sha256
5017 (base32 "0g0paia4z7w3srnqdmavq3hrb2x7qnpf81jx50njl0p7y4y0j8jv"))))
5018 (propagated-inputs
5019 `(("python-wrapt" ,python-wrapt)
5020 ("python-requests" ,python-requests)
5021 ("python-appdirs" ,python-appdirs)
5022 ("python-configargparse" ,python-configargparse)
5023 ("python-pyyaml" ,python-pyyaml)
5024 ("python-ratelimiter" ,python-ratelimiter)))))
5025
5026(define-public python-pyqrcode
5027 (package
5028 (name "python-pyqrcode")
5029 (version "1.2.1")
5030 (source
5031 (origin
5032 (method url-fetch)
5033 (uri (pypi-uri "PyQRCode" version))
5034 (sha256
5035 (base32
5036 "1m9ln8k9v7dfbh1i81225hx5mdsh8mpf9g7r4wpbfmiyfcs7dgzx"))))
5037 (build-system python-build-system)
5038 (home-page
5039 "https://github.com/mnooner256/pyqrcode")
5040 (synopsis "QR code generator")
5041 (description
5042 "Pyqrcode is a QR code generator written purely in Python with
5043SVG, EPS, PNG and terminal output.")
5044 (license license:bsd-3)))
5045
5046(define-public python-seaborn
5047 (package
5048 (name "python-seaborn")
5049 (version "0.9.0")
5050 (source
5051 (origin
5052 (method url-fetch)
5053 (uri (pypi-uri "seaborn" version))
5054 (sha256
5055 (base32 "0bqysi3fxfjl1866m5jq8z7mynhqbqnikim74dmzn8539iwkzj3n"))))
5056 (build-system python-build-system)
5057 (arguments
5058 `(#:phases
5059 (modify-phases %standard-phases
5060 (add-before 'check 'start-xserver
5061 (lambda* (#:key inputs #:allow-other-keys)
5062 (let ((xorg-server (assoc-ref inputs "xorg-server")))
5063 ;; There must be a running X server and make check doesn't
5064 ;; start one. Therefore we must do it.
5065 (system (format #f "~a/bin/Xvfb :1 &" xorg-server))
5066 (setenv "DISPLAY" ":1")
5067 #t)))
5068 (replace 'check (lambda _ (invoke "pytest" "seaborn") #t)))))
5069 (propagated-inputs
5070 `(("python-pandas" ,python-pandas)
5071 ("python-matplotlib" ,python-matplotlib)
5072 ("python-numpy" ,python-numpy)
5073 ("python-scipy" ,python-scipy)))
5074 (native-inputs
5075 `(("python-pytest" ,python-pytest)
5076 ("xorg-server" ,xorg-server)))
5077 (home-page "http://stanford.edu/~mwaskom/software/seaborn/")
5078 (synopsis "Statistical data visualization")
5079 (description
5080 "Seaborn is a library for making attractive and informative statistical
5081graphics in Python. It is built on top of matplotlib and tightly integrated
5082with the PyData stack, including support for numpy and pandas data structures
5083and statistical routines from scipy and statsmodels.")
5084 (license license:bsd-3)))
5085
5086(define-public python2-seaborn
5087 (package-with-python2 python-seaborn))
5088
5089(define-public python-mpmath
5090 (package
5091 (name "python-mpmath")
5092 (version "0.19")
5093 (source (origin
5094 (method url-fetch)
5095 (uri (string-append "http://mpmath.org/files/mpmath-"
5096 version ".tar.gz"))
5097 (sha256
5098 (base32
5099 "08ijsr4ifrqv3cjc26mkw0dbvyygsa99in376hr4b96ddm1gdpb8"))))
5100 (build-system python-build-system)
5101 (arguments
5102 '(#:phases
5103 (modify-phases %standard-phases
5104 (replace 'check
5105 (lambda _
5106 (zero?
5107 (system* "python" "mpmath/tests/runtests.py" "-local")))))))
5108 (home-page "http://mpmath.org")
5109 (synopsis "Arbitrary-precision floating-point arithmetic in python")
5110 (description
5111 "@code{mpmath} can be used as an arbitrary-precision substitute for
5112Python's float/complex types and math/cmath modules, but also does much
5113more advanced mathematics.")
5114 (license license:bsd-3)))
5115
5116(define-public python2-mpmath
5117 (package-with-python2 python-mpmath))
5118
5119(define-public python-bigfloat
5120 (package
5121 (name "python-bigfloat")
5122 (version "0.3.0")
5123 (source
5124 (origin
5125 (method url-fetch)
5126 (uri (pypi-uri "bigfloat" version))
5127 (sha256
5128 (base32 "0xd7q4l7v0f463diznjv4k9wlaks80pn9drdqmfifi7zx8qvybi6"))))
5129 (build-system python-build-system)
5130 (inputs
5131 `(("mpfr" ,mpfr)))
5132 (home-page "https://github.com/mdickinson/bigfloat")
5133 (synopsis "Arbitrary precision floating-point arithmetic for Python")
5134 (description
5135 "This packages provides a Python interface to the MPFR library for
5136multiprecision arithmetic.")
5137 (license license:lgpl3+)))
5138
5139(define-public python2-bigfloat
5140 (package-with-python2 python-bigfloat))
5141
5142(define-public python-sympy
5143 (package
5144 (name "python-sympy")
5145 (version "1.1.1")
5146 (source
5147 (origin
5148 (method url-fetch)
5149 (uri (string-append
5150 "https://github.com/sympy/sympy/releases/download/sympy-"
5151 version "/sympy-" version ".tar.gz"))
5152 (sha256
5153 (base32 "190n29sppw7g8ihilc5451y7jlfcaw56crqiqbf1jff43dlmfnxc"))))
5154 (build-system python-build-system)
5155 (arguments
5156 `(#:phases
5157 (modify-phases %standard-phases
5158 ;; Run the core tests after installation. By default it would run
5159 ;; *all* tests, which take a very long time to complete and are known
5160 ;; to be flaky.
5161 (delete 'check)
5162 (add-after 'install 'check
5163 (lambda* (#:key outputs #:allow-other-keys)
5164 (invoke "python3" "-c" "import sympy; sympy.test(\"/core\")")
5165 #t)))))
5166 (propagated-inputs
5167 `(("python-mpmath" ,python-mpmath)))
5168 (home-page "http://www.sympy.org/")
5169 (synopsis "Python library for symbolic mathematics")
5170 (description
5171 "SymPy is a Python library for symbolic mathematics. It aims to become a
5172full-featured computer algebra system (CAS) while keeping the code as simple
5173as possible in order to be comprehensible and easily extensible.")
5174 (license license:bsd-3)))
5175
5176(define-public python2-sympy
5177 (package
5178 (inherit (package-with-python2 python-sympy))
5179 (arguments
5180 `(#:phases
5181 (modify-phases %standard-phases
5182 ;; Run the core tests after installation. By default it would run
5183 ;; *all* tests, which take a very long time to complete and are known
5184 ;; to be flaky.
5185 (delete 'check)
5186 (add-after 'install 'check
5187 (lambda* (#:key outputs #:allow-other-keys)
5188 (invoke "python" "-c" "import sympy; sympy.test(\"/core\")")
5189 #t)))))))
5190
5191(define-public python-q
5192 (package
5193 (name "python-q")
5194 (version "2.6")
5195 (source
5196 (origin
5197 (method url-fetch)
5198 (uri (pypi-uri "q" version))
5199 (sha256
5200 (base32
5201 "1mgfazh8fkizh6walra2zv885f3lcgr3nb02v1frfm4p8ddcy3yy"))))
5202 (build-system python-build-system)
5203 (home-page "https://github.com/zestyping/q")
5204 (synopsis "Quick-and-dirty debugging output for tired programmers")
5205 (description
5206 "q is a Python module for \"print\" style of debugging Python code. It
5207provides convenient short API for print out of values, tracebacks, and
5208falling into the Python interpreter.")
5209 (license license:asl2.0)))
5210
5211(define-public python2-q
5212 (package-with-python2 python-q))
5213
5214(define-public python2-xlib
5215 (package
5216 (name "python2-xlib")
5217 (version "0.14")
5218 (source (origin
5219 (method url-fetch)
5220 (uri (string-append "mirror://sourceforge/python-xlib/python-xlib"
5221 "/" version "/"
5222 "python-xlib-" version ".tar.gz"))
5223 (sha256
5224 (base32
5225 "1sv0447j0rx8cgs3jhjl695p5pv13ihglcjlrrz1kq05lsvb0wa7"))))
5226 (build-system python-build-system)
5227 (arguments
5228 `(#:python ,python-2 ;Python 2 only
5229 #:tests? #f)) ;no tests
5230 (home-page "http://python-xlib.sourceforge.net/")
5231 (synopsis "Python X11 client library")
5232 (description
5233 "The Python X Library is intended to be a fully functional X client
5234library for Python programs. It is useful to implement low-level X clients.
5235It is written entirely in Python.")
5236 (license license:gpl2+)))
5237
5238(define-public python-singledispatch
5239 (package
5240 (name "python-singledispatch")
5241 (version "3.4.0.3")
5242 (source
5243 (origin
5244 (method url-fetch)
5245 (uri (pypi-uri "singledispatch" version))
5246 (sha256
5247 (base32
5248 "171b7ip0hsq5qm83np40h3phlr36ym18w0lay0a8v08kvy3sy1jv"))))
5249 (build-system python-build-system)
5250 (native-inputs
5251 `(("python-six" ,python-six))) ; required for conversion, not at run-time
5252 (home-page
5253 "http://docs.python.org/3/library/functools.html#functools.singledispatch")
5254 (synopsis "Backport of singledispatch feature from Python 3.4")
5255 (description
5256 "This library brings functools.singledispatch from Python 3.4 to Python
52572.6-3.3.")
5258 (license license:expat)))
5259
5260(define-public python2-singledispatch
5261 (package-with-python2 python-singledispatch))
5262
5263;; the python- version can be removed with python-3.5
5264(define-public python-backports-abc
5265 (package
5266 (name "python-backports-abc")
5267 (version "0.5")
5268 (source
5269 (origin
5270 (method url-fetch)
5271 (uri (pypi-uri "backports_abc" version))
5272 (sha256
5273 (base32
5274 "1pkv8d1zxj5f9i227dxbjczncbv7ks7ywnjwyxfjagm02i2yafq3"))))
5275 (build-system python-build-system)
5276 (home-page "https://github.com/cython/backports_abc")
5277 (synopsis "Backport of additions to the 'collections.abc' module")
5278 (description
5279 "Python-backports-abc provides a backport of additions to the
5280'collections.abc' module in Python-3.5.")
5281 (license license:psfl)))
5282
5283(define-public python2-backports-abc
5284 (package-with-python2 python-backports-abc))
5285
5286(define-public python-backports-csv
5287 (package
5288 (name "python-backports-csv")
5289 (version "1.0.5")
5290 (source
5291 (origin
5292 (method url-fetch)
5293 (uri (pypi-uri "backports.csv" version))
5294 (sha256
5295 (base32
5296 "1imzbrradkfn8s2m1qcimyn74dn1mz2p3j381jljn166rf2i6hlc"))))
5297 (build-system python-build-system)
5298 (home-page "https://github.com/ryanhiebert/backports.csv")
5299 (synopsis "Backport of Python 3's csv module for Python 2")
5300 (description
5301 "Provides a backport of Python 3's @code{csv} module for parsing
5302comma separated values. The API of the @code{csv} module in Python 2
5303is drastically different from the @code{csv} module in Python 3.
5304This is due, for the most part, to the difference between str in
5305Python 2 and Python 3.")
5306 (license license:psfl)))
5307
5308(define-public python2-backports-csv
5309 (package-with-python2 python-backports-csv))
5310
5311(define-public python2-backports-shutil-get-terminal-size
5312 (package
5313 (name "python2-backports-shutil-get-terminal-size")
5314 (version "1.0.0")
5315 (source
5316 (origin
5317 (method url-fetch)
5318 (uri (pypi-uri "backports.shutil_get_terminal_size" version))
5319 (sha256
5320 (base32
5321 "107cmn7g3jnbkp826zlj8rrj19fam301qvaqf0f3905f5217lgki"))))
5322 (build-system python-build-system)
5323 (arguments
5324 `(#:python ,python-2
5325 #:phases
5326 (modify-phases %standard-phases
5327 (replace 'check
5328 (lambda _
5329 (zero? (system* "py.test" "-v")))))))
5330 (native-inputs
5331 `(("python2-pytest" ,python2-pytest)))
5332 (home-page "https://github.com/chrippa/backports.shutil_get_terminal_size")
5333 (synopsis "Backport of Python 3.3's @code{shutil.get_terminal_size}")
5334 (description
5335 "This package provides a backport of the @code{get_terminal_size
5336function} from Python 3.3's @code{shutil}.
5337Unlike the original version it is written in pure Python rather than C,
5338so it might be a tiny bit slower.")
5339 (license license:expat)))
5340
5341(define-public python-waf
5342 (package
5343 (name "python-waf")
5344 (version "2.0.11")
5345 (source (origin
5346 (method url-fetch)
5347 (uri (string-append "https://waf.io/"
5348 "waf-" version ".tar.bz2"))
5349 (sha256
5350 (base32
5351 "13zrniwkmfqgsgzi9v5m1367fppp9yzrz6z2ny6hy8dmpb8mj4z4"))))
5352 (build-system python-build-system)
5353 (arguments
5354 '(#:phases
5355 (modify-phases %standard-phases
5356 (replace 'build
5357 (lambda _
5358 (invoke "python" "waf-light" "configure" "build")))
5359 (replace 'check
5360 (lambda _
5361 (invoke "python" "waf" "--version")))
5362 (replace 'install
5363 (lambda* (#:key outputs #:allow-other-keys)
5364 (let ((out (assoc-ref outputs "out")))
5365 (install-file "waf" (string-append out "/bin")))
5366 #t))
5367 ;; waf breaks when it is wrapped.
5368 (delete 'wrap))))
5369 (home-page "https://waf.io/")
5370 (synopsis "Python-based build system")
5371 (description
5372 "Waf is a Python-based framework for configuring, compiling and installing
5373applications.")
5374 (license license:bsd-3)))
5375
5376(define-public python2-waf
5377 (package-with-python2 python-waf))
5378
5379(define-public python-pyzmq
5380 (package
5381 (name "python-pyzmq")
5382 (version "17.1.2")
5383 (source
5384 (origin
5385 (method url-fetch)
5386 (uri (pypi-uri "pyzmq" version))
5387 (sha256
5388 (base32 "1pyxxrz60f88ffm0y6vpbx3q8jcr9ybz8fcilihwzwhh36n84ax7"))))
5389 (build-system python-build-system)
5390 (arguments
5391 `(#:configure-flags
5392 (list (string-append "--zmq=" (assoc-ref %build-inputs "zeromq")))
5393 ;; FIXME: You must build pyzmq with 'python setup.py build_ext
5394 ;; --inplace' for 'python setup.py test' to work.
5395 #:tests? #f))
5396 (inputs
5397 `(("zeromq" ,zeromq)))
5398 (native-inputs
5399 `(("pkg-config" ,pkg-config)
5400 ("python-nose" ,python-nose)))
5401 (home-page "https://github.com/zeromq/pyzmq")
5402 (synopsis "Python bindings for 0MQ")
5403 (description
5404 "PyZMQ is the official Python binding for the ZeroMQ messaging library.")
5405 (license license:bsd-4)))
5406
5407(define-public python2-pyzmq
5408 (package-with-python2 python-pyzmq))
5409
5410(define-public python-pep8
5411 ;; This package has been renamed to ‘pycodestyle’ and is no longer updated.
5412 ;; Its last release (1.7.1) adds only a scary warning to this effect, breaking
5413 ;; some dependents' test suites, and nothing more.
5414 (package
5415 (name "python-pep8")
5416 (version "1.7.0")
5417 (source
5418 (origin
5419 (method url-fetch)
5420 (uri (pypi-uri "pep8" version))
5421 (sha256
5422 (base32
5423 "002rkl4lsn6x2mxmf8ar00l0m8i3mzrc6pnzz77blyksmpsxa4x1"))))
5424 (build-system python-build-system)
5425 (home-page "https://pep8.readthedocs.org/")
5426 (synopsis "Python style guide checker")
5427 (description
5428 "This tools checks Python code against some of the style conventions in
5429PEP 8.")
5430 (license license:expat)))
5431
5432(define-public python2-pep8
5433 (package-with-python2 python-pep8))
5434
5435(define-public python-pyflakes
5436 (package
5437 (name "python-pyflakes")
5438 (version "2.0.0")
5439 (source
5440 (origin
5441 (method url-fetch)
5442 (uri (pypi-uri "pyflakes" version))
5443 (sha256
5444 (base32
5445 "0jba28czyvimdc72llms3f17swp3i8jdcabf5w0j00adfbn64xls"))))
5446 (build-system python-build-system)
5447 (home-page
5448 "https://github.com/pyflakes/pyflakes")
5449 (synopsis "Passive checker of Python programs")
5450 (description
5451 "Pyflakes statically checks Python source code for common errors.")
5452 (license license:expat)))
5453
5454(define-public python2-pyflakes
5455 (package-with-python2 python-pyflakes))
5456
5457(define-public python-mccabe
5458 (package
5459 (name "python-mccabe")
5460 (version "0.6.1")
5461 (source
5462 (origin
5463 (method url-fetch)
5464 (uri (pypi-uri "mccabe" version))
5465 (sha256
5466 (base32
5467 "07w3p1qm44hgxf3vvwz84kswpsx6s7kvaibzrsx5dzm0hli1i3fx"))))
5468 (build-system python-build-system)
5469 (native-inputs
5470 `(("python-pytest" ,python-pytest-bootstrap)
5471 ("python-pytest-runner" ,python-pytest-runner)))
5472 (home-page "https://github.com/flintwork/mccabe")
5473 (synopsis "McCabe checker, plugin for flake8")
5474 (description
5475 "This package provides a Flake8 plug-in to compute the McCabe cyclomatic
5476complexity of Python source code.")
5477 (license license:expat)))
5478
5479(define-public python2-mccabe
5480 (package-with-python2 python-mccabe))
5481
5482(define-public python-mccabe-0.2.1
5483 (package (inherit python-mccabe)
5484 (version "0.2.1")
5485 (source
5486 (origin
5487 (method url-fetch)
5488 (uri (pypi-uri "mccabe" version))
5489 (sha256
5490 (base32
5491 "0fi4a81kr5bcv5p4xgibqr595hyj5dafkqgsmfk96mfy8w71fajs"))))))
5492
5493(define-public python2-mccabe-0.2.1
5494 (package-with-python2 python-mccabe-0.2.1))
5495
5496;; Flake8 2.4.1 requires an older version of pep8.
5497;; This should be removed ASAP.
5498(define-public python-pep8-1.5.7
5499 (package (inherit python-pep8)
5500 (version "1.5.7")
5501 (source
5502 (origin
5503 (method url-fetch)
5504 (uri (string-append
5505 "https://pypi.python.org/packages/source/p/pep8/pep8-"
5506 version
5507 ".tar.gz"))
5508 (sha256
5509 (base32
5510 "12b9bbdbwnspxgak14xg58c130x2n0blxzlms5jn2dszn8qj3d0m"))))
5511 (arguments
5512 ;; XXX Tests not compatible with Python 3.5.
5513 '(#:tests? #f))))
5514
5515(define-public python2-pep8-1.5.7
5516 (package-with-python2 python-pep8-1.5.7))
5517
5518;; Flake8 2.4.1 requires an older version of pyflakes.
5519;; This should be removed ASAP.
5520(define-public python-pyflakes-0.8.1
5521 (package (inherit python-pyflakes)
5522 (version "0.8.1")
5523 (source
5524 (origin
5525 (method url-fetch)
5526 (uri (string-append
5527 "https://pypi.python.org/packages/source/p/pyflakes/pyflakes-"
5528 version
5529 ".tar.gz"))
5530 (sha256
5531 (base32
5532 "0sbpq6pqm1i9wqi41mlfrsc5rk92jv4mskvlyxmnhlbdnc80ma1z"))))
5533 (arguments
5534 ;; XXX Tests not compatible with Python 3.5.
5535 '(#:tests? #f))))
5536
5537(define-public python2-pyflakes-0.8.1
5538 (package-with-python2 python-pyflakes-0.8.1))
5539
5540;; This package is used by hypothesis which has thousands of dependent packages.
5541;; FIXME: Consolidate this with "python-flake8" below in the next rebuild cycle.
5542(define-public python-flake8-3.5
5543 (package
5544 (name "python-flake8")
5545 (version "3.5.0")
5546 (source
5547 (origin
5548 (method url-fetch)
5549 (uri (pypi-uri "flake8" version))
5550 (sha256
5551 (base32
5552 "184b33grvvjmiwlv9kyd7yng9qv5ld24154j70z332xxg9gjclvj"))))
5553 (build-system python-build-system)
5554 (arguments
5555 `(#:phases
5556 (modify-phases %standard-phases
5557 ;; Two errors don't seem to have assigned codes.
5558 (add-after 'unpack 'delete-broken-test
5559 (lambda _ (delete-file "tests/unit/test_pyflakes_codes.py") #t))
5560 (add-after 'unpack 'fix-problem-with-pycodestyle
5561 (lambda _
5562 ;; See https://gitlab.com/pycqa/flake8/merge_requests/230
5563 ;; This should no longer be needed with the next release.
5564 (substitute* "setup.py"
5565 (("PEP8_PLUGIN\\('break_around_binary_operator'\\),")
5566 "PEP8_PLUGIN('break_after_binary_operator'),\
5567PEP8_PLUGIN('break_before_binary_operator'),"))
5568 #t))
5569 (delete 'check)
5570 (add-after 'install 'check
5571 (lambda* (#:key inputs outputs #:allow-other-keys)
5572 (add-installed-pythonpath inputs outputs)
5573 (invoke "pytest" "-v")
5574 #t)))))
5575 (propagated-inputs
5576 `(("python-pycodestyle" ,python-pycodestyle)
5577 ("python-pyflakes" ,python-pyflakes)
5578 ("python-mccabe" ,python-mccabe)))
5579 (native-inputs
5580 `(("python-mock" ,python-mock)
5581 ("python-pytest" ,python-pytest-bootstrap)
5582 ("python-pytest-runner" ,python-pytest-runner)))
5583 (home-page "https://gitlab.com/pycqa/flake8")
5584 (synopsis
5585 "The modular source code checker: pep8, pyflakes and co")
5586 (description
5587 "Flake8 is a wrapper around PyFlakes, pep8 and python-mccabe.")
5588 (properties `((python2-variant . ,(delay python2-flake8-3.5))))
5589 (license license:expat)))
5590
5591(define-public python2-flake8-3.5
5592 (let ((base (package-with-python2 (strip-python2-variant python-flake8-3.5))))
5593 (package (inherit base)
5594 (propagated-inputs
5595 `(("python2-configparser" ,python2-configparser)
5596 ("python2-enum34" ,python2-enum34)
5597 ,@(package-propagated-inputs base))))))
5598
5599;; Version 3.5.0 has compatibility issues with Pyflakes 2.0, so we need
5600;; this newer version. Keep it as a separate variable for now to avoid
5601;; rebuilding "python-hypothesis"; this should be removed in the next
5602;; rebuild cycle.
5603(define-public python-flake8
5604 (package
5605 (inherit python-flake8-3.5)
5606 (version "3.6.0")
5607 (source (origin
5608 (method url-fetch)
5609 (uri (pypi-uri "flake8" version))
5610 (sha256
5611 (base32
5612 "0w0nprx22rbvrrkbfx9v5jc5gskbm08g219l7r8wai8zfswgadba"))))
5613 (arguments
5614 (substitute-keyword-arguments (package-arguments python-flake8-3.5)
5615 ((#:phases phases)
5616 `(modify-phases ,phases
5617 (delete 'delete-broken-test)
5618 (delete 'fix-problem-with-pycodestyle)))))
5619 (properties `((python2-variant . ,(delay python2-flake8))))))
5620
5621(define-public python2-flake8
5622 (let ((base (package-with-python2 (strip-python2-variant python-flake8))))
5623 (package (inherit base)
5624 (propagated-inputs
5625 (package-propagated-inputs python2-flake8-3.5)))))
5626
5627;; python-hacking requires flake8 <2.6.0.
5628(define-public python-flake8-2.5
5629 (package
5630 (inherit python-flake8)
5631 (version "2.5.5")
5632 (source (origin
5633 (method url-fetch)
5634 (uri (pypi-uri "flake8" version))
5635 (sha256
5636 (base32
5637 "1snylqwbmrylbx3r1wpz8ggk98f6bcag4441ag8mm2l7wyn58sij"))))
5638 (propagated-inputs
5639 `(("python-pep8" ,python-pep8)
5640 ,@(package-propagated-inputs python-flake8)))
5641 (properties `((python2-variant . ,(delay python2-flake8-2.5))))))
5642
5643(define-public python2-flake8-2.5
5644 (package
5645 (inherit python2-flake8)
5646 (version (package-version python-flake8-2.5))
5647 (source (origin
5648 (inherit (package-source python-flake8-2.5))))
5649 (propagated-inputs
5650 `(("python2-pep8" ,python2-pep8)
5651 ,@(package-propagated-inputs python2-flake8)))))
5652
5653(define-public python-flake8-polyfill
5654 (package
5655 (name "python-flake8-polyfill")
5656 (version "1.0.2")
5657 (source
5658 (origin
5659 (method url-fetch)
5660 (uri (pypi-uri "flake8-polyfill" version))
5661 (sha256
5662 (base32
5663 "1nlf1mkqw856vi6782qcglqhaacb23khk9wkcgn55npnjxshhjz4"))))
5664 (build-system python-build-system)
5665 (arguments
5666 '(#:phases
5667 (modify-phases %standard-phases
5668 (replace 'check
5669 (lambda _
5670 (setenv "PYTHONPATH"
5671 (string-append (getcwd) "/build/lib:"
5672 (getenv "PYTHONPATH")))
5673 (zero? (system* "py.test" "-v")))))))
5674 (native-inputs
5675 `(("python-flake8" ,python-flake8)
5676 ("python-mock" ,python-mock)
5677 ("python-pep8" ,python-pep8)
5678 ("python-pycodestyle" ,python-pycodestyle)
5679 ("python-pytest" ,python-pytest)))
5680 (home-page "https://gitlab.com/pycqa/flake8-polyfill")
5681 (synopsis "Polyfill package for Flake8 plugins")
5682 (description
5683 "This package that provides some compatibility helpers for Flake8
5684plugins that intend to support Flake8 2.x and 3.x simultaneously.")
5685 (license license:expat)))
5686
5687(define-public python2-flake8-polyfill
5688 (package-with-python2 python-flake8-polyfill))
5689
5690(define-public python-mistune
5691 (package
5692 (name "python-mistune")
5693 (version "0.8.4")
5694 (source
5695 (origin
5696 (method url-fetch)
5697 (uri (pypi-uri "mistune" version))
5698 (sha256
5699 (base32
5700 "0vkmsh0x480rni51lhyvigfdf06b9247z868pk3bal1wnnfl58sr"))))
5701 (build-system python-build-system)
5702 (native-inputs
5703 `(("python-nose" ,python-nose)
5704 ("python-cython" ,python-cython)))
5705 (home-page "https://github.com/lepture/mistune")
5706 (synopsis "Markdown parser in pure Python")
5707 (description "This package provides a fast markdown parser in pure
5708Python.")
5709 (license license:bsd-3)))
5710
5711(define-public python2-mistune
5712 (package-with-python2 python-mistune))
5713
5714(define-public python-markdown
5715 (package
5716 (name "python-markdown")
5717 (version "3.0.1")
5718 (source
5719 (origin
5720 (method url-fetch)
5721 (uri (pypi-uri "Markdown" version))
5722 (sha256
5723 (base32
5724 "0z6v8649sr434d5r5zmrhydka7v7f9yas4bwcgkcs0650jdhybnh"))))
5725 (build-system python-build-system)
5726 (native-inputs
5727 `(("python-nose" ,python-nose)
5728 ("python-pyyaml" ,python-pyyaml)))
5729 (home-page "https://python-markdown.github.io/")
5730 (synopsis "Python implementation of Markdown")
5731 (description
5732 "This package provides a Python implementation of John Gruber's
5733Markdown. The library features international input, various Markdown
5734extensions, and several HTML output formats. A command line wrapper
5735markdown_py is also provided to convert Markdown files to HTML.")
5736 (license license:bsd-3)))
5737
5738(define-public python2-markdown
5739 (package-with-python2 python-markdown))
5740
5741(define-public python-ptyprocess
5742 (package
5743 (name "python-ptyprocess")
5744 (version "0.5.2")
5745 (source
5746 (origin
5747 (method url-fetch)
5748 (uri (pypi-uri "ptyprocess" version))
5749 (sha256
5750 (base32
5751 "0ra31k10v3629xq0kdn8lwmfbi97anmk48r03yvh7mks0kq96hg6"))))
5752 (build-system python-build-system)
5753 (native-inputs
5754 `(("python-nose" ,python-nose)))
5755 (arguments
5756 `(#:phases
5757 (modify-phases %standard-phases
5758 (replace 'check
5759 (lambda _
5760 (zero? (system* "nosetests")))))))
5761 (home-page "https://github.com/pexpect/ptyprocess")
5762 (synopsis "Run a subprocess in a pseudo terminal")
5763 (description
5764 "This package provides a Python library used to launch a subprocess in a
5765pseudo terminal (pty), and interact with both the process and its pty.")
5766 (license license:isc)))
5767
5768(define-public python2-ptyprocess
5769 (package-with-python2 python-ptyprocess))
5770
5771(define-public python-cram
5772 (package
5773 (name "python-cram")
5774 (version "0.7")
5775 (home-page "https://bitheap.org/cram/")
5776 (source (origin
5777 (method url-fetch)
5778 (uri (list (string-append home-page "cram-"
5779 version ".tar.gz")
5780 (pypi-uri "cram" version)))
5781 (sha256
5782 (base32
5783 "0bvz6fwdi55rkrz3f50zsy35gvvwhlppki2yml5bj5ffy9d499vx"))))
5784 (arguments
5785 '(#:phases
5786 (modify-phases %standard-phases
5787 (add-after 'unpack 'patch-source
5788 (lambda _
5789 (substitute* (find-files "cram" ".*\\.py$")
5790 ;; Replace default shell path.
5791 (("/bin/sh") (which "sh")))
5792 (substitute* (find-files "tests" ".*\\.t$")
5793 (("md5") "md5sum")
5794 (("/bin/bash") (which "bash"))
5795 (("/bin/sh") (which "sh")))
5796 (substitute* "cram/_test.py"
5797 ;; This hack works around a bug triggered by substituting
5798 ;; the /bin/sh paths. "tests/usage.t" compares the output of
5799 ;; "cram -h", which breaks the output at 80 characters. This
5800 ;; causes the line showing the default shell to break into two
5801 ;; lines, but the test expects a single line...
5802 (("env\\['COLUMNS'\\] = '80'")
5803 "env['COLUMNS'] = '160'"))
5804 #t))
5805 (delete 'check)
5806 (add-after 'install 'check
5807 ;; The test phase uses the built library and executable.
5808 ;; It's easier to run it after install since the build
5809 ;; directory contains version-specific PATH.
5810 (lambda* (#:key inputs outputs #:allow-other-keys)
5811 (add-installed-pythonpath inputs outputs)
5812 (setenv "PATH" (string-append (getenv "PATH") ":"
5813 (assoc-ref outputs "out") "/bin"))
5814 (zero? (system* "make" "test")))))))
5815 (build-system python-build-system)
5816 (native-inputs
5817 `(("python-coverage" ,python-coverage)
5818 ("which" ,which)))
5819 (synopsis "Simple testing framework for command line applications")
5820 (description
5821 "Cram is a functional testing framework for command line applications.
5822Cram tests look like snippets of interactive shell sessions. Cram runs each
5823command and compares the command output in the test with the command’s actual
5824output.")
5825 (license license:gpl2+)))
5826
5827(define-public python2-cram
5828 (package-with-python2 python-cram))
5829
5830(define-public python-straight-plugin
5831 (package
5832 (name "python-straight-plugin")
5833 (version "1.4.1")
5834 (source
5835 (origin
5836 (method url-fetch)
5837 (uri (pypi-uri "straight.plugin" version))
5838 (sha256
5839 (base32
5840 "069pjll4383p4kkgvcc40hgyvf79j2wdbpgwz77yigzxksh1gj62"))))
5841 (build-system python-build-system)
5842 (home-page "https://github.com/ironfroggy/straight.plugin")
5843 (synopsis "Simple namespaced plugin facility")
5844 (description "Straight Plugin provides a type of plugin you can create from
5845almost any existing Python modules, and an easy way for outside developers to
5846add functionality and customization to your projects with their own plugins.")
5847 (license license:expat)))
5848
5849(define-public python2-straight-plugin
5850 (package-with-python2 python-straight-plugin))
5851
5852(define-public python-fonttools
5853 (package
5854 (name "python-fonttools")
5855 (version "3.28.0")
5856 (source (origin
5857 (method url-fetch)
5858 (uri (pypi-uri "fonttools" version ".zip"))
5859 (sha256
5860 (base32
5861 "0vsvjhidpb5kywpjgz1j3fywzkddxkb0afqai18qa3h6lqjyxwpb"))))
5862 (build-system python-build-system)
5863 (native-inputs
5864 `(("unzip" ,unzip)
5865 ("python-pytest" ,python-pytest)
5866 ("python-pytest-runner" ,python-pytest-runner)))
5867 (home-page "https://github.com/behdad/fonttools")
5868 (synopsis "Tools to manipulate font files")
5869 (description
5870 "FontTools/TTX is a library to manipulate font files from Python. It
5871supports reading and writing of TrueType/OpenType fonts, reading and writing
5872of AFM files, reading (and partially writing) of PS Type 1 fonts. The package
5873also contains a tool called “TTX” which converts TrueType/OpenType fonts to and
5874from an XML-based format.")
5875 (license license:expat)))
5876
5877(define-public python2-fonttools
5878 (package-with-python2 python-fonttools))
5879
5880(define-public python-ly
5881 (package
5882 (name "python-ly")
5883 (version "0.9.5")
5884 (source
5885 (origin
5886 (method url-fetch)
5887 (uri (pypi-uri name version))
5888 (sha256
5889 (base32
5890 "0x98dv7p8mg26p4816yy8hz4f34zf6hpnnfmr56msgh9jnsm2qfl"))))
5891 (build-system python-build-system)
5892 (arguments
5893 ;; FIXME: Some tests need network access.
5894 '(#:tests? #f))
5895 (synopsis "Tool and library for manipulating LilyPond files")
5896 (description "This package provides a Python library to parse, manipulate
5897or create documents in LilyPond format. A command line program ly is also
5898provided that can be used to do various manipulations with LilyPond files.")
5899 (home-page "https://pypi.python.org/pypi/python-ly")
5900 (license license:gpl2+)))
5901
5902(define-public python-appdirs
5903 (package
5904 (name "python-appdirs")
5905 (version "1.4.3")
5906 (source
5907 (origin
5908 (method url-fetch)
5909 (uri (pypi-uri "appdirs" version))
5910 (sha256
5911 (base32
5912 "14id6wxi12lgyw0mg3bcfnf888ad07jz9yj46gfzhn186z8rcn4y"))))
5913 (build-system python-build-system)
5914 (home-page "https://github.com/ActiveState/appdirs")
5915 (synopsis
5916 "Determine platform-specific dirs, e.g. a \"user data dir\"")
5917 (description
5918 "This module provides a portable way of finding out where user data
5919should be stored on various operating systems.")
5920 (license license:expat)))
5921
5922(define-public python2-appdirs
5923 (package-with-python2 python-appdirs))
5924
5925(define-public python-llfuse
5926 (package
5927 (name "python-llfuse")
5928 (version "1.3.5")
5929 (source (origin
5930 (method url-fetch)
5931 (uri (pypi-uri "llfuse" version ".tar.bz2"))
5932 (sha256
5933 (base32
5934 "1n7a90jww3ly49fm7x27m3xw3la3qfrnykcakga654g6kcyjlhbf"))))
5935 (build-system python-build-system)
5936 (inputs
5937 `(("fuse" ,fuse)
5938 ("attr" ,attr)))
5939 (native-inputs
5940 `(("pkg-config" ,pkg-config)))
5941 (synopsis "Python bindings for FUSE")
5942 (description
5943 "Python-LLFUSE is a set of Python bindings for the low level FUSE API.")
5944 (home-page "https://bitbucket.org/nikratio/python-llfuse/")
5945 (license license:lgpl2.0+)
5946 (properties `((python2-variant . ,(delay python2-llfuse))))))
5947
5948(define-public python2-llfuse
5949 (package (inherit (package-with-python2
5950 (strip-python2-variant python-llfuse)))
5951 (propagated-inputs `(("python2-contextlib2" ,python2-contextlib2)))))
5952
5953;; For attic-0.16
5954(define-public python-llfuse-0.41
5955 (package (inherit python-llfuse)
5956 (version "0.41.1")
5957 (source (origin
5958 (method url-fetch)
5959 (uri (string-append
5960 "https://bitbucket.org/nikratio/python-llfuse/downloads/"
5961 "llfuse-" version ".tar.bz2"))
5962 (sha256
5963 (base32
5964 "1imlqw9b73086y97izr036f58pgc5akv4ihc2rrf8j5h75jbrlaa"))))
5965 ;; Python-LLFUSE < 0.42 includes underscore.js, which is MIT (expat)
5966 ;; licensed. The rest of the package is licensed under LGPL2.0 or later.
5967 (license (list license:expat license:lgpl2.0+))))
5968
5969(define-public python-msgpack
5970 (package
5971 (name "python-msgpack")
5972 (version "0.5.6")
5973 (source (origin
5974 (method url-fetch)
5975 (uri (pypi-uri "msgpack" version))
5976 (sha256
5977 (base32
5978 "1hz2dba1nvvn52afg34liijsm7kn65cmn06dl0xbwld6bb4cis0f"))))
5979 (build-system python-build-system)
5980 (arguments
5981 `(#:modules ((guix build utils)
5982 (guix build python-build-system)
5983 (ice-9 ftw)
5984 (srfi srfi-1)
5985 (srfi srfi-26))
5986 #:phases
5987 (modify-phases %standard-phases
5988 (replace 'check
5989 (lambda _
5990 (let ((cwd (getcwd)))
5991 (setenv "PYTHONPATH"
5992 (string-append cwd "/build/"
5993 (find (cut string-prefix? "lib" <>)
5994 (scandir (string-append cwd "/build")))
5995 ":"
5996 (getenv "PYTHONPATH")))
5997 (invoke "pytest" "-v" "test")))))))
5998 (native-inputs
5999 `(("python-pytest" ,python-pytest)))
6000 (synopsis "MessagePack (de)serializer")
6001 (description "MessagePack is a fast, compact binary serialization format,
6002suitable for similar data to JSON. This package provides CPython bindings for
6003reading and writing MessagePack data.")
6004 (home-page "https://pypi.python.org/pypi/msgpack/")
6005 (license license:asl2.0)))
6006
6007;; This msgpack library's name changed from "python-msgpack" to "msgpack" with
6008;; release 0.5. Some packages like borg still call it by the old name for now.
6009;; <https://bugs.gnu.org/30662>
6010(define-public python-msgpack-transitional
6011 (package
6012 (inherit python-msgpack)
6013 (name "python-msgpack-transitional")
6014 (arguments
6015 (substitute-keyword-arguments (package-arguments python-msgpack)
6016 ((#:phases phases)
6017 `(modify-phases ,phases
6018 (add-after 'unpack 'configure-transitional
6019 (lambda _
6020 ;; Keep using the old name.
6021 (substitute* "setup.py"
6022 (("TRANSITIONAL = False")
6023 "TRANSITIONAL = 1"))
6024 #t))))))))
6025
6026(define-public python2-msgpack
6027 (package-with-python2 python-msgpack))
6028
6029(define-public python-netaddr
6030 (package
6031 (name "python-netaddr")
6032 (version "0.7.19")
6033 (source
6034 (origin
6035 (method url-fetch)
6036 (uri (pypi-uri "netaddr" version))
6037 (sha256
6038 (base32
6039 "1zdfadvpq4lmcqzr383gywxn4xyn355kj1n3lk9q2l03vmyfrbiq"))))
6040 (build-system python-build-system)
6041 (arguments `(#:tests? #f)) ;; No tests.
6042 (home-page "https://github.com/drkjam/netaddr/")
6043 (synopsis "Pythonic manipulation of network addresses")
6044 (description
6045 "A Python library for representing and manipulating IPv4, IPv6, CIDR, EUI
6046and MAC network addresses.")
6047 (license license:bsd-3)))
6048
6049(define-public python2-netaddr
6050 (package-with-python2 python-netaddr))
6051
6052(define-public python-wrapt
6053 (package
6054 (name "python-wrapt")
dddd7a75 6055 (version "1.11.1")
44d10b1f
RW
6056 (source
6057 (origin
6058 (method url-fetch)
6059 (uri (pypi-uri "wrapt" version))
6060 (sha256
6061 (base32
dddd7a75 6062 "0cqmysny1pz01jw26q48q5zasvns6507rwhgm6wcw743f0r01sja"))))
44d10b1f
RW
6063 (build-system python-build-system)
6064 (arguments
6065 ;; Tests are not included in the tarball, they are only available in the
6066 ;; git repository.
6067 `(#:tests? #f))
6068 (home-page "https://github.com/GrahamDumpleton/wrapt")
6069 (synopsis "Module for decorators, wrappers and monkey patching")
6070 (description
6071 "The aim of the wrapt module is to provide a transparent object proxy for
6072 Python, which can be used as the basis for the construction of function
6073 wrappers and decorator functions.")
6074 (license license:bsd-2)))
6075
6076(define-public python2-wrapt
6077 (package-with-python2 python-wrapt))
6078
6079(define-public python-xlrd
6080 (package
6081 (name "python-xlrd")
6082 (version "1.0.0")
6083 (source (origin
6084 (method url-fetch)
6085 (uri (pypi-uri "xlrd" version))
6086 (sha256
6087 (base32
6088 "0s8hjiz01vbhy85xalrz0qlsmd9ypf36zjqrf97hh984spapvy0g"))))
6089 (build-system python-build-system)
6090 (arguments
6091 `(#:phases
6092 (modify-phases %standard-phases
6093 ;; Current test in setup.py does not work as of 1.0.0, so use nose to
6094 ;; run tests instead for now.
6095 (replace 'check (lambda _ (zero? (system* "nosetests")))))))
6096 (native-inputs `(("python-nose" ,python-nose)))
6097 (home-page "http://www.python-excel.org/")
6098 (synopsis "Library for extracting data from Excel files")
6099 (description "This packages provides a library to extract data from
6100spreadsheets using Microsoft Excel proprietary file formats @samp{.xls} and
6101@samp{.xlsx} (versions 2.0 onwards). It has support for Excel dates and is
6102Unicode-aware. It is not intended as an end-user tool.")
6103 (license license:bsd-3)))
6104
6105(define-public python2-xlrd
6106 (package-with-python2 python-xlrd))
6107
6108(define-public python-prettytable
6109 (package
6110 (name "python-prettytable")
6111 (version "0.7.2")
6112 (source
6113 (origin
6114 (method url-fetch)
6115 (uri (string-append
6116 "https://pypi.python.org/packages/source/P/PrettyTable/"
6117 "prettytable-" version ".tar.bz2"))
6118 (sha256
6119 (base32
6120 "0diwsicwmiq2cpzpxri7cyl5fmsvicafw6nfqf6p6p322dji2g45"))))
6121 (build-system python-build-system)
6122 (home-page "http://code.google.com/p/prettytable/")
6123 (synopsis "Display tabular data in an ASCII table format")
6124 (description
6125 "A library designed to represent tabular data in visually appealing ASCII
6126tables. PrettyTable allows for selection of which columns are to be printed,
6127independent alignment of columns (left or right justified or centred) and
6128printing of sub-tables by specifying a row range.")
6129 (license license:bsd-3)))
6130
6131(define-public python2-prettytable
6132 (package-with-python2 python-prettytable))
6133
6134(define-public python-tables
6135 (package
6136 (name "python-tables")
6137 (version "3.4.4")
6138 (source
6139 (origin
6140 (method url-fetch)
6141 (uri (pypi-uri "tables" version))
6142 (sha256
6143 (base32
6144 "0affz7k8babh8wdmsgrz5jxrd569by2w8ffimcxs9wiaf5rw1idx"))
6145 (modules '((guix build utils)))
6146 (snippet
6147 '(begin
6148 ;; Remove pre-compiled .pyc files from source.
6149 (for-each delete-file-recursively
6150 (find-files "." "__pycache__" #:directories? #t))
6151 (for-each delete-file (find-files "." "\\.pyc$"))
6152 #t))))
6153 (build-system python-build-system)
6154 (arguments
6155 `(;; FIXME: python-build-system does not pass configure-flags to "build"
6156 ;; or "check", so we must override the build and check phases.
6157 #:phases
6158 (modify-phases %standard-phases
6159 (add-after 'unpack 'use-gcc
6160 (lambda _
6161 (substitute* "setup.py"
6162 (("compiler = new_compiler\\(\\)" line)
6163 (string-append line
6164 "\ncompiler.set_executables(compiler='gcc',"
6165 "compiler_so='gcc',"
6166 "linker_exe='gcc',"
6167 "linker_so='gcc -shared')")))
6168 #t))
6169 (replace 'build
6170 (lambda* (#:key inputs #:allow-other-keys)
6171 (zero? (system* "python" "setup.py" "build"
6172 (string-append "--hdf5="
6173 (assoc-ref inputs "hdf5"))))))
6174 (replace 'check
6175 (lambda* (#:key inputs #:allow-other-keys)
6176 (zero? (system* "python" "setup.py" "check"
6177 (string-append "--hdf5="
6178 (assoc-ref inputs "hdf5")))))))))
6179 (propagated-inputs
6180 `(("python-numexpr" ,python-numexpr)
6181 ("python-numpy" ,python-numpy)))
6182 (native-inputs
6183 `(("python-cython" ,python-cython)
6184 ("pkg-config" ,pkg-config)))
6185 (inputs
6186 `(("hdf5" ,hdf5)
6187 ("bzip2" ,bzip2)
6188 ("zlib" ,zlib)))
6189 (home-page "http://www.pytables.org/")
6190 (synopsis "Hierarchical datasets for Python")
6191 (description "PyTables is a package for managing hierarchical datasets and
6192designed to efficiently cope with extremely large amounts of data.")
6193 (license license:bsd-3)))
6194
6195(define-public python2-tables
6196 (package-with-python2 python-tables))
6197
6198(define-public python-pyasn1
6199 (package
6200 (name "python-pyasn1")
6201 (version "0.4.3")
6202 (source
6203 (origin
6204 (method url-fetch)
6205 (uri (pypi-uri "pyasn1" version))
6206 (sha256
6207 (base32
6208 "1z5h38anjzzrxpraa9iq9llffyx2zs8gx0q6dc1g029miwnn50gv"))))
6209 (build-system python-build-system)
6210 (home-page "http://pyasn1.sourceforge.net/")
6211 (synopsis "ASN.1 types and codecs")
6212 (description
6213 "This is an implementation of ASN.1 types and codecs in Python. It is
6214suitable for a wide range of protocols based on the ASN.1 specification.")
6215 (license license:bsd-2)))
6216
6217(define-public python2-pyasn1
6218 (package-with-python2 python-pyasn1))
6219
6220(define-public python-pyasn1-modules
6221 (package
6222 (name "python-pyasn1-modules")
6223 (version "0.2.2")
6224 (source
6225 (origin
6226 (method url-fetch)
6227 (uri (pypi-uri "pyasn1-modules" version))
6228 (sha256
6229 (base32
6230 "0ivm850yi7ajjbi8j115qpsj95bgxdsx48nbjzg0zip788c3xkx0"))))
6231 (build-system python-build-system)
6232 (propagated-inputs
6233 `(("python-pyasn1" ,python-pyasn1)))
6234 (home-page "https://sourceforge.net/projects/pyasn1/")
6235 (synopsis "ASN.1 codec implementations")
6236 (description
6237 "Pyasn1-modules is a collection of Python modules providing ASN.1 types and
6238implementations of ASN.1-based codecs and protocols.")
6239 (license license:bsd-3)))
6240
6241(define-public python2-pyasn1-modules
6242 (package-with-python2 python-pyasn1-modules))
6243
6244(define-public python-ipaddress
6245 (package
6246 (name "python-ipaddress")
6247 (version "1.0.22")
6248 (source (origin
6249 (method url-fetch)
6250 (uri (pypi-uri "ipaddress" version))
6251 (sha256
6252 (base32
6253 "0b570bm6xqpjwqis15pvdy6lyvvzfndjvkynilcddjj5x98wfimi"))))
6254 (build-system python-build-system)
6255 (home-page "https://github.com/phihag/ipaddress")
6256 (synopsis "IP address manipulation library")
6257 (description
6258 "This package provides a fast, lightweight IPv4/IPv6 manipulation library
6259 in Python. This library is used to create, poke at, and manipulate IPv4 and
6260 IPv6 addresses and networks. This is a port of the Python 3.3 ipaddress
6261 module to older versions of Python.")
6262 (license license:psfl)))
6263
6264(define-public python2-ipaddress
6265 (package-with-python2 python-ipaddress))
6266
6267(define-public python2-ipaddr
6268 (package
6269 (name "python2-ipaddr")
6270 (version "2.1.11")
6271 (source
6272 (origin
6273 (method url-fetch)
6274 (uri (pypi-uri "ipaddr" version))
6275 (sha256
6276 (base32 "1dwq3ngsapjc93fw61rp17fvzggmab5x1drjzvd4y4q0i255nm8v"))))
6277 (build-system python-build-system)
6278 (arguments
6279 `(#:python ,python-2 ;version 2 only
6280 #:phases
6281 (modify-phases %standard-phases
6282 (replace 'check
6283 (lambda* _
6284 (zero? (system* "python" "ipaddr_test.py")))))))
6285 (home-page "https://github.com/google/ipaddr-py")
6286 (synopsis "IP address manipulation library")
6287 (description
6288 "Ipaddr is a Python@tie{}2 library for creating and manupilating IPv4 and
6289IPv6 addresses and networks.
6290
6291For new implementations you may prefer to use the standard module
6292@code{ipaddress}, which was introduced in Python 3.3 and backported to older
6293versions of Python.")
6294 (license license:asl2.0)))
6295
6296(define-public python-idna
6297 (package
6298 (name "python-idna")
6299 (version "2.7")
6300 (source
6301 (origin
6302 (method url-fetch)
6303 (uri (pypi-uri "idna" version))
6304 (sha256
6305 (base32
6306 "05jam7d31767dr12x0rbvvs8lxnpb1mhdb2zdlfxgh83z6k3hjk8"))))
6307 (build-system python-build-system)
6308 (home-page "https://github.com/kjd/idna")
6309 (synopsis "Internationalized domain names in applications")
6310 (description
6311 "This is a library to support the Internationalised Domain Names in
6312Applications (IDNA) protocol as specified in RFC 5891. This version of the
6313protocol is often referred to as “IDNA2008” and can produce different results
6314from the earlier standard from 2003. The library is also intended to act as a
6315suitable drop-in replacement for the “encodings.idna” module that comes with
6316the Python standard library but currently only supports the older 2003
6317specification.")
6318 (license license:bsd-4)))
6319
6320(define-public python2-idna
6321 (package-with-python2 python-idna))
6322
6323(define-public python-idna-ssl
6324 (package
6325 (name "python-idna-ssl")
6326 (version "1.0.1")
6327 (source
6328 (origin
6329 (method url-fetch)
6330 (uri (pypi-uri "idna-ssl" version))
6331 (sha256
6332 (base32
6333 "0ydrc8hpg9mdr5hqq1lqfsfbn6sjq69slwpfrnlrm3k0phqg14qj"))))
6334 (build-system python-build-system)
6335 (arguments
6336 `(#:tests? #f)) ;circular dependency with python-aiohttp
6337 (home-page "https://github.com/aio-libs/idna-ssl")
6338 (synopsis "Patch @code{ssl.match_hostname} for Unicode(idna) domains support")
6339 (description "Patch @code{ssl.match_hostname} for Unicode(idna)
6340domains support.")
6341 (license license:expat)))
6342
6343(define-public python-pretend
6344 (package
6345 (name "python-pretend")
6346 (version "1.0.9")
6347 (source
6348 (origin
6349 (method url-fetch)
6350 (uri (string-append "https://pypi.python.org/packages/source/p/"
6351 "pretend/pretend-" version ".tar.gz"))
6352 (sha256
6353 (base32
6354 "040vm94lcbscg5p81g1icmwwwa2jm7wrd1ybmxnv1sz8rl8bh3n9"))))
6355 (build-system python-build-system)
6356 (home-page "https://github.com/alex/pretend")
6357 (synopsis "Library for stubbing in Python")
6358 (description
6359 "Pretend is a library to make stubbing with Python easier. Stubbing is a
6360technique for writing tests. You may hear the term mixed up with mocks,
6361fakes, or doubles. Basically, a stub is an object that returns pre-canned
6362responses, rather than doing any computation.")
6363 (license license:bsd-3)))
6364
6365(define-public python2-pretend
6366 (package-with-python2 python-pretend))
6367
6368(define-public python-pip
6369 (package
6370 (name "python-pip")
6371 (version "18.1")
6372 (source
6373 (origin
6374 (method url-fetch)
6375 (uri (pypi-uri "pip" version))
6376 (sha256
6377 (base32
6378 "188fclay154s520n43s7cxxlhdaiysvxf19zk8vr1xbyjyyr58n0"))))
6379 (build-system python-build-system)
6380 (arguments
6381 '(#:tests? #f)) ; there are no tests in the pypi archive.
6382 (home-page "https://pip.pypa.io/")
6383 (synopsis "Package manager for Python software")
6384 (description
6385 "Pip is a package manager for Python software, that finds packages on the
6386Python Package Index (PyPI).")
6387 (license license:expat)))
6388
6389(define-public python2-pip
6390 (package-with-python2 python-pip))
6391
6392(define-public python-tlsh
6393 (package
6394 (name "python-tlsh")
6395 (version "3.4.5")
6396 (home-page "https://github.com/trendmicro/tlsh")
6397 (source (origin
6398 (method url-fetch)
6399 (uri (string-append "https://github.com/trendmicro/tlsh/archive/v"
6400 version ".tar.gz"))
6401 (sha256
6402 (base32
6403 "1x1vahd4zg5kpyr9h9hs3fvh460p25rjy4cclwdnbbw8x3vc30q3"))
6404 (file-name (string-append name "-" version ".tar.gz"))))
6405 (build-system cmake-build-system)
6406 (arguments
6407 '(#:out-of-source? #f
6408 #:phases (modify-phases %standard-phases
6409 (replace
6410 'install
6411 (lambda* (#:key outputs #:allow-other-keys)
6412 ;; Build and install the Python bindings. The underlying
6413 ;; C++ library is apparently not meant to be installed.
6414 (let ((out (assoc-ref outputs "out")))
6415 (with-directory-excursion "py_ext"
6416 (and (system* "python" "setup.py" "build")
6417 (system* "python" "setup.py" "install"
6418 (string-append "--prefix=" out))))))))))
6419 (inputs `(("python" ,python-wrapper))) ;for the bindings
6420 (synopsis "Fuzzy matching library for Python")
6421 (description
6422 "Trend Micro Locality Sensitive Hash (TLSH) is a fuzzy matching library.
6423Given a byte stream with a minimum length of 256 bytes, TLSH generates a hash
6424value which can be used for similarity comparisons. Similar objects have
6425similar hash values, which allows for the detection of similar objects by
6426comparing their hash values. The byte stream should have a sufficient amount
6427of complexity; for example, a byte stream of identical bytes will not generate
6428a hash value.")
6429 (license license:asl2.0)))
6430
6431(define-public python2-tlsh
6432 (package
6433 (inherit python-tlsh)
6434 (name "python2-tlsh")
6435 (inputs `(("python" ,python-2)))))
6436
6437(define-public python-termcolor
6438 (package
6439 (name "python-termcolor")
6440 (version "1.1.0")
6441 (source
6442 (origin
6443 (method url-fetch)
6444 (uri (pypi-uri "termcolor" version))
6445 (sha256
6446 (base32
6447 "0fv1vq14rpqwgazxg4981904lfyp84mnammw7y046491cv76jv8x"))))
6448 (build-system python-build-system)
6449 (arguments
6450 ;; There are no tests.
6451 `(#:tests? #f))
6452 (home-page "https://pypi.python.org/pypi/termcolor")
6453 (synopsis "ANSII Color formatting for terminal output")
6454 (description
6455 "This package provides ANSII Color formatting for output in terminals.")
6456 (license license:expat)))
6457
6458(define-public python2-termcolor
6459 (package-with-python2 python-termcolor))
6460
6461(define-public python-libarchive-c
6462 (package
6463 (name "python-libarchive-c")
6464 (version "2.8")
6465 (source (origin
6466 (method url-fetch)
6467 (uri (pypi-uri "libarchive-c" version))
6468 (sha256
6469 (base32
6470 "0qg0v1s9c1xdk9philhnv8k6c6nicvnvfwlc0j9srg90jmdlvm06"))))
6471 (build-system python-build-system)
6472 (arguments
6473 '(#:phases (modify-phases %standard-phases
6474 (add-before
6475 'build 'reference-libarchive
6476 (lambda* (#:key inputs #:allow-other-keys)
6477 ;; Retain the absolute file name of libarchive.so.
6478 (let ((libarchive (assoc-ref inputs "libarchive")))
6479 (substitute* "libarchive/ffi.py"
6480 (("find_library\\('archive'\\)")
6481 (string-append "'" libarchive
6482 "/lib/libarchive.so'"))))))
6483 (replace 'check
6484 (lambda _ (invoke "pytest" "-vv"))))))
6485 (native-inputs
6486 `(("python-mock" ,python-mock)
6487 ("python-pytest" ,python-pytest)))
6488 (inputs
6489 `(("libarchive" ,libarchive)))
6490 (home-page "https://github.com/Changaco/python-libarchive-c")
6491 (synopsis "Python interface to libarchive")
6492 (description
6493 "This package provides Python bindings to libarchive, a C library to
6494access possibly compressed archives in many different formats. It uses
6495Python's @code{ctypes} foreign function interface (FFI).")
6496 (license license:lgpl2.0+)))
6497
6498(define-public python2-libarchive-c
6499 (package-with-python2 python-libarchive-c))
6500
6501(define-public python-file
6502 (package
6503 (inherit file)
6504 (name "python-file")
6505 (build-system python-build-system)
6506 (arguments
6507 '(#:tests? #f ;no tests
6508 #:configure-flags '("--single-version-externally-managed" "--root=/")
6509 #:phases (modify-phases %standard-phases
6510 (add-before 'build 'change-directory
6511 (lambda _
6512 (chdir "python")
6513 #t))
6514 (add-before 'build 'set-library-file-name
6515 (lambda* (#:key inputs #:allow-other-keys)
6516 (let ((file (assoc-ref inputs "file")))
6517 (substitute* "magic.py"
6518 (("find_library\\('magic'\\)")
6519 (string-append "'" file "/lib/libmagic.so'")))
6520 #t))))))
6521 (inputs `(("file" ,file)))
6522 (self-native-input? #f)
6523 (synopsis "Python bindings to the libmagic file type guesser. Note that
6524this module and the python-magic module both provide a \"magic.py\" file;
6525these two modules, which are different and were developed separately, both
6526serve the same purpose: provide Python bindings for libmagic.")))
6527
6528(define-public python2-file
6529 (package-with-python2 python-file))
6530
6531(define-public python-debian
6532 (package
6533 (name "python-debian")
6534 (home-page "https://salsa.debian.org/python-debian-team/python-debian")
6535 (version "0.1.28")
6536 (source
6537 (origin
6538 (method url-fetch)
6539 (uri (pypi-uri name version))
6540 (sha256
6541 (base32
6542 "0i15f0xzx679sd0ldq2sls9pnnps9fv6vhqvnv9dzf4qhma42i0y"))))
6543 (build-system python-build-system)
6544 (propagated-inputs
6545 `(("python-six" ,python-six)))
6546 (synopsis "Debian package related modules")
6547 (description
6548 ;; XXX: Use @enumerate instead of @itemize to work around
6549 ;; <http://bugs.gnu.org/21772>.
6550 "This package provides Python modules that abstract many formats of
6551Debian-related files, such as:
6552
6553@enumerate
6554@item Debtags information;
6555@item @file{debian/changelog} files;
6556@item packages files, pdiffs;
6557@item control files of single or multiple RFC822-style paragraphs---e.g.
6558 @file{debian/control}, @file{.changes}, @file{.dsc};
6559@item Raw @file{.deb} and @file{.ar} files, with (read-only) access to
6560 contained files and meta-information.
6561@end enumerate\n")
6562
6563 ;; Modules are either GPLv2+ or GPLv3+.
6564 (license license:gpl3+)))
6565
6566(define-public python2-debian
6567 (package-with-python2 python-debian))
6568
6569(define-public python-nbformat
6570 (package
6571 (name "python-nbformat")
6572 (version "4.4.0")
6573 (source
6574 (origin
6575 (method url-fetch)
6576 (uri (pypi-uri "nbformat" version))
6577 (sha256
6578 (base32
6579 "00nlf08h8yc4q73nphfvfhxrcnilaqanb8z0mdy6nxk0vzq4wjgp"))))
6580 (build-system python-build-system)
6581 (arguments `(#:tests? #f)) ; no test target
6582 (propagated-inputs
6583 `(("python-ipython-genutils" ,python-ipython-genutils)
6584 ("python-jsonschema" ,python-jsonschema)
6585 ("python-jupyter-core" ,python-jupyter-core)
6586 ("python-traitlets" ,python-traitlets)))
6587 (home-page "http://jupyter.org")
6588 (synopsis "Jupyter Notebook format")
6589 (description "This package provides the reference implementation of the
6590Jupyter Notebook format and Python APIs for working with notebooks.")
6591 (license license:bsd-3)))
6592
6593(define-public python2-nbformat
6594 (package-with-python2 python-nbformat))
6595
6596(define-public python-bleach
6597 (package
6598 (name "python-bleach")
6599 (version "1.4.3")
6600 (source
6601 (origin
6602 (method url-fetch)
6603 (uri (pypi-uri "bleach" version))
6604 (sha256
6605 (base32
6606 "0jvg3jxrvnx7xmm9gj262v60ib452xlnwlb0navyp7jsvcd0d4qj"))))
6607 (build-system python-build-system)
6608 (propagated-inputs
6609 `(("python-html5lib" ,python-html5lib-0.9)
6610 ("python-six" ,python-six)))
6611 (native-inputs
6612 `(("python-nose" ,python-nose)))
6613 (home-page "https://github.com/jsocol/bleach")
6614 (synopsis "Whitelist-based HTML-sanitizing tool")
6615 (description "Bleach is an easy whitelist-based HTML-sanitizing tool.")
6616 (license license:asl2.0)))
6617
6618(define-public python2-bleach
6619 (package-with-python2 python-bleach))
6620
6621(define-public python-entrypoints
6622 (package
6623 (name "python-entrypoints")
6624 (version "0.2.3")
6625 (source
6626 (origin
6627 (method url-fetch)
6628 (uri (string-append "https://github.com/takluyver/entrypoints/archive/"
6629 version ".tar.gz"))
6630 (file-name (string-append name "-" version ".tar.gz"))
6631 (sha256
6632 (base32
6633 "1pdvgfr5bxyvnfvxbsd3zi0dh3il71pc4k6rinx6zpps91b84a56"))))
6634 (build-system python-build-system)
6635 ;; The package does not come with a setup.py file, so we have to generate
6636 ;; one ourselves.
6637 (arguments
6638 `(#:tests? #f
6639 #:phases
6640 (modify-phases %standard-phases
6641 (add-after 'unpack 'create-setup.py
6642 (lambda _
6643 (call-with-output-file "setup.py"
6644 (lambda (port)
6645 (format port "\
6646from setuptools import setup
6647setup(name='entrypoints', version='~a', py_modules=['entrypoints'])
6648" ,version))))))))
6649 (home-page "https://github.com/takluyver/entrypoints")
6650 (synopsis "Discover and load entry points from installed Python packages")
6651 (description "Entry points are a way for Python packages to advertise
6652objects with some common interface. The most common examples are
6653@code{console_scripts} entry points, which define shell commands by
6654identifying a Python function to run. The @code{entrypoints} module contains
6655functions to find and load entry points.")
6656 (license license:expat)))
6657
6658(define-public python2-entrypoints
6659 (package-with-python2 python-entrypoints))
6660
6661(define-public python-nbconvert
6662 (package
6663 (name "python-nbconvert")
6664 (version "5.0.0b1")
6665 (source
6666 (origin
6667 (method url-fetch)
6668 (uri (pypi-uri "nbconvert" version))
6669 (sha256
6670 (base32
6671 "0brclbb18l4nmd5qy3dl9wn05rjdh1fz4rmzdlfqacj12rcdvdgp"))))
6672 (build-system python-build-system)
6673 (arguments
6674 `(;; The "bdist_egg" target is disabled by default, causing the installation
6675 ;; to fail.
6676 #:configure-flags (list "bdist_egg")
6677 ;; FIXME: 5 failures, 40 errors.
6678 #:tests? #f))
6679 ;; #:phases
6680 ;; (modify-phases %standard-phases
6681 ;; (replace 'check
6682 ;; (lambda _
6683 ;; (zero? (system* "py.test" "-v")))))
6684 (native-inputs
6685 `(("python-pytest" ,python-pytest)))
6686 (propagated-inputs
6687 `(("python-bleach" ,python-bleach)
6688 ("python-entrypoints" ,python-entrypoints)
6689 ("python-jinja2" ,python-jinja2)
6690 ("python-jupyter-core" ,python-jupyter-core)
6691 ("python-mistune" ,python-mistune)
6692 ("python-nbformat" ,python-nbformat)
6693 ("python-pygments" ,python-pygments)
6694 ("python-traitlets" ,python-traitlets)))
6695 (home-page "http://jupyter.org")
6696 (synopsis "Converting Jupyter Notebooks")
6697 (description "The @code{nbconvert} tool, @{jupyter nbconvert}, converts
6698notebooks to various other formats via Jinja templates. It allows you to
6699convert an @code{.ipynb} notebook file into various static formats including:
6700
6701@enumerate
6702@item HTML
6703@item LaTeX
6704@item PDF
6705@item Reveal JS
6706@item Markdown (md)
6707@item ReStructured Text (rst)
6708@item executable script
6709@end enumerate\n")
6710 (license license:bsd-3)))
6711
6712(define-public python2-nbconvert
6713 (package-with-python2 python-nbconvert))
6714
6715(define-public python-prometheus-client
6716 (package
6717 (name "python-prometheus-client")
6718 (version "0.5.0")
6719 (source
6720 (origin
6721 (method url-fetch)
6722 (uri (pypi-uri "prometheus_client" version))
6723 (sha256
6724 (base32
6725 "0g7rpv1pq2lab1nfqdx98z9d3bqwc400alg1j4ynrpjkrbsizhg8"))))
6726 (build-system python-build-system)
6727 (arguments '(#:tests? #f)) ; tests are not included
6728 (propagated-inputs
6729 `(("python-twisted" ,python-twisted)))
6730 (home-page "https://github.com/prometheus/client_python")
6731 (synopsis "Python client for the Prometheus monitoring system")
6732 (description
6733 "This package provides a Python client for the Prometheus monitoring
6734system.")
6735 (license license:asl2.0)))
6736
6737(define-public python2-prometheus-client
6738 (package-with-python2 python-prometheus-client))
6739
6740(define-public python-notebook
6741 (package
6742 (name "python-notebook")
6743 (version "5.7.4")
6744 (source (origin
6745 (method url-fetch)
6746 (uri (pypi-uri "notebook" version))
6747 (sha256
6748 (base32
6749 "0jm7324mbxljmn9hgapj66q7swyz5ai92blmr0jpcy0h80x6f26r"))))
6750 (build-system python-build-system)
6751 (arguments
6752 `(#:phases
6753 (modify-phases %standard-phases
6754 (replace 'check
6755 (lambda _
6756 ;; These tests require a browser
6757 (delete-file-recursively "notebook/tests/selenium")
6758 ;; Some tests need HOME
6759 (setenv "HOME" "/tmp")
6760 ;; This file contains "warningfilters", which are not supported
6761 ;; by this version of nose.
6762 (delete-file "setup.cfg")
6763 (with-directory-excursion "/tmp"
6764 (invoke "nosetests" "-v"))
6765 #t)))))
6766 (propagated-inputs
6767 `(("python-jupyter-core" ,python-jupyter-core)
6768 ("python-nbformat" ,python-nbformat)
6769 ("python-nbconvert" ,python-nbconvert)
6770 ("python-prometheus-client" ,python-prometheus-client)
6771 ("python-send2trash" ,python-send2trash)
6772 ("python-terminado" ,python-terminado)))
6773 (native-inputs
6774 `(("python-nose" ,python-nose)
6775 ("python-sphinx" ,python-sphinx)
6776 ("python-requests" ,python-requests)))
6777 (home-page "http://jupyter.org/")
6778 (synopsis "Web-based notebook environment for interactive computing")
6779 (description
6780 "The Jupyter HTML notebook is a web-based notebook environment for
6781interactive computing.")
6782 (properties `((python2-variant . ,(delay python2-notebook))))
6783 (license license:bsd-3)))
6784
6785(define-public python2-notebook
6786 (let ((base (package-with-python2
6787 (strip-python2-variant python-notebook))))
6788 (package (inherit base)
6789 (native-inputs
6790 `(("python2-mock" ,python2-mock)
6791 ,@(package-native-inputs base)))
6792 (arguments
6793 (substitute-keyword-arguments (package-arguments base)
6794 ((#:phases phases)
6795 `(modify-phases ,phases
6796 (add-before 'check 'disable-test-case
6797 ;; The test requires network access to localhost. Curiously it
6798 ;; fails with Python 2 only. Simply make the test-case return
6799 ;; immediately.
6800 (lambda _
6801 (substitute*
6802 "notebook/services/nbconvert/tests/test_nbconvert_api.py"
6803 (("formats = self.nbconvert_api") "return #")))))))))))
6804
6805(define-public python-widgetsnbextension
6806 (package
6807 (name "python-widgetsnbextension")
6808 (version "3.4.2")
6809 (source
6810 (origin
6811 (method url-fetch)
6812 (uri (pypi-uri "widgetsnbextension" version))
6813 (sha256
6814 (base32
6815 "0rc2nivdy7k4m3vljx7wdh2jh11djapcgwhvzlbs0isl8gl8nqgs"))))
6816 (build-system python-build-system)
6817 (propagated-inputs
6818 `(("python-ipykernel" ,python-ipykernel)
6819 ("python-notebook" ,python-notebook)))
6820 (native-inputs
6821 `(("python-certifi" ,python-certifi)
6822 ("python-nose" ,python-nose)))
6823 (home-page "https://ipython.org")
6824 (synopsis "IPython HTML widgets for Jupyter")
6825 (description "This package provides interactive HTML widgets for Jupyter
6826notebooks.")
6827 (license license:bsd-3)))
6828
6829(define-public python2-widgetsnbextension
6830 (package-with-python2 python-widgetsnbextension))
6831
6832(define-public python-ipywidgets
6833 (package
6834 (name "python-ipywidgets")
6835 (version "5.2.2")
6836 (source
6837 (origin
6838 (method url-fetch)
6839 (uri (pypi-uri "ipywidgets" version))
6840 (sha256
6841 (base32
6842 "1lk0qrr5l9a0z7qkkn30hv5832whxwxymf1l576fmmad0n7hkxms"))))
6843 (build-system python-build-system)
6844 (propagated-inputs
6845 `(("python-ipython" ,python-ipython)
6846 ("python-traitlets" ,python-traitlets)
6847 ("python-widgetsnbextension" ,python-widgetsnbextension)))
6848 (native-inputs
6849 `(("python-nose" ,python-nose)
6850 ("python-pytest" ,python-pytest)))
6851 (home-page "https://ipython.org")
6852 (synopsis "IPython HTML widgets for Jupyter")
6853 (description "Ipywidgets are interactive HTML widgets for Jupyter
6854notebooks and the IPython kernel. Notebooks come alive when interactive
6855widgets are used. Users gain control of their data and can visualize changes
6856in the data.")
6857 (license license:bsd-3)))
6858
6859(define-public python2-ipywidgets
6860 (package-with-python2 python-ipywidgets))
6861
6862(define-public python-jupyter-console
6863 (package
6864 (name "python-jupyter-console")
6865 (version "5.2.0")
6866 (source
6867 (origin
6868 (method url-fetch)
6869 (uri (pypi-uri "jupyter_console" version))
6870 (sha256
6871 (base32
6872 "1kam1qzgwr7srhm5r6aj90di5sws4bq0jmiw15452ddamb9yspal"))))
6873 (build-system python-build-system)
6874 ;; Tests only run in an TTY.
6875 (arguments `(#:tests? #f))
6876 (propagated-inputs
6877 `(("python-ipykernel" ,python-ipykernel)
6878 ("python-jupyter-client" ,python-jupyter-client)
6879 ("python-prompt-toolkit" ,python-prompt-toolkit-1)
6880 ("python-pygments" ,python-pygments)))
6881 (native-inputs
6882 `(("python-nose" ,python-nose)))
6883 (home-page "https://jupyter.org")
6884 (synopsis "Jupyter terminal console")
6885 (description "This package provides a terminal-based console frontend for
6886Jupyter kernels. It also allows for console-based interaction with non-Python
6887Jupyter kernels such as IJulia and IRKernel.")
6888 (license license:bsd-3)))
6889
6890(define-public python2-jupyter-console
6891 (package-with-python2 python-jupyter-console))
6892
6893;; The python-ipython and python-jupyter-console require each other. To get
6894;; the functionality in both packages working, strip down the
6895;; python-jupyter-console package when using it as an input to python-ipython.
6896(define python-jupyter-console-minimal
6897 (package
6898 (inherit python-jupyter-console)
6899 (name "python-jupyter-console-minimal")
6900 (arguments
6901 (substitute-keyword-arguments
6902 (package-arguments python-jupyter-console)
6903 ((#:phases phases)
6904 `(modify-phases ,phases
6905 (add-after 'install 'delete-bin
6906 (lambda* (#:key outputs #:allow-other-keys)
6907 ;; Delete the bin files, to avoid conflicts in profiles
6908 ;; where python-ipython and python-jupyter-console are
6909 ;; both present.
6910 (delete-file-recursively
6911 (string-append
6912 (assoc-ref outputs "out") "/bin"))))))))
6913 ;; Remove the python-ipython propagated input, to avoid the cycle
6914 (propagated-inputs
6915 (alist-delete
6916 "python-ipython"
6917 (package-propagated-inputs python-jupyter-console)))))
6918
6919(define-public python-qtconsole
6920 (package
6921 (name "python-qtconsole")
6922 (version "4.4.3")
6923 (source
6924 (origin
6925 (method url-fetch)
6926 (uri (pypi-uri "qtconsole" version))
6927 (sha256
6928 (base32
6929 "1b03n1ixzscm0jw97l4dq5iy4fslnqxq5bb8287xb7n2a1gs26xw"))))
6930 (build-system python-build-system)
6931 (arguments
6932 ;; XXX: Tests are disabled, because this package needs python-ipython 7,
6933 ;; but we only have the LTS version 5.x. This means that there might be
6934 ;; runtime errors, but since this is a dependency of the Jupyter package,
6935 ;; and Jupyter can be used without the qtconsole we can overlook this for
6936 ;; now.
6937 `(#:tests? #f
6938 #:phases
6939 (modify-phases %standard-phases
6940 (add-before 'check 'pre-check
6941 (lambda _
6942 (setenv "QT_QPA_PLATFORM" "offscreen")
6943 #t)))))
6944 (propagated-inputs
6945 `(("python-ipykernel" ,python-ipykernel)
6946 ("python-ipython" ,python-ipython)))
6947 (native-inputs
6948 `(("python-pytest" ,python-pytest)))
6949 (home-page "http://jupyter.org")
6950 (synopsis "Jupyter Qt console")
6951 (description "This package provides a Qt-based console for Jupyter with
6952support for rich media output.")
6953 (license license:bsd-3)))
6954
6955(define-public jupyter
6956 (package
6957 (name "jupyter")
6958 (version "1.0.0")
6959 (source
6960 (origin
6961 (method url-fetch)
6962 (uri (pypi-uri "jupyter" version))
6963 (sha256
6964 (base32
6965 "0pwf3pminkzyzgx5kcplvvbvwrrzd3baa7lmh96f647k30rlpp6r"))))
6966 (build-system python-build-system)
6967 (arguments '(#:tests? #f)) ; there are none.
6968 (propagated-inputs
6969 `(("python-ipykernel" ,python-ipykernel)
6970 ("python-ipywidgets" ,python-ipywidgets)
6971 ("python-jupyter-console" ,python-jupyter-console)
6972 ("python-nbconvert" ,python-nbconvert)
6973 ("python-notebook" ,python-notebook)
6974 ("python-qtconsole" ,python-qtconsole)))
6975 (native-search-paths
6976 (list (search-path-specification
6977 (variable "JUPYTER_PATH")
6978 (files '("share/jupyter")))))
6979 (home-page "https://jupyter.org")
6980 (synopsis "Web application for interactive documents")
6981 (description
6982 "The Jupyter Notebook is a web application that allows you to create and
6983share documents that contain live code, equations, visualizations and
6984explanatory text. Uses include: data cleaning and transformation, numerical
6985simulation, statistical modeling, machine learning and much more.")
6986 (license license:bsd-3)))
6987
6988(define-public python-chardet
6989 (package
6990 (name "python-chardet")
6991 (version "3.0.4")
6992 (source
6993 (origin
6994 (method url-fetch)
6995 (uri (pypi-uri "chardet" version))
6996 (sha256
6997 (base32
6998 "1bpalpia6r5x1kknbk11p1fzph56fmmnp405ds8icksd3knr5aw4"))))
6999 (native-inputs
7000 `(("python-hypothesis" ,python-hypothesis)
7001 ("python-pytest" ,python-pytest)
7002 ("python-pytest-runner" ,python-pytest-runner)))
7003 (build-system python-build-system)
7004 (home-page "https://github.com/chardet/chardet")
7005 (synopsis "Universal encoding detector for Python 2 and 3")
7006 (description
7007 "This package provides @code{chardet}, a Python module that can
7008automatically detect a wide range of file encodings.")
7009 (license license:lgpl2.1+)))
7010
7011(define-public python2-chardet
7012 (package-with-python2 python-chardet))
7013
7014(define-public python-docopt
7015 (package
7016 (name "python-docopt")
7017 (version "0.6.2")
7018 (source
7019 (origin
7020 (method url-fetch)
7021 ;; The release on PyPI does not include tests.
7022 (uri (string-append
7023 "https://github.com/docopt/docopt/archive/"
7024 version ".tar.gz"))
7025 (file-name (string-append name "-" version ".tar.gz"))
7026 (sha256
7027 (base32
7028 "16bf890xbdz3m30rsv2qacklh2rdn1zrfspfnwzx9g7vwz8yw4r1"))))
7029 (build-system python-build-system)
7030 (native-inputs
7031 `(("python-pytest" ,python-pytest)))
7032 (arguments
7033 `(#:phases
7034 (modify-phases %standard-phases
7035 (replace 'check
7036 (lambda _ (invoke "py.test"))))))
7037 (home-page "http://docopt.org")
7038 (synopsis "Command-line interface description language for Python")
7039 (description "This library allows the user to define a command-line
7040interface from a program's help message rather than specifying it
7041programatically with command-line parsers like @code{getopt} and
7042@code{argparse}.")
7043 (license license:expat)))
7044
7045(define-public python2-docopt
7046 (package-with-python2 python-docopt))
7047
7048(define-public python-pythondialog
7049 (package
7050 (name "python-pythondialog")
7051 (version "3.4.0")
7052 (source
7053 (origin
7054 (method url-fetch)
7055 (uri (pypi-uri "pythondialog" version))
7056 (sha256
7057 (base32
7058 "1728ghsran47jczn9bhlnkvk5bvqmmbihabgif5h705b84r1272c"))))
7059 (build-system python-build-system)
7060 (arguments
7061 `(#:phases
7062 (modify-phases %standard-phases
7063 (add-after 'unpack 'patch-path
7064 (lambda* (#:key inputs #:allow-other-keys)
7065 (let* ((dialog (assoc-ref inputs "dialog")))
7066 ;; Since this library really wants to grovel the search path, we
7067 ;; must hardcode dialog's store path into it.
7068 (substitute* "dialog.py"
7069 (("os.getenv\\(\"PATH\", \":/bin:/usr/bin\"\\)")
7070 (string-append "os.getenv(\"PATH\") + \":" dialog "/bin\"")))
7071 #t))))
7072 #:tests? #f)) ; no test suite
7073 (propagated-inputs
7074 `(("dialog" ,dialog)))
7075 (home-page "http://pythondialog.sourceforge.net/")
7076 (synopsis "Python interface to the UNIX dialog utility")
7077 (description "A Python wrapper for the dialog utility. Its purpose is to
7078provide an easy to use, pythonic and comprehensive Python interface to dialog.
7079This allows one to make simple text-mode user interfaces on Unix-like systems")
7080 (license license:lgpl2.1)
7081 (properties `((python2-variant . ,(delay python2-pythondialog))))))
7082
7083(define-public python2-pythondialog
7084 (let ((base (package-with-python2 (strip-python2-variant python-pythondialog))))
7085 (package
7086 (inherit base)
7087 (version (package-version python-pythondialog))
7088 (source (origin
7089 (method url-fetch)
7090 (uri (pypi-uri "python2-pythondialog" version))
7091 (sha256
7092 (base32
7093 "0d8k7lxk50imdyx85lv8j98i4c93a71iwpapnl1506rpkbm9qvd9")))))))
7094
7095(define-public python-configobj
7096 (package
7097 (name "python-configobj")
7098 (version "5.0.6")
7099 (source (origin
7100 (method url-fetch)
7101 (uri (string-append
7102 "https://pypi.python.org/packages/source/c/configobj/"
7103 "configobj-" version ".tar.gz"))
7104 (sha256
7105 (base32
7106 "00h9rcmws03xvdlfni11yb60bz3kxfvsj6dg6nrpzj71f03nbxd2"))
7107 ;; Patch setup.py so it looks for python-setuptools, which is
7108 ;; required to parse the keyword 'install_requires' in setup.py.
7109 (patches (search-patches "python-configobj-setuptools.patch"))))
7110 (build-system python-build-system)
7111 (propagated-inputs
7112 `(("python-six" ,python-six)))
7113 (synopsis "Config file reading, writing and validation")
7114 (description "ConfigObj is a simple but powerful config file reader and
7115writer: an ini file round tripper. Its main feature is that it is very easy to
7116use, with a straightforward programmer’s interface and a simple syntax for
7117config files.")
7118 (home-page "https://github.com/DiffSK/configobj")
7119 (license license:bsd-3)))
7120
7121(define-public python2-configobj
7122 (package-with-python2 python-configobj))
7123
7124(define-public python-configargparse
7125 (package
7126 (name "python-configargparse")
7127 (version "0.12.0")
7128 (source (origin
7129 (method url-fetch)
7130 (uri (pypi-uri "ConfigArgParse" version))
7131 (sha256
7132 (base32
7133 "0fgkiqh6r3rbkdq3k8c48m85g52k96686rw3a6jg4lcncrkpvk98"))))
7134 (build-system python-build-system)
7135 (native-inputs
7136 `(("python-pyyaml" ,python-pyyaml)))
7137 (arguments
7138 `(#:phases
7139 (modify-phases %standard-phases
7140 (replace 'check
7141 (lambda _
7142 ;; Bypass setuptools-shim because one test relies on "setup.py"
7143 ;; being the first argument passed to the python call.
7144 ;;
7145 ;; NOTE: Many tests do not run because they rely on Python's
7146 ;; built-in test.test_argparse, but we remove the unit tests from
7147 ;; our Python installation.
7148 (invoke "python" "setup.py" "test"))))))
7149 (synopsis "Replacement for argparse")
7150 (description "A drop-in replacement for argparse that allows options to also
7151be set via config files and/or environment variables.")
7152 (home-page "https://github.com/bw2/ConfigArgParse")
7153 (license license:expat)))
7154
7155(define-public python2-configargparse
7156 (package-with-python2 python-configargparse))
7157
7158(define-public python-argparse-manpage
7159 (package
7160 (name "python-argparse-manpage")
7161 (version "1.1")
7162 (source
7163 (origin
7164 (method url-fetch)
7165 (uri (pypi-uri "argparse-manpage" version))
7166 (sha256
7167 (base32
7168 "0blh31zns68anina9lba5wh81d1414s97p60zw5l0d0shhh0wj5p"))))
7169 (build-system python-build-system)
7170 (home-page "https://github.com/praiskup/argparse-manpage")
7171 (synopsis "Build manual page from Python's ArgumentParser object")
7172 (description
7173 "This package provides tools to build manual pages from Python's
7174@code{ArgumentParser} object.")
7175 (license license:asl2.0)))
7176
7177(define-public python2-contextlib2
7178 (package
7179 (name "python2-contextlib2")
7180 (version "0.5.5")
7181 (source
7182 (origin
7183 (method url-fetch)
7184 (uri (pypi-uri "contextlib2" version))
7185 (sha256
7186 (base32
7187 "0j6ad6lwwyc9kv71skj098v5l7x5biyj2hs4lc5x1kcixqcr97sh"))))
7188 (build-system python-build-system)
7189 (arguments
7190 `(#:python ,python-2
7191 #:phases
7192 (modify-phases %standard-phases
7193 (replace 'check
7194 (lambda _ (invoke "python" "test_contextlib2.py" "-v"))))))
7195 (native-inputs
7196 `(("python2-unittest2" ,python2-unittest2)))
7197 (home-page "http://contextlib2.readthedocs.org/")
7198 (synopsis "Tools for decorators and context managers")
7199 (description "This module is primarily a backport of the Python
72003.2 contextlib to earlier Python versions. Like contextlib, it
7201provides utilities for common tasks involving decorators and context
7202managers. It also contains additional features that are not part of
7203the standard library.")
7204 (license license:psfl)))
7205
7206(define-public python-texttable
7207 (package
7208 (name "python-texttable")
7209 (version "0.8.7")
7210 (source
7211 (origin
7212 (method url-fetch)
7213 (uri (pypi-uri "texttable" version))
7214 (sha256
7215 (base32
7216 "1liiiydgkg37i46a418aw19fyf6z3ds51wdwwpyjbs12x0phhf4a"))))
7217 (build-system python-build-system)
7218 (arguments '(#:tests? #f)) ; no tests
7219 (home-page "https://github.com/foutaise/texttable/")
7220 (synopsis "Python module for creating simple ASCII tables")
7221 (description "Texttable is a Python module for creating simple ASCII
7222tables.")
7223 (license license:lgpl2.1+)))
7224
7225(define-public python2-texttable
7226 (package-with-python2 python-texttable))
7227
7228(define-public python-atomicwrites
7229 (package
7230 (name "python-atomicwrites")
7231 (version "1.1.5")
7232 (source (origin
7233 (method url-fetch)
7234 (uri (pypi-uri "atomicwrites" version))
7235 (sha256
7236 (base32
7237 "11bm90fwm2avvf4f3ib8g925w7jr4m11vcsinn1bi6ns4bm32214"))))
7238 (build-system python-build-system)
7239 (synopsis "Atomic file writes in Python")
7240 (description "Library for atomic file writes using platform dependent tools
7241for atomic file system operations.")
7242 (home-page "https://github.com/untitaker/python-atomicwrites")
7243 (license license:expat)))
7244
7245(define-public python2-atomicwrites
7246 (package-with-python2 python-atomicwrites))
7247
7248(define-public python-click-threading
7249 (package
7250 (name "python-click-threading")
7251 (version "0.4.4")
7252 (source (origin
7253 (method url-fetch)
7254 (uri (pypi-uri "click-threading" version))
7255 (sha256
7256 (base32
7257 "1rsxc2fbkxlhwhlmxsdjzq3spn284l6rvjfcz9mbb17ibgdgmc5j"))))
7258 (build-system python-build-system)
7259 (propagated-inputs
7260 `(("python-click" ,python-click)))
7261 (synopsis "Utilities for multithreading in Click")
7262 (description "This package provides utilities for multithreading in Click
7263applications.")
7264 (home-page "https://github.com/click-contrib/click-threading")
7265 (license license:expat)))
7266
7267(define-public python-click-log
7268 (package
7269 (name "python-click-log")
7270 (version "0.3.2")
7271 (source (origin
7272 (method url-fetch)
7273 (uri (pypi-uri "click-log" version))
7274 (sha256
7275 (base32
7276 "091i03bhxyzsdbc6kilxhivfda2f8ymz3b33xa6cj5kbzjiirz8n"))))
7277 (build-system python-build-system)
7278 (propagated-inputs
7279 `(("python-click" ,python-click)))
7280 (synopsis "Logging for click applications")
7281 (description "This package provides a Python library for logging Click
7282applications.")
7283 (home-page "https://github.com/click-contrib/click-log")
7284 (license license:expat)))
7285
7286(define-public python-apipkg
7287 (package
7288 (name "python-apipkg")
7289 (version "1.4")
7290 (source (origin
7291 (method url-fetch)
7292 (uri (pypi-uri "apipkg" version))
7293 (sha256
7294 (base32
7295 "1iks5701qnp3dlr3q1d9qm68y2plp2m029irhpz92a44psfkjf1f"))))
7296 (build-system python-build-system)
7297 (native-inputs
7298 `(("python-pytest" ,python-pytest)))
7299 (synopsis "Namespace control and lazy-import mechanism")
7300 (description "With apipkg you can control the exported namespace of a Python
7301package and greatly reduce the number of imports for your users. It is a small
7302pure Python module that works on virtually all Python versions.")
7303 (home-page "https://github.com/pytest-dev/apipkg")
7304 (license license:expat)))
7305
7306(define-public python2-apipkg
7307 (package-with-python2 python-apipkg))
7308
7309(define-public python-execnet
7310 (package
7311 (name "python-execnet")
7312 (version "1.4.1")
7313 (source (origin
7314 (method url-fetch)
7315 (uri (pypi-uri "execnet" version))
7316 (sha256
7317 (base32
7318 "1rpk1vyclhg911p3hql0m0nrpq7q7mysxnaaw6vs29cpa6kx8vgn"))))
7319 (build-system python-build-system)
7320 (arguments
7321 `(;; 2 failed, 275 passed, 670 skipped, 4 xfailed
7322 ;; The two test failures are caused by the lack of an `ssh` executable.
7323 ;; The test suite can be run with pytest after the 'install' phase.
7324 #:tests? #f))
7325 (native-inputs
7326 `(("python-pytest" ,python-pytest)
7327 ("python-setuptools-scm" ,python-setuptools-scm)))
7328 (propagated-inputs
7329 `(("python-apipkg" ,python-apipkg)))
7330 (synopsis "Rapid multi-Python deployment")
7331 (description "Execnet provides a share-nothing model with
7332channel-send/receive communication for distributing execution across many
7333Python interpreters across version, platform and network barriers. It has a
7334minimal and fast API targeting the following uses:
7335@enumerate
7336@item distribute tasks to (many) local or remote CPUs
7337@item write and deploy hybrid multi-process applications
7338@item write scripts to administer multiple environments
7339@end enumerate")
7340 (home-page "http://codespeak.net/execnet/")
7341 (license license:expat)))
7342
7343(define-public python2-execnet
7344 (package-with-python2 python-execnet))
7345
7346(define-public python-icalendar
7347 (package
7348 (name "python-icalendar")
7349 (version "4.0.3")
7350 (source (origin
7351 (method url-fetch)
7352 (uri (pypi-uri "icalendar" version))
7353 (sha256
7354 (base32
7355 "0mk3dk1dxkcm46jy48v27j2w2349iv4sbimqj1yb5js43mx49hh7"))))
7356 (build-system python-build-system)
7357 (propagated-inputs
7358 `(("python-dateutil" ,python-dateutil)
7359 ("python-pytz" ,python-pytz)))
7360 (synopsis "Python library for parsing iCalendar files")
7361 (description "The icalendar package is a parser/generator of iCalendar
7362files for use with Python.")
7363 (home-page "https://github.com/collective/icalendar")
7364 (license license:bsd-2)))
7365
7366(define-public python-sphinxcontrib-newsfeed
7367 (package
7368 (name "python-sphinxcontrib-newsfeed")
7369 (version "0.1.4")
7370 (source (origin
7371 (method url-fetch)
7372 (uri (pypi-uri "sphinxcontrib-newsfeed" version))
7373 (sha256
7374 (base32
7375 "1d7gam3mn8v4in4p16yn3v10vps7nnaz6ilw99j4klij39dqd37p"))))
7376 (arguments '(#:tests? #f)) ; No tests.
7377 (build-system python-build-system)
7378 (propagated-inputs
7379 `(("python-sphinx" ,python-sphinx)))
7380 (synopsis "News Feed extension for Sphinx")
7381 (description "Sphinxcontrib-newsfeed is an extension for adding a simple
7382Blog, News or Announcements section to a Sphinx website.")
7383 (home-page "https://bitbucket.org/prometheus/sphinxcontrib-newsfeed")
7384 (license license:bsd-2)))
7385
7386(define-public python-args
7387 (package
7388 (name "python-args")
7389 (version "0.1.0")
7390 (source (origin
7391 (method url-fetch)
7392 (uri (pypi-uri "args" version))
7393 (sha256
7394 (base32
7395 "057qzi46h5dmxdqknsbrssn78lmqjlnm624iqdhrnpk26zcbi1d7"))))
7396 (build-system python-build-system)
7397 (home-page "https://github.com/kennethreitz/args")
7398 (synopsis "Command-line argument parser")
7399 (description
7400 "This library provides a Python module to parse command-line arguments.")
7401 (license license:bsd-3)))
7402
7403(define-public python2-args
7404 (package-with-python2 python-args))
7405
7406(define-public python-clint
7407 (package
7408 (name "python-clint")
7409 (version "0.5.1")
7410 (source (origin
7411 (method url-fetch)
7412 (uri (pypi-uri "clint" version))
7413 (sha256
7414 (base32
7415 "1an5lkkqk1zha47198p42ji3m94xmzx1a03dn7866m87n4r4q8h5"))))
7416 (build-system python-build-system)
7417 (arguments
7418 '(#:phases
7419 (modify-phases %standard-phases
7420 (replace 'check
7421 (lambda _ (invoke "py.test" "-v"))))))
7422 (native-inputs
7423 `(("python-pytest" ,python-pytest)))
7424 (propagated-inputs
7425 `(("python-args" ,python-args)))
7426 (home-page "https://github.com/kennethreitz/clint")
7427 (synopsis "Command-line interface tools")
7428 (description
7429 "Clint is a Python module filled with a set of tools for developing
7430command-line applications, including tools for colored and indented
7431output, progress bar display, and pipes.")
7432 (license license:isc)))
7433
7434(define-public python2-clint
7435 (package-with-python2 python-clint))
7436
7437(define-public python-astor
7438 (package
7439 (name "python-astor")
7440 (version "0.5")
7441 (source (origin
7442 (method url-fetch)
7443 (uri (pypi-uri "astor" version))
7444 (sha256
7445 (base32
7446 "1fdafq5hkis1fxqlmhw0sn44zp2ar46nxhbc22cvwg7hsd8z5gsa"))))
7447 (build-system python-build-system)
7448 (home-page "https://github.com/berkerpeksag/astor")
7449 (synopsis "Read and write Python ASTs")
7450 (description
7451 "Astor is designed to allow easy manipulation of Python source via the
7452Abstract Syntax Tree.")
7453 (license license:bsd-3)))
7454
7455(define-public python2-astor
7456 (package-with-python2 python-astor))
7457
7458(define-public python-rply
7459 (package
7460 (name "python-rply")
7461 (version "0.7.5")
7462 (source (origin
7463 (method url-fetch)
7464 (uri (pypi-uri "rply" version))
7465 (sha256
7466 (base32
7467 "0lv428895zxsz43968qx0q9bimwqnfykndz4dpjbq515w2gvzhjh"))))
7468 (build-system python-build-system)
7469 (propagated-inputs
7470 `(("python-appdirs" ,python-appdirs)))
7471 (home-page "https://github.com/alex/rply")
7472 (synopsis "Parser generator for Python")
7473 (description
7474 "This package provides a pure Python based parser generator, that also
7475works with RPython. It is a more-or-less direct port of David Bazzley's PLY,
7476with a new public API, and RPython support.")
7477 (license license:bsd-3)))
7478
7479(define-public python2-rply
7480 (package-with-python2 python-rply))
7481
7482(define-public python-hy
7483 (package
7484 (name "python-hy")
7485 (version "0.13.0")
7486 (source (origin
7487 (method url-fetch)
7488 (uri (pypi-uri "hy" version))
7489 (sha256
7490 (base32
7491 "19sfymaksx9jhksfnb15ahid46mzrhdfzz6yy2craz2qnzvpmky8"))))
7492 (build-system python-build-system)
7493 (arguments
7494 '(#:phases
7495 (modify-phases %standard-phases
7496 (replace 'check
7497 (lambda _
7498 ;; Tests require write access to HOME.
7499 (setenv "HOME" "/tmp")
7500 (invoke "nosetests"))))))
7501 (native-inputs
7502 `(("python-coverage" ,python-coverage)
7503 ("python-nose" ,python-nose)))
7504 (propagated-inputs
7505 `(("python-astor" ,python-astor)
7506 ("python-clint" ,python-clint)
7507 ("python-rply" ,python-rply)))
7508 (home-page "http://hylang.org/")
7509 (synopsis "Lisp frontend to Python")
7510 (description
7511 "Hy is a dialect of Lisp that's embedded in Python. Since Hy transforms
7512its Lisp code into the Python Abstract Syntax Tree, you have the whole world of
7513Python at your fingertips, in Lisp form.")
7514 (license license:expat)))
7515
7516(define-public python2-hy
7517 (package-with-python2 python-hy))
7518
7519(define-public python2-functools32
7520 (package
7521 (name "python2-functools32")
7522 (version "3.2.3-2")
7523 (source
7524 (origin
7525 (method url-fetch)
7526 (uri (pypi-uri "functools32" version))
7527 (sha256
7528 (base32
7529 "0v8ya0b58x47wp216n1zamimv4iw57cxz3xxhzix52jkw3xks9gn"))))
7530 (build-system python-build-system)
7531 (arguments
7532 `(#:python ,python-2
7533 #:tests? #f)) ; no test target
7534 (home-page "https://github.com/MiCHiLU/python-functools32")
7535 (synopsis
7536 "Backport of the functools module from Python 3.2.3")
7537 (description
7538 "This package is a backport of the @code{functools} module from Python
75393.2.3 for use with older versions of Python and PyPy.")
7540 (license license:expat)))
7541
7542(define-public python2-subprocess32
7543 (package
7544 (name "python2-subprocess32")
7545 (version "3.2.7")
7546 (source (origin
7547 (method url-fetch)
7548 (uri (pypi-uri "subprocess32" version))
7549 (sha256
7550 (base32
7551 "14350dhhlhyz5gqzi3lihn9m6lvskx5mcb20srx1kgsk9i50li8y"))
7552 (patches
7553 (search-patches "python2-subprocess32-disable-input-test.patch"))))
7554 (build-system python-build-system)
7555 (arguments
7556 `(#:python ,python-2
7557 ;; The test suite fails with Python > 2.7.13:
7558 ;; import test.support
7559 ;; ImportError: No module named support
7560 #:tests? #f
7561 #:phases
7562 (modify-phases %standard-phases
7563 (add-after 'unpack 'patch-/bin/sh
7564 (lambda _
7565 (substitute* '("subprocess32.py"
7566 "test_subprocess32.py")
7567 (("/bin/sh") (which "sh")))
7568 #t)))))
7569 (home-page "https://github.com/google/python-subprocess32")
7570 (synopsis "Backport of the subprocess module from Python 3.2")
7571 (description
7572 "This is a backport of the @code{subprocess} standard library module
7573from Python 3.2 and 3.3 for use on Python 2. It includes bugfixes and some
7574new features. On POSIX systems it is guaranteed to be reliable when used
7575in threaded applications. It includes timeout support from Python 3.3 but
7576otherwise matches 3.2’s API.")
7577 (license license:psfl)))
7578
7579(define-public python2-futures
7580 (package
7581 (name "python2-futures")
7582 (version "3.2.0")
7583 (source
7584 (origin
7585 (method url-fetch)
7586 (uri (pypi-uri "futures" version))
7587 (sha256
7588 (base32
7589 "0rdjmmsab550kxsssdq49jcniz77zlkpw4pvi9hvib3lsskjmh4y"))))
7590 (build-system python-build-system)
7591 (arguments `(#:python ,python-2
7592 ;; FIXME: Python 2.7.14 moved the test.support library,
7593 ;; but our package has not yet been adjusted. Enable
7594 ;; tests when the python2 package has been fixed.
7595 #:tests? #f))
7596 (home-page "https://github.com/agronholm/pythonfutures")
7597 (synopsis
7598 "Backport of the concurrent.futures package from Python 3.2")
7599 (description
7600 "The concurrent.futures module provides a high-level interface for
7601asynchronously executing callables. This package backports the
7602concurrent.futures package from Python 3.2")
7603 (license license:bsd-3)))
7604
7605(define-public python-promise
7606 (package
7607 (name "python-promise")
7608 (version "0.4.2")
7609 (source
7610 (origin
7611 (method url-fetch)
7612 (uri (pypi-uri "promise" version))
7613 (sha256
7614 (base32
7615 "1k19ms8l3d5jzjh557rgkxb5sg4mqgfc315rn4hx1z3n8qq6lr3h"))))
7616 (build-system python-build-system)
7617 ;; Tests wants python-futures, which is a python2 only program, and
7618 ;; can't be found by python-promise at test time.
7619 (arguments `(#:tests? #f))
7620 (home-page "https://github.com/syrusakbary/promise")
7621 (synopsis "Promises/A+ implementation for Python")
7622 (description
7623 "Promises/A+ implementation for Python")
7624 (properties `((python2-variant . ,(delay python2-promise))))
7625 (license license:expat)))
7626
7627(define-public python2-promise
7628 (let ((promise (package-with-python2
7629 (strip-python2-variant python-promise))))
7630 (package (inherit promise)
7631 (arguments (substitute-keyword-arguments (package-arguments promise)
7632 ((#:tests? _) #t)))
7633 (native-inputs
7634 `(("python2-futures" ,python2-futures)
7635 ("python2-pytest" ,python2-pytest)
7636 ,@(package-native-inputs promise))))))
7637
7638(define-public python-colorama
7639 (package
7640 (name "python-colorama")
7641 (version "0.3.9")
7642 (source
7643 (origin
7644 (method url-fetch)
7645 (uri (pypi-uri "colorama" version))
7646 (sha256
7647 (base32
7648 "1wd1szk0z3073ghx26ynw43gnc140ibln1safgsis6s6z3s25ss8"))))
7649 (build-system python-build-system)
7650 (synopsis "Colored terminal text rendering for Python")
7651 (description "Colorama is a Python library for rendering colored terminal
7652text.")
7653 (home-page "https://pypi.python.org/pypi/colorama")
7654 (license license:bsd-3)))
7655
7656(define-public python2-colorama
7657 (package-with-python2 python-colorama))
7658
7659(define-public python-rsa
7660 (package
7661 (name "python-rsa")
7662 (version "3.4.2")
7663 (source
7664 (origin
7665 (method url-fetch)
7666 (uri (pypi-uri "rsa" version))
7667 (sha256
7668 (base32
7669 "1dcxvszbikgzh99ybdc7jq0zb9wspy2ds8z9mjsqiyv3q884xpr5"))))
7670 (build-system python-build-system)
7671 (propagated-inputs
7672 `(("python-pyasn1" ,python-pyasn1)))
7673 (synopsis "Pure-Python RSA implementation")
7674 (description "Python-RSA is a pure-Python RSA implementation. It supports
7675encryption and decryption, signing and verifying signatures, and key
7676generation according to PKCS#1 version 1.5. It can be used as a Python
7677library as well as on the command line.")
7678 (home-page "https://stuvel.eu/rsa")
7679 (license license:asl2.0)))
7680
7681(define-public python2-rsa
7682 (package-with-python2 python-rsa))
7683
7684(define-public python-pluggy
7685 (package
7686 (name "python-pluggy")
7687 (version "0.7.1")
7688 (source
7689 (origin
7690 (method url-fetch)
7691 (uri (pypi-uri "pluggy" version))
7692 (sha256
7693 (base32
7694 "1qbn70mksmr03hac6jgp6fiqc4l7859z8dchx2x950vhlij87swm"))))
7695 (build-system python-build-system)
7696 (native-inputs
7697 `(("python-setuptools-scm" ,python-setuptools-scm)))
7698 (synopsis "Plugin and hook calling mechanism for Python")
7699 (description "Pluggy is an extraction of the plugin manager as used by
7700Pytest but stripped of Pytest specific details.")
7701 (home-page "https://pypi.python.org/pypi/pluggy")
7702 (license license:expat)))
7703
7704(define-public python2-pluggy
7705 (package-with-python2 python-pluggy))
7706
7707(define-public python-tox
7708 (package
7709 (name "python-tox")
7710 (version "2.8.1")
7711 (source
7712 (origin
7713 (method url-fetch)
7714 (uri (pypi-uri "tox" version))
7715 (sha256
7716 (base32
7717 "1drp6mwm8wdypjym15ia8lwjxbhcksb9vzxg4ay5dh4ji57by2ny"))))
7718 (build-system python-build-system)
7719 (arguments
7720 ;; FIXME: Tests require pytest-timeout, which itself requires
7721 ;; pytest>=2.8.0 for installation.
7722 '(#:tests? #f))
7723 (propagated-inputs
7724 `(("python-pluggy" ,python-pluggy) ; >=0.3.0,<0.4.0
7725 ("python-py" ,python-py)
7726 ("python-virtualenv" ,python-virtualenv)))
7727 (native-inputs
7728 `(; FIXME: Missing: ("python-pytest-timeout" ,python-pytest-timeout)
7729 ("python-pytest" ,python-pytest) ; >= 2.3.5
7730 ("python-setuptools-scm" ,python-setuptools-scm)))
7731 (home-page "http://tox.testrun.org/")
7732 (synopsis "Virtualenv-based automation of test activities")
7733 (description "Tox is a generic virtualenv management and test command line
7734tool. It can be used to check that a package installs correctly with
7735different Python versions and interpreters, or run tests in each type of
7736supported environment, or act as a frontend to continuous integration
7737servers.")
7738 (license license:expat)))
7739
7740(define-public python2-tox
7741 (package-with-python2 python-tox))
7742
7743(define-public python-jmespath
7744 (package
7745 (name "python-jmespath")
7746 (version "0.9.3")
7747 (source
7748 (origin
7749 (method url-fetch)
7750 (uri (pypi-uri "jmespath" version))
7751 (sha256
7752 (base32
7753 "0r7wc7fsxmlwzxx9j1j7rms06c6xs6d4sysirdhz1jk2mb4x90ba"))))
7754 (build-system python-build-system)
7755 (native-inputs
7756 `(("python-nose" ,python-nose)))
7757 (synopsis "JSON Matching Expressions")
7758 (description "JMESPath (pronounced “james path”) is a Python library that
7759allows one to declaratively specify how to extract elements from a JSON
7760document.")
7761 (home-page "https://github.com/jmespath/jmespath.py")
7762 (license license:expat)))
7763
7764(define-public python2-jmespath
7765 (package-with-python2 python-jmespath))
7766
7767(define-public python-botocore
7768 (package
7769 (name "python-botocore")
7770 (version "1.8.43")
7771 (source
7772 (origin
7773 (method url-fetch)
7774 (uri (pypi-uri "botocore" version))
7775 (sha256
7776 (base32
7777 "12cqpbnz3vfv41mp9admvciw7bc7hz57sjpqs2bxaw9wnfmbw5lg"))))
7778 (build-system python-build-system)
7779 (arguments
7780 ;; FIXME: Many tests are failing.
7781 '(#:tests? #f))
7782 (propagated-inputs
7783 `(("python-dateutil" ,python-dateutil)
7784 ("python-docutils" ,python-docutils)
7785 ("python-jmespath" ,python-jmespath)))
7786 (native-inputs
7787 `(("python-mock" ,python-mock)
7788 ("python-nose" ,python-nose)
7789 ("behave" ,behave)
7790 ("python-tox" ,python-tox)
7791 ("python-wheel" ,python-wheel)))
7792 (home-page "https://github.com/boto/botocore")
7793 (synopsis "Low-level interface to AWS")
7794 (description "Botocore is a Python library that provides a low-level
7795interface to the Amazon Web Services (AWS) API.")
7796 (license license:asl2.0)))
7797
7798(define-public python2-botocore
7799 (package-with-python2 python-botocore))
7800
7801(define-public python-xdo
7802 (package
7803 (name "python-xdo")
7804 (version "0.3")
7805 (source (origin
7806 (method url-fetch)
7807 (uri (string-append
7808 "http://http.debian.net/debian/pool/main/p/python-xdo/"
7809 "python-xdo_" version ".orig.tar.gz"))
7810 (sha256
7811 (base32
7812 "1vqh1n5yy5dhnq312kwrl90fnck4v26is3lq3lxdvcn60vv19da0"))))
7813 (build-system python-build-system)
7814 (arguments
7815 '(#:phases
7816 (modify-phases %standard-phases
7817 (add-before 'install 'patch-libxdo-path
7818 ;; Hardcode the path of dynamically loaded libxdo library.
7819 (lambda* (#:key inputs #:allow-other-keys)
7820 (let ((libxdo (string-append
7821 (assoc-ref inputs "xdotool")
7822 "/lib/libxdo.so")))
7823 (substitute* "xdo/_xdo.py"
7824 (("find_library\\(\"xdo\"\\)")
7825 (simple-format #f "\"~a\"" libxdo)))
7826 #t))))
7827 #:tests? #f)) ; no tests provided
7828 (propagated-inputs
7829 `(("python-six" ,python-six)))
7830 (inputs
7831 `(("xdotool" ,xdotool)
7832 ("libX11" ,libx11)))
7833 (home-page "https://tracker.debian.org/pkg/python-xdo")
7834 (synopsis "Python library for simulating X11 keyboard/mouse input")
7835 (description "Provides bindings to libxdo for manipulating X11 via simulated
7836input. (Note that this is mostly a legacy library; you may wish to look at
7837python-xdo for newer bindings.)")
7838 (license license:bsd-3)))
7839
7840(define-public python2-xdo
7841 (package-with-python2 python-xdo))
7842
7843(define-public python-mako
7844 (package
7845 (name "python-mako")
7846 (version "1.0.7")
7847 (source
7848 (origin
7849 (method url-fetch)
7850 (uri (pypi-uri "Mako" version))
7851 (sha256
7852 (base32
7853 "1bi5gnr8r8dva06qpyx4kgjc6spm2k1y908183nbbaylggjzs0jf"))))
7854 (build-system python-build-system)
7855 (propagated-inputs
7856 `(("python-markupsafe" ,python-markupsafe)))
7857 (native-inputs
7858 `(("python-mock" ,python-mock)
7859 ("python-nose" ,python-nose)
7860 ("python-pytest" ,python-pytest)))
7861 (home-page "http://www.makotemplates.org/")
7862 (synopsis "Templating language for Python")
7863 (description "Mako is a templating language for Python that compiles
7864templates into Python modules.")
7865 (license license:expat)))
7866
7867(define-public python2-mako
7868 (package-with-python2 python-mako))
7869
7870(define-public python-waitress
7871 (package
7872 (name "python-waitress")
7873 (version "1.1.0")
7874 (source
7875 (origin
7876 (method url-fetch)
7877 (uri (pypi-uri "waitress" version))
7878 (patches (search-patches "python-waitress-fix-tests.patch"))
7879 (sha256
7880 (base32
7881 "1a85gyji0kajc3p0s1pwwfm06w4wfxjkvvl4rnrz3h164kbd6g6k"))))
7882 (build-system python-build-system)
7883 (home-page "https://github.com/Pylons/waitress")
7884 (synopsis "Waitress WSGI server")
7885 (description "Waitress is meant to be a production-quality pure-Python WSGI
7886server with very acceptable performance.")
7887 (license license:zpl2.1)))
7888
7889(define-public python2-waitress
7890 (package-with-python2 python-waitress))
7891
7892(define-public python-pyquery
7893 (package
7894 (name "python-pyquery")
7895 (version "1.2.17")
7896 (source
7897 (origin
7898 (method url-fetch)
7899 (uri (pypi-uri "pyquery" version))
7900 (sha256
7901 (base32
7902 "1xia20wm0vx5dk85kcwgh13bylz8qh47ffjxssd2586r60xi783a"))))
7903 (build-system python-build-system)
7904 (native-inputs
7905 `(("python-webob" ,python-webob)
7906 ("python-webtest" ,python-webtest)))
7907 (propagated-inputs
7908 `(("python-lxml" ,python-lxml)
7909 ("python-cssselect" ,python-cssselect)))
7910 (home-page "https://github.com/gawel/pyquery")
7911 (synopsis "Make jQuery-like queries on xml documents")
7912 (description "pyquery allows you to make jQuery queries on xml documents.
7913The API is as much as possible the similar to jQuery. pyquery uses lxml for
7914fast xml and html manipulation.")
7915 (license license:bsd-3)))
7916
7917(define-public python2-pyquery
7918 (package-with-python2 python-pyquery))
7919
7920(define-public python-anyjson
7921 (package
7922 (name "python-anyjson")
7923 (version "0.3.3")
7924 (source
7925 (origin
7926 (method url-fetch)
7927 (uri (pypi-uri "anyjson" version))
7928 (sha256
7929 (base32
7930 "1fjph4alvcscsl5d4b6qpv1yh31jy05jxi1l0xff7lws7j32v09p"))))
7931 (build-system python-build-system)
7932 (arguments
7933 `(;; We could possibly get tests working, but on Python 3 it's not so easy.
7934 ;; Very strangely, 2to3 is run *during setup.py install* (or bdist, or
7935 ;; whatever) so this transformation needs to be done before the tests
7936 ;; can be run. Maybe we could add a build step to transform beforehand
7937 ;; but it could be annoying/difficult.
7938 ;; We can enable tests for the Python 2 version, though, and do below.
7939 #:tests? #f))
7940 (home-page "https://bitbucket.org/runeh/anyjson/")
7941 (synopsis
7942 "Wraps best available JSON implementation in a common interface")
7943 (description
7944 "Anyjson loads whichever is the fastest JSON module installed
7945and provides a uniform API regardless of which JSON implementation is used.")
7946 (license license:bsd-3)
7947 (properties `((python2-variant . ,(delay python2-anyjson))))))
7948
7949(define-public python2-anyjson
7950 (let ((anyjson (package-with-python2
7951 (strip-python2-variant python-anyjson))))
7952 (package
7953 (inherit anyjson)
7954 (arguments `(;; Unlike the python 3 variant, we do run tests. See above!
7955 #:tests? #t
7956 ,@(package-arguments anyjson)))
7957 (native-inputs `(("python2-nose" ,python2-nose))))))
7958
7959(define-public python-amqp
7960 (package
7961 (name "python-amqp")
7962 (version "2.3.2")
7963 (source
7964 (origin
7965 (method url-fetch)
7966 (uri (pypi-uri "amqp" version))
7967 (sha256
7968 (base32
7969 "1sv600dgqwpimr6i1g59y9hpn50mc236gdqkr7zin13kvlpx0g87"))))
7970 (build-system python-build-system)
7971 (native-inputs
7972 `(("python-case" ,python-case)
7973 ("python-pytest-sugar" ,python-pytest-sugar)
7974 ("python-mock" ,python-mock)))
7975 (propagated-inputs
7976 `(("python-vine" ,python-vine)))
7977 (home-page "https://github.com/celery/py-amqp")
7978 (synopsis
7979 "Low-level AMQP client for Python (fork of amqplib)")
7980 (description
7981 "This is a fork of amqplib which was originally written by Barry Pederson.
7982It is maintained by the Celery project, and used by kombu as a pure python
7983alternative when librabbitmq is not available.")
7984 (license license:lgpl2.1+)
7985 (properties `((python2-variant . ,(delay python2-amqp))))))
7986
7987(define-public python2-amqp
7988 (let ((amqp (package-with-python2
7989 (strip-python2-variant python-amqp))))
7990 (package
7991 (inherit amqp)
7992 (arguments `(;; Tries to run coverage tests with nose-cover3, which seems
7993 ;; unmaintained. Weirdly, does not do this on the python 3
7994 ;; version?
7995 #:tests? #f
7996 ,@(package-arguments amqp))))))
7997
7998(define-public python-txamqp
7999 (package
8000 (name "python-txamqp")
8001 (version "0.8.2")
8002 (source
8003 (origin
8004 (method url-fetch)
8005 (uri (pypi-uri "txAMQP" version))
8006 (sha256
8007 (base32
8008 "0jd9864k3csc06kipiwzjlk9mq4054s8kzk5q1cfnxj8572s4iv4"))))
8009 (build-system python-build-system)
8010 (propagated-inputs
8011 `(("python-six" ,python-six)
8012 ("python-twisted" ,python-twisted)))
8013 (home-page "https://github.com/txamqp/txamqp")
8014 (synopsis "Communicate with AMQP peers and brokers using Twisted")
8015 (description
8016 "This package provides a Python library for communicating with AMQP peers
8017and brokers using the asynchronous networking framework Twisted. It contains
8018all the necessary code to connect, send and receive messages to/from an
8019AMQP-compliant peer or broker (Qpid, OpenAMQ, RabbitMQ) using Twisted. It
8020also includes support for using Thrift RPC over AMQP in Twisted
8021applications.")
8022 (license license:asl2.0)))
8023
8024(define-public python2-txamqp
8025 (package-with-python2 python-txamqp))
8026
8027(define-public python-kombu
8028 (package
8029 (name "python-kombu")
8030 (version "4.2.2")
8031 (source
8032 (origin
8033 (method url-fetch)
8034 (uri (pypi-uri "kombu" version))
8035 (sha256
8036 (base32
8037 "15k8f7mzqr049sg9vi48m19vjykviafk3f0p5xzgw9by0x0kyxjj"))))
8038 (build-system python-build-system)
8039 (native-inputs
8040 `(("python-mock" ,python-mock)
8041 ("python-case" ,python-case)
8042 ("python-pyro4" ,python-pyro4)
8043 ("python-pytest-sugar" ,python-pytest-sugar)
8044 ("python-pytz" ,python-pytz)))
8045 (propagated-inputs
8046 `(("python-anyjson" ,python-anyjson)
8047 ("python-amqp" ,python-amqp)
8048 ("python-redis" ,python-redis)))
8049 (home-page "https://kombu.readthedocs.io")
8050 (synopsis "Message passing library for Python")
8051 (description "The aim of Kombu is to make messaging in Python as easy as
8052possible by providing an idiomatic high-level interface for the AMQ protocol,
8053and also provide proven and tested solutions to common messaging problems.
8054AMQP is the Advanced Message Queuing Protocol, an open standard protocol for
8055message orientation, queuing, routing, reliability and security, for which the
8056RabbitMQ messaging server is the most popular implementation.")
8057 (license license:bsd-3)
8058 (properties `((python2-variant . ,(delay python2-kombu))))))
8059
8060(define-public python2-kombu
8061 (let ((kombu (package-with-python2
8062 (strip-python2-variant python-kombu))))
8063 (package
8064 (inherit kombu)
8065 (arguments `(;; FIXME: 'TestTransport.test_del_sync' fails on python2.
8066 ;; It works fine on the python3 variant.
8067 #:tests? #f
8068 ,@(package-arguments kombu)))
8069 (native-inputs `(("python2-unittest2" ,python2-unittest2)
8070 ,@(package-native-inputs kombu))))))
8071
8072(define-public python-billiard
8073 (package
8074 (name "python-billiard")
8075 (version "3.5.0.5")
8076 (source
8077 (origin
8078 (method url-fetch)
8079 (uri (pypi-uri "billiard" version))
8080 (sha256
8081 (base32
8082 "03msmapj3s5zgqk87d646mafz7a01h5bm2wijalgpi0s80ks5na2"))))
8083 (build-system python-build-system)
8084 (native-inputs
8085 `(("python-case" ,python-case)
8086 ("python-pytest" ,python-pytest)))
8087 (home-page "https://github.com/celery/billiard")
8088 (synopsis
8089 "Python multiprocessing fork with improvements and bugfixes")
8090 (description
8091 "Billiard is a fork of the Python 2.7 multiprocessing package. The
8092multiprocessing package itself is a renamed and updated version of R Oudkerk's
8093pyprocessing package. This standalone variant is intended to be compatible with
8094Python 2.4 and 2.5, and will draw its fixes/improvements from python-trunk.")
8095 (license license:bsd-3)
8096 (properties `((python2-variant . ,(delay python2-billiard))))))
8097
8098(define-public python2-billiard
8099 (let ((billiard (package-with-python2
8100 (strip-python2-variant python-billiard))))
8101 (package
8102 (inherit billiard)
8103 (native-inputs `(("python2-unittest2" ,python2-unittest2)
8104 ("python2-mock" ,python2-mock)
8105 ,@(package-native-inputs billiard))))))
8106
8107(define-public python-celery
8108 (package
8109 (name "python-celery")
8110 (version "4.2.1")
8111 (source
8112 (origin
8113 (method url-fetch)
8114 (uri (pypi-uri "celery" version))
8115 (sha256
8116 (base32
8117 "0y66rz7z8dfcgs3s0qxmdddlaq57bzbgxgfz896nbp14grkv9nkp"))))
8118 (build-system python-build-system)
8119 (arguments
8120 '(;; TODO The tests fail with Python 3.7
8121 ;; https://github.com/celery/celery/issues/4849
8122 #:tests? #f
8123 #:phases
8124 (modify-phases %standard-phases
8125 (add-after 'unpack 'patch-requirements
8126 (lambda _
8127 (substitute* "requirements/test.txt"
8128 (("pytest>=3\\.0,<3\\.3")
8129 "pytest>=3.0"))
8130 #t)))))
8131 (native-inputs
8132 `(("python-case" ,python-case)
8133 ("python-pytest" ,python-pytest)))
8134 (propagated-inputs
8135 `(("python-pytz" ,python-pytz)
8136 ("python-billiard" ,python-billiard)
8137 ("python-kombu" ,python-kombu)))
8138 (home-page "https://celeryproject.org")
8139 (synopsis "Distributed Task Queue")
8140 (description "Celery is an asynchronous task queue/job queue based on
8141distributed message passing. It is focused on real-time operation, but
8142supports scheduling as well. The execution units, called tasks, are executed
8143concurrently on a single or more worker servers using multiprocessing,
8144Eventlet, or gevent. Tasks can execute asynchronously (in the background) or
8145synchronously (wait until ready).")
8146 (license license:bsd-3)
8147 (properties `((python2-variant . ,(delay python2-celery))))))
8148
8149(define-public python2-celery
8150 (let ((celery (package-with-python2
8151 (strip-python2-variant python-celery))))
8152 (package
8153 (inherit celery)
8154 (native-inputs `(("python2-unittest2" ,python2-unittest2)
8155 ("python2-mock" ,python2-mock)
8156 ,@(package-native-inputs celery))))))
8157
8158(define-public python-translitcodec
8159 (package
8160 (name "python-translitcodec")
8161 (version "0.4.0")
8162 (source
8163 (origin
8164 (method url-fetch)
8165 (uri (pypi-uri "translitcodec" version))
8166 (sha256
8167 (base32
8168 "10x6pvblkzky1zhjs8nmx64nb9jdzxad4bxhq4iwv0j4z2aqjnki"))))
8169 (build-system python-build-system)
8170 (arguments
8171 `(#:tests? #f)) ; no tests provided
8172 (home-page
8173 "https://github.com/claudep/translitcodec")
8174 (synopsis
8175 "Unicode to 8-bit charset transliteration codec")
8176 (description
8177 "This package contains codecs for transliterating ISO 10646 texts into
8178best-effort representations using smaller coded character sets (ASCII,
8179ISO 8859, etc.).")
8180 (license license:expat)))
8181
8182(define-public python2-translitcodec
8183 (package-with-python2 python-translitcodec))
8184
8185(define-public python-editor
8186 (package
8187 (name "python-editor")
8188 (version "0.5")
8189 (source
8190 (origin
8191 (method url-fetch)
8192 (uri (pypi-uri "python-editor" version))
8193 (sha256
8194 (base32
8195 "1ypnpgvzpkbwsg4rdvy4sy51j28b5xq9v8pnkwxncn07vqz06p7n"))))
8196 (build-system python-build-system)
8197 (home-page
8198 "https://github.com/fmoo/python-editor")
8199 (synopsis
8200 "Programmatically open an editor, capture the result")
8201 (description
8202 "python-editor is a library that provides the editor module for
8203programmatically interfacing with your system's $EDITOR.")
8204 (license license:asl2.0)))
8205
8206(define-public python2-editor
8207 (package-with-python2 python-editor))
8208
8209(define-public python-sphinxcontrib-programoutput
8210 (package
8211 (name "python-sphinxcontrib-programoutput")
8212 (version "0.10")
8213 (source (origin
8214 (method url-fetch)
8215 (uri (pypi-uri "sphinxcontrib-programoutput" version))
8216 (sha256
8217 (base32
8218 "153hhnlbx4688zj9wd64819ps5znc2jlyp5crkgzvn5hxgy99vpx"))))
8219 (build-system python-build-system)
8220 (arguments
8221 ;; FIXME: Many tests are failing and the upstream is gone.
8222 '(#:tests? #f))
8223 (propagated-inputs
8224 `(("python-sphinx" ,python-sphinx)))
8225 (synopsis "Sphinx extension to include program output")
8226 (description "A Sphinx extension to literally insert the output of arbitrary
8227commands into documents, helping you to keep your command examples up to date.")
8228 (home-page "https://github.com/lunaryorn/sphinxcontrib-programoutput")
8229 (license license:bsd-2)))
8230
8231(define-public python2-sphinxcontrib-programoutput
8232 (package-with-python2 python-sphinxcontrib-programoutput))
8233
8234(define-public python-sphinx-repoze-autointerface
8235 (package
8236 (name "python-sphinx-repoze-autointerface")
8237 (version "0.8")
8238 (source (origin
8239 (method url-fetch)
8240 (uri (pypi-uri "repoze.sphinx.autointerface" version))
8241 (sha256
8242 (base32
8243 "08ycivzf7bh4a1zcyp31hbyqs1b2c9r26raa3vxjwwmbfqr3iw4f"))))
8244 (build-system python-build-system)
8245 (arguments '(#:tests? #f)) ; No tests.
8246 (propagated-inputs
8247 `(("python-sphinx" ,python-sphinx)
8248 ("python-zope-interface" ,python-zope-interface)))
8249 (synopsis "Auto-generate Sphinx API docs from Zope interfaces")
8250 (description "This package defines an extension for the Sphinx documentation
8251system. The extension allows generation of API documentation by
8252introspection of @code{zope.interface} instances in code.")
8253 (home-page "https://github.com/repoze/repoze.sphinx.autointerface")
8254 (license license:repoze)))
8255
8256(define-public python2-sphinx-repoze-autointerface
8257 (package-with-python2 python-sphinx-repoze-autointerface))
8258
8259(define-public python-vobject
8260 (package
8261 (name "python-vobject")
8262 (version "0.9.5")
8263 (source (origin
8264 (method url-fetch)
8265 (uri (pypi-uri "vobject" version))
8266 (sha256
8267 (base32
8268 "0hqjgf3ay1m5w1c0k00g5yfpdz1zni5qnr5rh9b8fg9hjvhwlmhg"))))
8269 (build-system python-build-system)
8270 (arguments
8271 '(;; The test suite relies on some non-portable Windows interfaces.
8272 #:tests? #f))
8273 (propagated-inputs
8274 `(("python-dateutil" ,python-dateutil)
8275 ("python-pyicu" ,python-pyicu)))
8276 (synopsis "Parse and generate vCard and vCalendar files")
8277 (description "Vobject is intended to be a full featured Python package for
8278parsing and generating vCard and vCalendar files. Currently, iCalendar files
8279are supported and well tested. vCard 3.0 files are supported, and all data
8280should be imported, but only a few components are understood in a sophisticated
8281way.")
8282 (home-page "http://eventable.github.io/vobject/")
8283 (license license:asl2.0)))
8284
8285(define-public python2-vobject
8286 (package-with-python2 python-vobject))
8287
8288(define-public python-munkres
8289 (package
8290 (name "python-munkres")
8291 (version "1.0.8")
8292 (source (origin
8293 (method url-fetch)
8294 (uri (pypi-uri "munkres" version))
8295 (sha256
8296 (base32
8297 "0mbspx4zv8id4x6pim6ybsa1xh96qwpbqj7skbqz4c9c9nf1lpqq"))))
8298 (build-system python-build-system)
8299 (arguments
8300 '(#:tests? #f)) ; no test suite
8301 (home-page "http://software.clapper.org/munkres/")
8302 (synopsis "Implementation of the Munkres algorithm")
8303 (description "The Munkres module provides an implementation of the Munkres
8304algorithm (also called the Hungarian algorithm or the Kuhn-Munkres algorithm),
8305useful for solving the Assignment Problem.")
8306 (license license:bsd-3)))
8307
8308(define-public python2-munkres
8309 (package-with-python2 python-munkres))
8310
8311(define-public python-whoosh
8312 (package
8313 (name "python-whoosh")
8314 (version "2.7.4")
8315 (source
8316 (origin
8317 (method url-fetch)
8318 (uri (pypi-uri "Whoosh" version))
8319 (sha256
8320 (base32
8321 "10qsqdjpbc85fykc1vgcs8xwbgn4l2l52c8d83xf1q59pwyn79bw"))))
8322 (build-system python-build-system)
8323 (native-inputs
8324 `(("python-pytest" ,python-pytest)))
8325 (home-page "https://bitbucket.org/mchaput/whoosh")
8326 (synopsis "Full text indexing, search, and spell checking library")
8327 (description
8328 "Whoosh is a fast, pure-Python full text indexing, search, and spell
8329checking library.")
8330 (license license:bsd-2)))
8331
8332(define-public python2-whoosh
8333 (let ((whoosh (package-with-python2 (strip-python2-variant python-whoosh))))
8334 (package (inherit whoosh)
8335 (propagated-inputs
8336 `(("python2-backport-ssl-match-hostname"
8337 ,python2-backport-ssl-match-hostname)
8338 ,@(package-propagated-inputs whoosh))))))
8339
8340(define-public python-pathlib
8341 (package
8342 (name "python-pathlib")
8343 (version "1.0.1")
8344 (source (origin
8345 (method url-fetch)
8346 (uri (pypi-uri "pathlib" version))
8347 (sha256
8348 (base32
8349 "17zajiw4mjbkkv6ahp3xf025qglkj0805m9s41c45zryzj6p2h39"))))
8350 (build-system python-build-system)
8351 ;; The tests depend on the internal "test" module, which does not provide
8352 ;; a stable interface.
8353 (arguments `(#:tests? #f))
8354 (home-page "https://pathlib.readthedocs.org/")
8355 (synopsis "Object-oriented file system paths")
8356 (description "Pathlib offers a set of classes to handle file system paths.
8357It offers the following advantages over using string objects:
8358
8359@enumerate
8360@item No more cumbersome use of os and os.path functions. Everything can
8361be done easily through operators, attribute accesses, and method calls.
8362@item Embodies the semantics of different path types. For example,
8363comparing Windows paths ignores casing.
8364@item Well-defined semantics, eliminating any inconsistencies or
8365ambiguities (forward vs. backward slashes, etc.).
8366@end enumerate
8367
8368Note: In Python 3.4, pathlib is now part of the standard library. For other
8369Python versions please consider python-pathlib2 instead, which tracks the
8370standard library module. This module (python-pathlib) isn't maintained
8371anymore.")
8372 (license license:expat)))
8373
8374(define-public python2-pathlib
8375 (package-with-python2 python-pathlib))
8376
8377(define-public python2-pathlib2
8378 (package
8379 (name "python2-pathlib2")
8380 (version "2.3.2")
8381 (source (origin
8382 (method url-fetch)
8383 (uri (pypi-uri "pathlib2" version))
8384 (sha256
8385 (base32
8386 "10yb0iv5x2hs631rcppkhbddx799d3h8pcwmkbh2a66ns3w71ccf"))))
8387 (build-system python-build-system)
8388 ;; We only need the the Python 2 variant, since for Python 3 our minimum
8389 ;; version is 3.4 which already includes this package as part of the
8390 ;; standard library.
8391 (arguments
8392 `(#:python ,python-2))
8393 (propagated-inputs
8394 `(("python2-scandir" ,python2-scandir)
8395 ("python2-six" ,python2-six)))
8396 (home-page "https://pypi.python.org/pypi/pathlib2/")
8397 (synopsis "Object-oriented file system paths - backport of standard
8398pathlib module")
8399 (description "The goal of pathlib2 is to provide a backport of standard
8400pathlib module which tracks the standard library module, so all the newest
8401features of the standard pathlib can be used also on older Python versions.
8402
8403Pathlib offers a set of classes to handle file system paths. It offers the
8404following advantages over using string objects:
8405
8406@enumerate
8407@item No more cumbersome use of os and os.path functions. Everything can
8408be done easily through operators, attribute accesses, and method calls.
8409@item Embodies the semantics of different path types. For example,
8410comparing Windows paths ignores casing.
8411@item Well-defined semantics, eliminating any inconsistencies or
8412ambiguities (forward vs. backward slashes, etc.).
8413@end enumerate")
8414 (license license:expat)))
8415
8416(define-public python2-pathlib2-bootstrap
8417 (hidden-package
8418 (package
8419 (inherit python2-pathlib2)
8420 (name "python2-pathlib2-bootstrap")
8421 (propagated-inputs
8422 `(("python2-scandir" ,python2-scandir)
8423 ("python2-six" ,python2-six-bootstrap))))))
8424
8425(define-public python-jellyfish
8426 (package
8427 (name "python-jellyfish")
8428 (version "0.5.6")
8429 (source (origin
8430 (method url-fetch)
8431 (uri (pypi-uri "jellyfish" version))
8432 (sha256
8433 (base32
8434 "1j9rplb16ba2prjj6mip46z0w9pnhnqpwgiwi0x93vnas14rlyl8"))))
8435 (build-system python-build-system)
8436 (native-inputs
8437 `(("python-pytest" ,python-pytest)))
8438 (home-page "https://github.com/jamesturk/jellyfish")
8439 (synopsis "Approximate and phonetic matching of strings")
8440 (description "Jellyfish uses a variety of string comparison and phonetic
8441encoding algorithms to do fuzzy string matching.")
8442 (license license:bsd-2)
8443 (properties `((python2-variant . ,(delay python2-jellyfish))))))
8444
8445(define-public python2-jellyfish
8446 (let ((jellyfish (package-with-python2
8447 (strip-python2-variant python-jellyfish))))
8448 (package (inherit jellyfish)
8449 (native-inputs `(("python2-unicodecsv" ,python2-unicodecsv)
8450 ,@(package-native-inputs jellyfish))))))
8451
8452(define-public python2-unicodecsv
8453 (package
8454 (name "python2-unicodecsv")
8455 (version "0.14.1")
8456 (source (origin
8457 (method url-fetch)
8458 ;; The test suite is not included in the PyPi release.
8459 ;; https://github.com/jdunck/python-unicodecsv/issues/19
8460 (uri (string-append "https://github.com/jdunck/python-unicodecsv/"
8461 "archive/" version ".tar.gz"))
8462 (file-name (string-append name "-" version ".tar.gz"))
8463 (sha256
8464 (base32
8465 "087nqanfcyp6mlfbbr5lva5f3w6iz1bybls9xlrb8icmc474wh4w"))))
8466 (build-system python-build-system)
8467 (arguments
8468 `(;; It supports Python 3, but Python 3 can already do Unicode CSV.
8469 #:python ,python-2))
8470 (native-inputs
8471 `(("python2-unittest2" ,python2-unittest2)))
8472 (home-page "https://github.com/jdunck/python-unicodecsv")
8473 (synopsis "Unicode CSV module for Python 2")
8474 (description "Unicodecsv is a drop-in replacement for Python 2.7's CSV
8475module, adding support for Unicode strings.")
8476 (license license:bsd-2)))
8477
8478(define-public python-rarfile
8479 (package
8480 (name "python-rarfile")
8481 (version "2.8")
8482 (source (origin
8483 (method url-fetch)
8484 (uri (pypi-uri "rarfile" version))
8485 (sha256
8486 (base32
8487 "0qfad483kcbga0bn4qmcz953xjk16r52fahiy46zzn56v80y89ra"))))
8488 (build-system python-build-system)
8489 (arguments
8490 '(#:phases
8491 (modify-phases %standard-phases
8492 (replace 'check
8493 ;; Many tests fail, but the installation proceeds.
8494 (lambda _ (zero? (system* "make" "-C" "test" "test")))))))
8495 (native-inputs
8496 `(("which" ,which))) ; required for tests
8497 (propagated-inputs
8498 `(("libarchive" ,libarchive)))
8499 (home-page "https://github.com/markokr/rarfile")
8500 (synopsis "RAR archive reader for Python")
8501 (description "This is Python module for RAR archive reading. The interface
8502is made as zipfile like as possible.")
8503 (license license:isc)))
8504
8505(define-public python2-rarfile
8506 (package-with-python2 python-rarfile))
8507
8508(define-public python-magic
8509 (package
8510 (name "python-magic")
8511 (version "0.4.15")
8512 (source
8513 (origin
8514 (method url-fetch)
8515 (uri (pypi-uri "python-magic" version))
8516 (sha256
8517 (base32
8518 "1mgwig9pnzgkf86q9ji9pnc99bngms15lfszq5rgqb9db07mqxpk"))
8519 (file-name (string-append name "-" version "-checkout"))))
8520 (build-system python-build-system)
8521 (arguments
8522 ;; The tests are unreliable, so don't run them. The tests fail
8523 ;; under Python3 because they were written for Python2 and
8524 ;; contain import statements that do not work in Python3. One of
8525 ;; the tests fails under Python2 because its assertions are
8526 ;; overly stringent; it relies on comparing output strings which
8527 ;; are brittle and can change depending on the version of
8528 ;; libmagic being used and the system on which the test is
8529 ;; running. In my case, under GuixSD 0.10.0, only one test
8530 ;; failed, and it seems to have failed only because the version
8531 ;; of libmagic that is packaged in Guix outputs a slightly
8532 ;; different (but not wrong) string than the one that the test
8533 ;; expected.
8534 '(#:tests? #f
8535 #:phases (modify-phases %standard-phases
8536 ;; Replace a specific method call with a hard-coded
8537 ;; path to the necessary libmagic.so file in the
8538 ;; store. If we don't do this, then the method call
8539 ;; will fail to find the libmagic.so file, which in
8540 ;; turn will cause any application using
8541 ;; python-magic to fail.
8542 (add-before 'build 'hard-code-path-to-libmagic
8543 (lambda* (#:key inputs #:allow-other-keys)
8544 (let ((file (assoc-ref inputs "file")))
8545 (substitute* "magic.py"
8546 (("ctypes.util.find_library\\('magic'\\)")
8547 (string-append "'" file "/lib/libmagic.so'")))
8548 #t)))
8549 (add-before 'install 'disable-egg-compression
8550 (lambda _
8551 (let ((port (open-file "setup.cfg" "a")))
8552 (display "\n[easy_install]\nzip_ok = 0\n"
8553 port)
8554 (close-port port)
8555 #t))))))
8556 (inputs
8557 ;; python-magic needs to be able to find libmagic.so.
8558 `(("file" ,file)))
8559 (home-page
8560 "https://github.com/ahupp/python-magic")
8561 (synopsis
8562 "File type identification using libmagic")
8563 (description
8564 "This module uses ctypes to access the libmagic file type
8565identification library. It makes use of the local magic database and
8566supports both textual and MIME-type output. Note that this module and
8567the python-file module both provide a \"magic.py\" file; these two
8568modules, which are different and were developed separately, both serve
8569the same purpose: to provide Python bindings for libmagic.")
8570 (license license:expat)))
8571
8572(define-public python2-magic
8573 (package-with-python2 python-magic))
8574
8575(define-public python2-s3cmd
8576 (package
8577 (name "python2-s3cmd")
8578 (version "1.6.1")
8579 (source
8580 (origin
8581 (method url-fetch)
8582 (uri (string-append "mirror://sourceforge/s3tools/s3cmd/" version "/"
8583 "s3cmd-" version ".tar.gz"))
8584 (sha256
8585 (base32
8586 "0ki1rzhm5icvi9ry5jswi4b22yqwyj0d2wsqsgilwx6qhi7pjxa6"))))
8587 (build-system python-build-system)
8588 (arguments
8589 ;; s3cmd is written for python2 only and contains no tests.
8590 `(#:python ,python-2
8591 #:tests? #f))
8592 (propagated-inputs
8593 `(("python2-dateutil" ,python2-dateutil)
8594 ;; The python-file package also provides a magic.py module.
8595 ;; This is an unfortunate state of affairs; however, s3cmd
8596 ;; fails to install if it cannot find specifically the
8597 ;; python-magic package. Thus we include it, instead of using
8598 ;; python-file. Ironically, s3cmd sometimes works better
8599 ;; without libmagic bindings at all:
8600 ;; https://github.com/s3tools/s3cmd/issues/198
8601 ("python2-magic" ,python2-magic)))
8602 (home-page "http://s3tools.org/s3cmd")
8603 (synopsis "Command line tool for S3-compatible storage services")
8604 (description
8605 "S3cmd is a command line tool for uploading, retrieving and managing data
8606in storage services that are compatible with the Amazon Simple Storage
8607Service (S3) protocol, including S3 itself. It supports rsync-like backup,
8608GnuPG encryption, and more. It also supports management of Amazon's
8609CloudFront content delivery network.")
8610 (license license:gpl2+)))
8611
8612(define-public python-pkgconfig
8613 (package
8614 (name "python-pkgconfig")
8615 (version "1.3.1")
8616 (source
8617 (origin
8618 (method url-fetch)
8619 (uri (pypi-uri "pkgconfig" version))
8620 (sha256
8621 (base32
8622 "107x2wmchlch8saixb488cgjz9n6inl38wi7nxkb942rbaapxiqb"))))
8623 (build-system python-build-system)
8624 (native-inputs
8625 `(("python-nose" ,python-nose)))
8626 (inputs
8627 `(("pkg-config" ,pkg-config)))
8628 (arguments
8629 `(#:phases
8630 (modify-phases %standard-phases
8631 (add-before 'build 'patch
8632 ;; Hard-code the path to pkg-config.
8633 (lambda _
8634 (substitute* "pkgconfig/pkgconfig.py"
8635 (("cmd = 'pkg-config")
8636 (string-append "cmd = '" (which "pkg-config"))))
8637 #t))
8638 (replace 'check
8639 (lambda _
8640 (invoke "nosetests" "test.py"))))))
8641 (home-page "https://github.com/matze/pkgconfig")
8642 (synopsis "Python interface for pkg-config")
8643 (description "This module provides a Python interface to pkg-config. It
8644can be used to find all pkg-config packages, check if a package exists,
8645check if a package meets certain version requirements, query CFLAGS and
8646LDFLAGS and parse the output to build extensions with setup.py.")
8647 (license license:expat)))
8648
8649(define-public python2-pkgconfig
8650 (package-with-python2 python-pkgconfig))
8651
8652(define-public python-bz2file
8653 (package
8654 (name "python-bz2file")
8655 (version "0.98")
8656 (source
8657 (origin
8658 (method url-fetch)
8659 (uri (pypi-uri "bz2file" version))
8660 (sha256
8661 (base32
8662 "126s53fkpx04f33a829yqqk8fj4png3qwg4m66cvlmhmwc8zihb4"))))
8663 (build-system python-build-system)
8664 (arguments
8665 `(#:tests? #f)) ; Tests use deprecated python modules.
8666 (home-page "https://github.com/nvawda/bz2file")
8667 (synopsis "Read and write bzip2-compressed files")
8668 (description
8669 "Bz2file is a Python library for reading and writing bzip2-compressed
8670files. It contains a drop-in replacement for the I/O interface in the
8671standard library's @code{bz2} module, including features from the latest
8672development version of CPython that are not available in older releases.")
8673 (license license:asl2.0)))
8674
8675(define-public python2-bz2file
8676 (package-with-python2 python-bz2file))
8677
8678(define-public python-future
8679 (package
8680 (name "python-future")
8681 (version "0.16.0")
8682 (source
8683 (origin
8684 (method url-fetch)
8685 (uri (pypi-uri "future" version))
8686 (sha256
8687 (base32
8688 "1nzy1k4m9966sikp0qka7lirh8sqrsyainyf8rk97db7nwdfv773"))))
8689 (build-system python-build-system)
8690 ;; Many tests connect to the network or are otherwise flawed.
8691 ;; https://github.com/PythonCharmers/python-future/issues/210
8692 (arguments
8693 `(#:tests? #f))
8694 (home-page "http://python-future.org")
8695 (synopsis "Single-source support for Python 3 and 2")
8696 (description
8697 "@code{python-future} is the missing compatibility layer between Python 2 and
8698Python 3. It allows you to use a single, clean Python 3.x-compatible codebase
8699to support both Python 2 and Python 3 with minimal overhead.")
8700 (license license:expat)))
8701
8702(define-public python2-future
8703 (package-with-python2 python-future))
8704
8705(define-public python-cysignals
8706 (package
8707 (name "python-cysignals")
8e3e51df 8708 (version "1.9.0")
44d10b1f
RW
8709 (source
8710 (origin
8711 (method url-fetch)
8e3e51df 8712 (uri (pypi-uri "cysignals" version))
44d10b1f
RW
8713 (sha256
8714 (base32
8e3e51df 8715 "15ix8crpad26cfl1skyg7qajqqfdrm8q5ahhmlfmqi1aw0jqj2g2"))))
44d10b1f
RW
8716 (build-system python-build-system)
8717 (native-inputs
8718 `(("python-cython" ,python-cython)
8719 ("python-sphinx" ,python-sphinx)))
8720 (inputs
8721 `(("pari-gp" ,pari-gp)))
8722 (arguments
8723 `(#:modules ((guix build python-build-system)
8724 ((guix build gnu-build-system) #:prefix gnu:)
8725 (guix build utils))
8726 ;; FIXME: Tests are executed after installation and currently fail
8727 ;; when not installing into standard locations; the author is working
8728 ;; on a fix.
8729 #:tests? #f
8730 #:phases
8731 (modify-phases %standard-phases
8732 (add-before
8733 'build 'configure
8734 (assoc-ref gnu:%standard-phases 'configure)))))
8735 (home-page
8736 "https://github.com/sagemath/cysignals")
8737 (synopsis
8738 "Handling of interrupts and signals for Cython")
8739 (description
8740 "The cysignals package provides mechanisms to handle interrupts (and
8741other signals and errors) in Cython code, using two related approaches,
8742for mixed Cython/Python code or external C libraries and pure Cython code,
8743respectively.")
8744 (license license:lgpl3+)))
8745
8746(define-public python2-cysignals
8747 (package-with-python2 python-cysignals))
8748
8749(define-public python2-shedskin
8750 (package
8751 (name "python2-shedskin")
8752 (version "0.9.4")
8753 (source
8754 (origin
8755 (method url-fetch)
8756 (uri (string-append "https://github.com/shedskin/shedskin/"
8757 "releases/download/v" version
8758 "/shedskin-" version ".tgz"))
8759 (sha256
8760 (base32
8761 "0nzwrzgw1ga8rw6f0ryq7zr9kkiavd1cqz5hzxkcbicl1dk7kz41"))))
8762 (build-system python-build-system)
8763 (arguments
8764 `(#:python ,python-2
8765 #:phases (modify-phases %standard-phases
8766 (add-after 'unpack 'fix-resulting-include-libs
8767 (lambda* (#:key inputs #:allow-other-keys)
8768 (let ((libgc (assoc-ref inputs "libgc"))
8769 (pcre (assoc-ref inputs "pcre")))
8770 (substitute* "shedskin/makefile.py"
8771 (("variable == 'CCFLAGS':[ ]*")
8772 (string-append "variable == 'CCFLAGS':\n"
8773 " line += ' -I " pcre "/include"
8774 " -I " libgc "/include'"))
8775 (("variable == 'LFLAGS':[ ]*")
8776 (string-append "variable == 'LFLAGS':\n"
8777 " line += ' -L" pcre "/lib"
8778 " -L " libgc "/lib'")))
8779 #t))))))
8780 (inputs `(("pcre" ,pcre)
8781 ("libgc" ,libgc)))
8782 (home-page "https://shedskin.github.io/")
8783 (synopsis "Experimental Python-2 to C++ Compiler")
8784 (description (string-append "This is an experimental compiler for a subset of
8785Python. It generates C++ code and a Makefile."))
8786 (license (list license:gpl3 license:bsd-3 license:expat))))
8787
8788(define-public python2-rope
8789 (package
8790 (name "python2-rope")
8791 (version "0.10.3")
8792 (source
8793 (origin
8794 (method url-fetch)
8795 (uri (pypi-uri "rope" version))
8796 (sha256
8797 (base32
8798 "18k5znhpwvrfck3yp0jmhd5j8r0f0s8bk1zh5yhs2cfgmfhbwigb"))))
8799 (arguments
8800 ;; Rope is currently python-2 only.
8801 ;; https://github.com/python-rope/rope/issues/57
8802 `(#:python ,python-2))
8803 (build-system python-build-system)
8804 (native-inputs
8805 `(("python2-unittest2" ,python2-unittest2)))
8806 (home-page "https://github.com/python-rope/rope")
8807 (synopsis "Refactoring library for Python")
8808 (description "Rope is a refactoring library for Python. It facilitates
8809the renaming, moving and extracting of attributes, functions, modules, fields
8810and parameters in Python 2 source code. These refactorings can also be applied
8811to occurrences in strings and comments.")
8812 (license license:gpl2)))
8813
8814(define-public python-py3status
8815 (package
8816 (name "python-py3status")
8817 (version "3.7")
8818 (source
8819 (origin
8820 (method url-fetch)
8821 (uri (pypi-uri "py3status" version))
8822 (sha256
8823 (base32
8824 "0shxcfz4wcczj0mhwp4w0dvwd2fdd9bgprq8slim1519iiqzgwhq"))))
8825 (build-system python-build-system)
8826 (inputs
8827 `(("file" ,file)))
8828 (arguments
8829 '(#:phases
8830 (modify-phases %standard-phases
8831 ;; 'file' is used for detection of configuration file encoding
8832 ;; let's make link the dependency to particular input
8833 (add-before 'build 'patch-file-path
8834 (lambda* (#:key inputs #:allow-other-keys)
8835 (let ((file-path (assoc-ref inputs "file")))
8836 (substitute* "py3status/parse_config.py"
8837 (("\\['file', '-b'")
8838 (string-append "['" file-path "/bin/file', '-b'")))
8839 #t))))
8840 #:tests? #f)) ; TODO: Requires many libraries not in Guix.
8841 (home-page "https://github.com/ultrabug/py3status")
8842 (synopsis "Extensible i3status wrapper written in Python")
8843 (description "py3status is an i3status wrapper which extends i3status
8844functionality in a modular way, allowing you to extend your panel with your
8845own code, responding to click events and updating clock every second.")
8846 (license license:bsd-3)))
8847
8848(define-public python-tblib
8849 (package
8850 (name "python-tblib")
8851 (version "1.3.2")
8852 (source (origin
8853 (method url-fetch)
8854 (uri (pypi-uri "tblib" version))
8855 (sha256 (base32
8856 "1rsg8h069kqgncyv8fgzyj6qflk6j10cb78pa5jk34ixwq044vj3"))))
8857 (build-system python-build-system)
8858 (arguments
8859 `(#:phases
8860 (modify-phases %standard-phases
8861 (add-before 'check 'adjust-tests
8862 (lambda _
8863 (when (which "python3")
8864 ;; Adjust the example output to match that of Python 3.7:
8865 ;; <https://github.com/ionelmc/python-tblib/issues/36>.
8866 (substitute* "README.rst"
8867 (("Exception\\('fail',") "Exception('fail'"))
8868 #t)))
8869 (replace 'check
8870 (lambda _
8871 ;; Upstream runs tests after installation and the package itself
8872 ;; resides in a subdirectory. Extend PYTHONPATH so it will be
8873 ;; found.
8874 (setenv "PYTHONPATH"
8875 (string-append (getcwd) "/build/lib:"
8876 (getenv "PYTHONPATH")))
8877 (invoke "py.test" "-vv" "tests" "README.rst"))))))
8878 (native-inputs
8879 `(("python-pytest" ,python-pytest)
8880 ("python-six" ,python-six)))
8881 (home-page "https://github.com/ionelmc/python-tblib")
8882 (synopsis "Traceback serialization library")
8883 (description
8884 "Traceback serialization allows you to:
8885
8886@enumerate
8887@item Pickle tracebacks and raise exceptions with pickled tracebacks in
8888different processes. This allows better error handling when running code over
8889multiple processes (imagine multiprocessing, billiard, futures, celery etc).
8890
8891@item Parse traceback strings and raise with the parsed tracebacks.
8892@end enumerate\n")
8893 (license license:bsd-3)))
8894
8895(define-public python2-tblib
8896 (package-with-python2 python-tblib))
8897
8898(define-public python-greenlet
8899 (package
8900 (name "python-greenlet")
8901 (version "0.4.15")
8902 (source (origin
8903 (method url-fetch)
8904 (uri (pypi-uri "greenlet" version))
8905 (sha256
8906 (base32
8907 "1g4g1wwc472ds89zmqlpyan3fbnzpa8qm48z3z1y6mlk44z485ll"))))
8908 (build-system python-build-system)
8909 (home-page "https://greenlet.readthedocs.io/")
8910 (synopsis "Lightweight in-process concurrent programming")
8911 (description
8912 "Greenlet package is a spin-off of Stackless, a version of CPython
8913that supports micro-threads called \"tasklets\". Tasklets run
8914pseudo-concurrently (typically in a single or a few OS-level threads) and
8915are synchronized with data exchanges on \"channels\".")
8916 (license (list license:psfl license:expat))))
8917
8918(define-public python2-greenlet
8919 (package-with-python2 python-greenlet))
8920
8921(define-public python-objgraph
8922 (package
8923 (name "python-objgraph")
8924 (version "3.4.0")
8925 (source
8926 (origin
8927 (method url-fetch)
8928 (uri (pypi-uri "objgraph" version))
8929 (sha256
8930 (base32
8931 "184m09am5gpbqfaiy7l0hwh476mczbrly1dffs0rw2p1d1i2q32a"))))
8932 (build-system python-build-system)
8933 (propagated-inputs
8934 `(("python-graphviz" ,python-graphviz)))
8935 (native-inputs
8936 `(("python-mock" ,python-mock)
8937 ("graphviz" ,graphviz)))
8938 (home-page "https://mg.pov.lt/objgraph/")
8939 (synopsis "Draw Python object reference graphs with graphviz")
8940 (description
8941 "This package provides tools to draw Python object reference graphs with
8942graphviz.")
8943 (license license:expat)))
8944
8945(define-public python-gevent
8946 (package
8947 (name "python-gevent")
8948 (version "1.3.7")
8949 (source (origin
8950 (method url-fetch)
8951 (uri (pypi-uri "gevent" version))
8952 (sha256
8953 (base32
8954 "0b0fr04qdk1p4sniv87fh8z5psac60x01pv054kpgi94520g81iz"))
8955 (modules '((guix build utils)))
8956 (snippet
8957 '(begin
8958 ;; unbunding libev and c-ares
8959 (delete-file-recursively "deps")
8960 #t))))
8961 (build-system python-build-system)
8962 (arguments
8963 `(#:modules ((ice-9 ftw)
8964 (ice-9 match)
8965 (srfi srfi-26)
8966 (guix build utils)
8967 (guix build python-build-system))
8968 #:phases (modify-phases %standard-phases
8969 (add-after 'unpack 'unpack-libev
8970 (lambda* (#:key inputs #:allow-other-keys)
8971 (mkdir-p "deps/libev")
8972 ;; FIXME: gevent requires building libev, even though
8973 ;; it only links against the proper one.
8974 (invoke "tar" "-xf" (assoc-ref inputs "libev-source")
8975 "--strip-components=1" "-C" "deps/libev")))
8976 (add-before 'patch-source-shebangs 'patch-hard-coded-paths
8977 (lambda _
8978 (substitute* "src/gevent/subprocess.py"
8979 (("/bin/sh") (which "sh")))
8980 (for-each (lambda (file)
8981 (substitute* file
8982 (("/bin/sh") (which "sh"))
8983 (("/bin/true") (which "true"))))
8984 (find-files "src/greentest" "\\.py$"))
8985 #t))
8986 (add-before 'build 'do-not-use-bundled-sources
8987 (lambda* (#:key inputs #:allow-other-keys)
8988 (setenv "CONFIG_SHELL" (which "bash"))
8989 (setenv "LIBEV_EMBED" "false")
8990 (setenv "CARES_EMBED" "false")
8991 (setenv "EMBED" "false")
8992
8993 (let ((greenlet (string-append
8994 (assoc-ref inputs "python-greenlet")
8995 "/include")))
8996 (match (scandir greenlet
8997 (lambda (item)
8998 (string-prefix? "python" item)))
8999 ((python)
9000 (setenv "CPATH"
9001 (string-append greenlet "/" python)))))
9002 #t))
9003 (add-before 'check 'skip-timer-test
9004 (lambda _
9005 ;; XXX: Skip 'TestTimerResolution', which appears to be
9006 ;; unreliable.
9007 (substitute* "src/greentest/test__core_timer.py"
9008 (("not greentest.RUNNING_ON_CI") "False"))
9009 #t))
9010 (replace 'check
9011 (lambda _
9012 ;; Make sure the build directory is on PYTHONPATH.
9013 (setenv "PYTHONPATH"
9014 (string-append
9015 (getenv "PYTHONPATH") ":"
9016 (getcwd) "/build/"
9017 (car (scandir "build" (cut string-prefix? "lib." <>)))))
9018 (with-directory-excursion "src/greentest"
9019 ;; XXX: Many tests require network access. Instead we only
9020 ;; run known-good tests. Unfortunately we cannot use
9021 ;; recursion here since this directory also contains
9022 ;; Python-version-specific subfolders.
9023 (apply invoke "python" "testrunner.py" "--config"
9024 "known_failures.py"
9025 (scandir "." (cut regexp-exec
9026 (make-regexp "test_+(subprocess|core)")
9027 <>)))))))))
9028 (propagated-inputs
9029 `(("python-greenlet" ,python-greenlet)
9030 ("python-objgraph" ,python-objgraph)))
9031 (native-inputs
9032 `(("libev-source" ,(package-source libev))
9033 ("python-six" ,python-six)))
9034 (inputs
9035 `(("c-ares" ,c-ares)
9036 ("libev" ,libev)))
9037 (home-page "http://www.gevent.org/")
9038 (synopsis "Coroutine-based network library")
9039 (description
9040 "gevent is a coroutine-based Python networking library that uses greenlet
9041to provide a high-level synchronous API on top of the libev event loop.")
9042 (license license:expat)
9043 (properties `((python2-variant . ,(delay python2-gevent))))))
9044
9045(define-public python2-gevent
9046 (let ((base (package-with-python2
9047 (strip-python2-variant python-gevent))))
9048 (package
9049 (inherit base)
9050 (native-inputs `(,@(package-native-inputs python-gevent)
9051 ("python-mock" ,python2-mock))))))
9052
9053(define-public python-fastimport
9054 (package
9055 (name "python-fastimport")
9056 (version "0.9.6")
9057 (source
9058 (origin
9059 (method url-fetch)
9060 (uri (pypi-uri "fastimport" version))
9061 (sha256
9062 (base32 "1aqjsin4rmqm7ln4j0p73fzxifws6c6ikgyhav7r137m2ixsxl43"))))
9063 (build-system python-build-system)
9064 (home-page "https://github.com/jelmer/python-fastimport")
9065 (synopsis "VCS fastimport parser and generator in Python")
9066 (description "This package provides a parser for and generator of the Git
9067@url{https://www.kernel.org/pub/software/scm/git/docs/git-fast-import.html,fastimport}
9068format.")
9069 (license license:gpl2+)))
9070
9071(define-public python2-fastimport
9072 (package-with-python2 python-fastimport))
9073
9074(define-public python-twisted
9075 (package
9076 (name "python-twisted")
9077 (version "17.1.0")
9078 (source (origin
9079 (method url-fetch)
9080 (uri (pypi-uri "Twisted" version ".tar.bz2"))
9081 (sha256
9082 (base32
9083 "1p245mg15hkxp7hy5cyq2fgvlgjkb4cg0gwkwd148nzy1bbi3wnv"))))
9084 (build-system python-build-system)
9085 (arguments
9086 '(#:tests? #f)) ; FIXME: Some tests are failing.
9087 ;; #:phases
9088 ;; (modify-phases %standard-phases
9089 ;; (replace 'check
9090 ;; (lambda _
9091 ;; (zero? (system* "./bin/trial" "twisted")))))
9092 (propagated-inputs
9093 `(("python-zope-interface" ,python-zope-interface)
9094 ("python-incremental" ,python-incremental)
9095 ("python-constantly" ,python-constantly)
9096 ("python-automat" ,python-automat)))
9097 (home-page "https://twistedmatrix.com/")
9098 (synopsis "Asynchronous networking framework written in Python")
9099 (description
9100 "Twisted is an extensible framework for Python programming, with special
9101focus on event-based network programming and multiprotocol integration.")
9102 (license license:expat)))
9103
9104(define-public python2-twisted
9105 (package-with-python2 python-twisted))
9106
9107(define-public python-pika
9108 (package
9109 (name "python-pika")
9110 (version "0.12.0")
9111 (source
9112 (origin
9113 (method url-fetch)
9114 (uri (pypi-uri "pika" version))
9115 (sha256
9116 (base32
9117 "0ld7akgm93s8pfa4dsx9qlzlhj76zspbr5m9ms0ns09yd2w4aq9h"))))
9118 (build-system python-build-system)
9119 (native-inputs
9120 `(("python-pyev" ,python-pyev)
9121 ("python-tornado" ,python-tornado)
9122 ("python-twisted" ,python-twisted)))
9123 (home-page "https://pika.readthedocs.org")
9124 (synopsis "Pure Python AMQP Client Library")
9125 (description
9126 "Pika is a pure-Python implementation of the AMQP (Advanced Message Queuing
9127Protocol) 0-9-1 protocol that tries to stay fairly independent of the underlying
9128network support library.")
9129 (license license:bsd-3)))
9130
9131(define-public python2-pika
9132 (package-with-python2 python-pika))
9133
9134(define-public python-ply
9135 (package
9136 (name "python-ply")
9137 (version "3.10")
9138 (source
9139 (origin
9140 (method url-fetch)
9141 (uri (pypi-uri "ply" version))
9142 (sha256
9143 (base32
9144 "1jxsr1d2f732r6ljhvm827113dckwl6qwakfvpbdhcbhvpvlmscn"))))
9145 (build-system python-build-system)
9146 (home-page "http://www.dabeaz.com/ply/")
9147 (synopsis "Python Lex & Yacc")
9148 (description "PLY is a @code{lex}/@code{yacc} implemented purely in Python.
9149It uses LR parsing and does extensive error checking.")
9150 (license license:bsd-3)))
9151
9152(define-public python2-ply
9153 (package-with-python2 python-ply))
9154
9155(define-public python-tabulate
9156 (package
9157 (name "python-tabulate")
9158 (version "0.7.7")
9159 (source (origin
9160 (method url-fetch)
9161 (uri (pypi-uri "tabulate" version))
9162 (sha256
9163 (base32
9164 "1inqhspd4frxnp08c32yndr0lc4px1xfkqah184i5w09gkhvi843"))))
9165 (build-system python-build-system)
9166 (arguments
9167 ;; FIXME: The pypi release tarball is missing a 'test/common.py'
9168 ;; and the latest release is not tagged in the upstream repository.
9169 '(#:tests? #f))
9170 (home-page "https://bitbucket.org/astanin/python-tabulate")
9171 (synopsis "Pretty-print tabular data")
9172 (description
9173 "Tabulate is a library and command-line utility to pretty-print tabular
9174data in Python.")
9175 (license license:expat)))
9176
9177(define-public python2-tabulate
9178 (package-with-python2 python-tabulate))
9179
9180(define-public python-kazoo
9181 (package
9182 (name "python-kazoo")
9183 (version "2.4.0")
9184 (source
9185 (origin
9186 (method url-fetch)
9187 (uri (pypi-uri "kazoo" version))
9188 (sha256
9189 (base32
9190 "16y213k7r8shyn2zw1k6lkzjgcrvm441pqv8scvcjixhvpbx3hm7"))))
9191 (build-system python-build-system)
9192 (arguments '(#:tests? #f)) ; XXX: needs zookeeper
9193 (propagated-inputs
9194 `(("python-six" ,python-six)))
9195 (home-page "https://kazoo.readthedocs.org")
9196 (synopsis "High-level Zookeeper client library")
9197 (description
9198 "Kazoo is a Python client library for the Apache Zookeeper distributed
9199application service. It is designed to be easy to use and to avoid common
9200programming errors.")
9201 (license license:asl2.0)))
9202
9203(define-public python2-kazoo
9204 (package-with-python2 python-kazoo))
9205
9206(define-public python-pykafka
9207 (package
9208 (name "python-pykafka")
9209 (version "2.4.0")
9210 (source (origin
9211 (method url-fetch)
9212 (uri (string-append
9213 "https://pypi.python.org/packages/8b/3e/"
9214 "384eeff406b06315738b62483fd2126c6e4f544167116b17cc04ea7d2a59/"
9215 "pykafka-" version ".tar.gz"))
9216 (sha256
9217 (base32
9218 "1id6sr159p6aa13bxcqyr9gln8sqg1l0ddzns5iws8kk5q1p5cfv"))))
9219 (build-system python-build-system)
9220 (arguments '(#:tests? #f)) ; XXX: needs zookeeper, kafka, etc.
9221 (propagated-inputs
9222 `(("python-gevent" ,python-gevent)
9223 ("python-kazoo" ,python-kazoo)
9224 ("python-tabulate" ,python-tabulate)))
9225 (inputs
9226 `(("librdkafka" ,librdkafka)))
9227 (home-page "https://pykafka.readthedocs.io/")
9228 (synopsis "Apache Kafka client for Python")
9229 (description
9230 "PyKafka is a client for the Apache Kafka distributed messaging system.
9231It includes Python implementations of Kafka producers and consumers, which
9232are optionally backed by a C extension built on librdkafka.")
9233 (license license:asl2.0)))
9234
9235(define-public python2-pykafka
9236 (package-with-python2 python-pykafka))
9237
9238(define-public python-wcwidth
9239 (package
9240 (name "python-wcwidth")
9241 (version "0.1.7")
9242 (source
9243 (origin
9244 (method url-fetch)
9245 (uri (pypi-uri "wcwidth" version))
9246 (sha256
9247 (base32
9248 "0pn6dflzm609m4r3i8ik5ni9ijjbb5fa3vg1n7hn6vkd49r77wrx"))))
9249 (build-system python-build-system)
9250 (home-page "https://github.com/jquast/wcwidth")
9251 (synopsis "Measure number of terminal column cells of wide-character codes")
9252 (description "Wcwidth measures the number of terminal column cells of
9253wide-character codes. It is useful for those implementing a terminal emulator,
9254or programs that carefully produce output to be interpreted by one. It is a
9255Python implementation of the @code{wcwidth} and @code{wcswidth} C functions
9256specified in POSIX.1-2001 and POSIX.1-2008.")
9257 (license license:expat)))
9258
9259(define-public python2-wcwidth
9260 (package-with-python2 python-wcwidth))
9261
9262(define-public python2-jsonrpclib
9263 (package
9264 (name "python2-jsonrpclib")
9265 (version "0.1.7")
9266 (source (origin
9267 (method url-fetch)
9268 (uri (string-append
9269 "https://pypi.python.org/packages/source/j/jsonrpclib/"
9270 "jsonrpclib-" version ".tar.gz"))
9271 (sha256
9272 (base32
9273 "02vgirw2bcgvpcxhv5hf3yvvb4h5wzd1lpjx8na5psdmaffj6l3z"))))
9274 (build-system python-build-system)
9275 (arguments
9276 `(#:tests? #f
9277 #:python ,python-2))
9278 (home-page "https://github.com/joshmarshall/jsonrpclib/")
9279 (synopsis "Implementation of JSON-RPC specification for Python")
9280 (description
9281 "This library is an implementation of the JSON-RPC specification.
9282It supports both the original 1.0 specification, as well as the
9283new (proposed) 2.0 spec, which includes batch submission, keyword arguments,
9284etc.")
9285 (license license:asl2.0)))
9286
9287(define-public python-chai
9288 (package
9289 (name "python-chai")
9290 (version "1.1.2")
9291 (source (origin
9292 (method url-fetch)
9293 (uri (pypi-uri "chai" version))
9294 (sha256
9295 (base32
9296 "1k6n6zbgrrs83crp6mr3yqj9zlv40b8rpisyrliwsq7naml2p3gz"))))
9297 (build-system python-build-system)
9298 (home-page "https://github.com/agoragames/chai")
9299 (synopsis "Mocking framework for Python")
9300 (description
9301 "Chai provides an api for mocking, stubbing and spying your python
9302objects, patterned after the Mocha library for Ruby.")
9303 (license license:bsd-3)))
9304
9305(define-public python2-chai
9306 (package-with-python2 python-chai))
9307
9308(define-public python-inflection
9309 (package
9310 (name "python-inflection")
9311 (version "0.3.1")
9312 (source
9313 (origin (method url-fetch)
9314 (uri (pypi-uri "inflection" version))
9315 (sha256
9316 (base32
9317 "1jhnxgnw8y3mbzjssixh6qkc7a3afc4fygajhqrqalnilyvpzshq"))))
9318 (build-system python-build-system)
9319 (native-inputs
9320 `(("python-pytest" ,python-pytest)))
9321 (home-page "https://github.com/jpvanhal/inflection")
9322 (synopsis "Python string transformation library")
9323 (description
9324 "Inflection is a string transformation library. It singularizes
9325and pluralizes English words, and transforms strings from CamelCase to
9326underscored string.")
9327 (license license:expat)))
9328
9329(define-public python2-inflection
9330 (package-with-python2 python-inflection))
9331
9332(define-public python-pylev
9333 (package
9334 (name "python-pylev")
9335 (version "1.3.0")
9336 (source (origin
9337 (method url-fetch)
9338 (uri (pypi-uri "pylev" version))
9339 (sha256
9340 (base32
9341 "1hz1x9blsbxya1y9nnhnwwdnqmakxi9mc0jkwj0rn6b1h44i0f86"))))
9342 (build-system python-build-system)
9343 (home-page "https://github.com/toastdriven/pylev")
9344 (synopsis "Levenshtein distance implementation in Python")
9345 (description "Pure Python Levenshtein implementation, based off the
9346Wikipedia code samples at
9347@url{http://en.wikipedia.org/wiki/Levenshtein_distance}.")
9348 (license license:bsd-3)))
9349
9350(define-public python2-pylev
9351 (package-with-python2 python-pylev))
9352
9353(define-public python-cleo
9354 (package
9355 (name "python-cleo")
9356 (version "0.6.1")
9357 (source (origin
9358 (method url-fetch)
9359 (uri (pypi-uri "cleo" version))
9360 (sha256
9361 (base32
9362 "0q1cf0szr0d54am4pypzwdnm74zpladdsinad94c2fz5i06fdpf7"))))
9363 (build-system python-build-system)
9364 (native-inputs
9365 `(;; For testing
9366 ("python-mock" ,python-mock)
9367 ("python-pytest-mock" ,python-pytest-mock)
9368 ("python-pytest" ,python-pytest)))
9369 (propagated-inputs
9370 `(("python-backpack" ,python-backpack)
9371 ("python-pastel" ,python-pastel)
9372 ("python-pylev" ,python-pylev)))
9373 (home-page "https://github.com/sdispater/cleo")
9374 (synopsis "Command-line arguments library for Python")
9375 (description
9376 "Cleo allows you to create command-line commands with signature in
9377docstring and colored output.")
9378 (license license:expat)))
9379
9380(define-public python2-cleo
9381 (package-with-python2 python-cleo))
9382
9383(define-public python-lazy-object-proxy
9384 (package
9385 (name "python-lazy-object-proxy")
9386 (version "1.3.1")
9387 (source (origin
9388 (method url-fetch)
9389 (uri (pypi-uri "lazy-object-proxy" version))
9390 (sha256
9391 (base32
9392 "0yha7q9bhw857fwaby785d63mffhngl9npwzlk9i0pwlkwvbx4gb"))))
9393 (build-system python-build-system)
9394 (home-page "https://github.com/ionelmc/python-lazy-object-proxy")
9395 (synopsis "Lazy object proxy for python")
9396 (description
9397 "Lazy object proxy is an object that wraps a callable but defers the call
9398until the object is actually required, and caches the result of said call.")
9399 (license license:bsd-2)))
9400
9401(define-public python2-lazy-object-proxy
9402 (package-with-python2 python-lazy-object-proxy))
9403
9404(define-public python-dnspython
9405 (package
9406 (name "python-dnspython")
9407 (version "1.15.0")
9408 (source (origin
9409 (method url-fetch)
9410 (uri (string-append "http://www.dnspython.org/kits/"
9411 version "/dnspython-" version ".tar.gz"))
9412 (sha256
9413 (base32
9414 "0jr4v2pd90i6l1xxbss2m05psbjaxvyvvvpq44wycijpfgjqln8i"))))
9415 (build-system python-build-system)
9416 (arguments '(#:tests? #f)) ; XXX: requires internet access
9417 (home-page "http://www.dnspython.org")
9418 (synopsis "DNS toolkit for Python")
9419 (description
9420 "dnspython is a DNS toolkit for Python. It supports almost all record
9421types. It can be used for queries, zone transfers, and dynamic updates.
9422It supports TSIG authenticated messages and EDNS0.")
9423 (license license:expat)))
9424
9425(define-public python2-dnspython
9426 (package-with-python2 python-dnspython))
9427
9428(define-public python-email-validator
9429 (package
9430 (name "python-email-validator")
9431 (version "1.0.2")
9432 (source
9433 (origin (method url-fetch)
9434 (uri (pypi-uri "email_validator" version))
9435 (sha256
9436 (base32
9437 "1ja9149l9ck5n45a72h3is7v476hjny5ybxbcamx1nw6iplsm7k6"))))
9438 (build-system python-build-system)
9439 (arguments
9440 '(#:phases
9441 (modify-phases %standard-phases
9442 (add-before 'build 'use-dnspython
9443 (lambda _
9444 (substitute* "setup.py"
9445 (("dnspython3") "dnspython"))
9446 #t)))))
9447 (propagated-inputs
9448 `(("python-dnspython" ,python-dnspython)
9449 ("python-idna" ,python-idna)))
9450 (home-page "https://github.com/JoshData/python-email-validator")
9451 (synopsis "Email address validation library for Python")
9452 (description
9453 "This library validates email address syntax and deliverability.")
9454 (license license:cc0)))
9455
9456(define-public python2-email-validator
9457 (package-with-python2 python-email-validator))
9458
9459(define-public python-ukpostcodeparser
9460 (package
9461 (name "python-ukpostcodeparser")
9462 (version "1.0.3")
9463 (source (origin
9464 (method url-fetch)
9465 (uri (pypi-uri "UkPostcodeParser" version))
9466 (sha256
9467 (base32
9468 "1jwg9z4rz51mcka1821rwgycsd0mcicyp1kiwjfa2kvg8bm9p2qd"))))
9469 (build-system python-build-system)
9470 (home-page "https://github.com/hamstah/ukpostcodeparser")
9471 (synopsis "UK Postcode parser for Python")
9472 (description
9473 "This library provides the @code{parse_uk_postcode} function for
9474parsing UK postcodes.")
9475 (license license:expat)))
9476
9477(define-public python2-ukpostcodeparser
9478 (package-with-python2 python-ukpostcodeparser))
9479
9480(define-public python-faker
9481 (package
9482 (name "python-faker")
9483 (version "0.7.9")
9484 (source (origin
9485 (method url-fetch)
9486 (uri (pypi-uri "Faker" version))
9487 (sha256
9488 (base32
9489 "1fh2p2yz0fsdr4fqwxgddwbvfb6qn6vp8yx0qwqzra27yq5d1wsm"))
9490 (patches
9491 (search-patches "python-faker-fix-build-32bit.patch"))
9492 (modules '((guix build utils)))
9493 (snippet
9494 '(begin
9495 (for-each delete-file (find-files "." "\\.pyc$"))
9496 #t))))
9497 (build-system python-build-system)
9498 (arguments
9499 '(#:phases
9500 (modify-phases %standard-phases
9501 (replace 'check
9502 (lambda _
9503 (zero? (system* "python" "-m" "unittest" "-v" "tests")))))))
9504 (native-inputs
9505 `(;; For testing
9506 ("python-email-validator" ,python-email-validator)
9507 ("python-mock" ,python-mock)
9508 ("python-ukpostcodeparser" ,python-ukpostcodeparser)))
9509 (propagated-inputs
9510 `(("python-dateutil" ,python-dateutil)
9511 ("python-six" ,python-six)))
9512 (home-page "https://github.com/joke2k/faker")
9513 (synopsis "Python package that generates fake data")
9514 (description
9515 "Faker is a Python package that generates fake data such as names,
9516addresses, and phone numbers.")
9517 (license license:expat)
9518 (properties `((python2-variant . ,(delay python2-faker))))))
9519
9520(define-public python2-faker
9521 (let ((base (package-with-python2 (strip-python2-variant
9522 python-faker))))
9523 (package
9524 (inherit base)
9525 (propagated-inputs
9526 `(("python2-ipaddress" ,python2-ipaddress)
9527 ,@(package-propagated-inputs base))))))
9528
9529(define-public python-pyaml
9530 (package
9531 (name "python-pyaml")
9532 (version "18.11.0")
9533 (source (origin
9534 (method url-fetch)
9535 (uri (pypi-uri "pyaml" version))
9536 (sha256
9537 (base32
9538 "0fi604ix8lbpj1266q7js6szm771saprdzzcdwmj43wy83694qmr"))))
9539 (build-system python-build-system)
9540 (native-inputs
9541 `(("python-unidecode" ,python-unidecode)))
9542 (propagated-inputs
9543 `(("python-pyyaml" ,python-pyyaml)))
9544 (home-page "https://github.com/mk-fg/pretty-yaml")
9545 (synopsis "YAML pretty-print library for Python")
9546 (description
9547 "pyaml is a PyYAML based python module to produce pretty and readable
9548YAML-serialized data.")
9549 (license (license:non-copyleft "http://www.wtfpl.net/txt/copying/"))))
9550
9551(define-public python2-pyaml
9552 (package-with-python2 python-pyaml))
9553
9554(define-public python-backpack
9555 (package
9556 (name "python-backpack")
9557 (version "0.1")
9558 (source
9559 (origin
9560 (method url-fetch)
9561 (uri (pypi-uri "backpack" version))
9562 (sha256
9563 (base32
9564 "14rq1mvm0jda90lcx9gyyby9dvq4x3js2cmxvd6vl4686ixwyqh1"))))
9565 (build-system python-build-system)
9566 (native-inputs
9567 `(("python-pytest" ,python-pytest)
9568 ("python-nose" ,python-nose)))
9569 (propagated-inputs
9570 `(("python-simplejson" ,python-simplejson)))
9571 (home-page "https://github.com/sdispater/backpack")
9572 (synopsis "Utilities for working with Python collections")
9573 (description "Backpack provides some useful utilities for working with
9574collections of data.")
9575 (license license:expat)))
9576
9577(define-public python2-backpack
9578 (package-with-python2 python-backpack))
9579
9580(define-public python-prompt-toolkit
9581 (package
9582 (name "python-prompt-toolkit")
9583 (version "2.0.7")
9584 (source
9585 (origin
9586 (method url-fetch)
9587 (uri (pypi-uri "prompt_toolkit" version ".tar.gz"))
9588 (sha256
9589 (base32
9590 "0fgacqk73w7s932vy46pan2yp8rvjmlkag20xvaydh9mhf6h85zx"))))
9591 (build-system python-build-system)
9592 (arguments
9593 `(#:phases
9594 (modify-phases %standard-phases
9595 (delete 'check)
9596 (add-after 'install 'post-install-check
9597 (lambda* (#:key inputs outputs #:allow-other-keys)
9598 ;; HOME is needed for the test
9599 ;; "test_pathcompleter_can_expanduser".
9600 (setenv "HOME" "/tmp")
9601 (add-installed-pythonpath inputs outputs)
9602 (invoke "py.test"))))))
9603 (propagated-inputs
9604 `(("python-wcwidth" ,python-wcwidth)
9605 ("python-six" ,python-six)
9606 ("python-pygments" ,python-pygments)))
9607 (native-inputs
9608 `(("python-pytest" ,python-pytest)))
9609 (home-page "https://github.com/jonathanslenders/python-prompt-toolkit")
9610 (synopsis "Library for building command line interfaces in Python")
9611 (description
9612 "Prompt-Toolkit is a library for building interactive command line
9613interfaces in Python. It's like GNU Readline but it also features syntax
9614highlighting while typing, out-of-the-box multi-line input editing, advanced
9615code completion, incremental search, support for Chinese double-width
9616characters, mouse support, and auto suggestions.")
9617 (license license:bsd-3)))
9618
9619(define-public python2-prompt-toolkit
9620 (package-with-python2 python-prompt-toolkit))
9621
9622(define-public python-prompt-toolkit-1
9623 (package (inherit python-prompt-toolkit)
9624 (version "1.0.15")
9625 (source
9626 (origin
9627 (method url-fetch)
9628 (uri (pypi-uri "prompt_toolkit" version ".tar.gz"))
9629 (sha256
9630 (base32
9631 "05v9h5nydljwpj5nm8n804ms0glajwfy1zagrzqrg91wk3qqi1c5"))))))
9632
9633(define-public python2-prompt-toolkit-1
9634 (package-with-python2 python-prompt-toolkit-1))
9635
9636(define-public python-jedi
9637 (package
9638 (name "python-jedi")
9639 (version "0.13.1")
9640 (source
9641 (origin
9642 (method url-fetch)
9643 (uri (pypi-uri "jedi" version))
9644 (sha256
9645 (base32
9646 "0j11q42g5vjkyhhjpyy8nb0gdxs78m3rpjai7p1hvgpyl9rkyjdp"))))
9647 (build-system python-build-system)
9648 (arguments
9649 `( ;; Many tests are failing with Python 3.7.x as of version 0.13.1 (see:
9650 ;; https://github.com/davidhalter/jedi/issues/1263)
9651 #:tests? #f
9652 #:phases
9653 (modify-phases %standard-phases
9654 (replace 'check
9655 (lambda* (#:key tests? #:allow-other-keys)
9656 (when tests?
9657 (invoke "py.test" "-vv")))))))
9658 (native-inputs
9659 `(("python-pytest" ,python-pytest)
9660 ("python-docopt" ,python-docopt)))
9661 (propagated-inputs
9662 `(("python-parso" ,python-parso)))
9663 (home-page "https://github.com/davidhalter/jedi")
9664 (synopsis "Autocompletion and static analysis library for Python")
9665 (description
9666 "Jedi is a static analysis tool for Python that can be used in Integrated
9667Development Environments (@dfn{IDE}s) and text editors. It understands Python
9668on a deeper level than many other static analysis frameworks for Python.
9669
9670Jedi understands docstrings and you can use Jedi autocompletion in your REPL as
9671well.")
9672 (license license:expat)))
9673
9674(define-public python2-jedi
9675 (package-with-python2 python-jedi))
9676
9677(define-public ptpython
9678 (package
9679 (name "ptpython")
9680 (version "0.34")
9681 (source (origin
9682 (method url-fetch)
9683 (uri (pypi-uri "ptpython" version))
9684 (sha256
9685 (base32
9686 "1mmbiyzf0n8hm7z2a562x7w5cbl6jc0zsk6vp40q1z4cyblv1k13"))))
9687 (build-system python-build-system)
9688 (arguments
9689 '(#:tests? #f)) ; FIXME: No tests in pypi tarball.
9690 (propagated-inputs
9691 `(("python-docopt" ,python-docopt)
9692 ("python-jedi" ,python-jedi)
9693 ("python-prompt-toolkit" ,python-prompt-toolkit)
9694 ("python-pygments" ,python-pygments)))
9695 (home-page "https://github.com/jonathanslenders/ptpython")
9696 (synopsis "Python Read-Eval-Print-Loop with nice IDE-like features")
9697 (description
9698 "ptpython is a Python read-eval-print loop with IDE-like features.
9699It supports syntax highlighting, multiline editing, autocompletion, mouse,
9700color schemes, bracketed paste, Vi and Emacs keybindings, Chinese characters
9701etc.")
9702 (license license:bsd-3)
9703 (properties `((python2-variant . ,(delay ptpython-2))))))
9704
9705(define-public ptpython-2
9706 (let ((base (package-with-python2 (strip-python2-variant ptpython))))
9707 (package
9708 (inherit base)
9709 (name "ptpython2"))))
9710
9711(define-public python-stem
9712 (package
9713 (name "python-stem")
9714 (version "1.7.0")
9715 (source
9716 (origin
9717 (method url-fetch)
9718 (uri (pypi-uri "stem" version))
9719 (sha256
9720 (base32
9721 "1awiglfiajnx2hva9aqpj3fmdvdb4qg7cwnlfyih827m68y3cq8v"))))
9722 (build-system python-build-system)
9723 (arguments
9724 `(#:phases
9725 (modify-phases %standard-phases
9726 (replace 'check
9727 (lambda _
9728 (invoke "./run_tests.py" "--unit")
9729 #t)))))
9730 (native-inputs
9731 `(("python-mock" ,python-mock)
9732 ("python-pycodestyle" ,python-pycodestyle)
9733 ("python-pyflakes" ,python-pyflakes)))
9734 (home-page "https://stem.torproject.org/")
9735 (synopsis
9736 "Python controller library that allows applications to interact with Tor")
9737 (description
9738 "Stem is a Python controller library for Tor. With it you can use Tor's
9739control protocol to script against the Tor process and read descriptor data
9740relays publish about themselves.")
9741 (license license:lgpl3)))
9742
9743(define-public python2-stem
9744 (package-with-python2 python-stem))
9745
9746(define-public python-pyserial
9747 (package
9748 (name "python-pyserial")
9749 (version "3.1.1")
9750 (source
9751 (origin
9752 (method url-fetch)
9753 (uri (pypi-uri "pyserial" version))
9754 (sha256
9755 (base32
9756 "0k1nfdrxxkdlv4zgaqsdv8li0pj3gbh2pyxw8q2bsg6f9490amyn"))))
9757 (build-system python-build-system)
9758 (arguments
9759 '(#:tests? #f)) ; FIXME: 3/49 tests are failing.
9760 ;; #:phases
9761 ;; (modify-phases %standard-phases
9762 ;; (replace 'check
9763 ;; (lambda _
9764 ;; (zero? (system* "python" "test/run_all_tests.py" "loop://")))))))
9765 (home-page
9766 "https://github.com/pyserial/pyserial")
9767 (synopsis "Python Serial Port Bindings")
9768 (description "@code{pyserial} provide serial port bindings for Python. It
9769supports different byte sizes, stop bits, parity and flow control with RTS/CTS
9770and/or Xon/Xoff. The port is accessed in RAW mode.")
9771 (license license:bsd-3)))
9772
9773(define-public python2-pyserial
9774 (package-with-python2 python-pyserial))
9775
9776(define-public python-kivy
9777 (package
9778 (name "python-kivy")
9779 (version "1.10.1")
9780 (source
9781 (origin
9782 (method url-fetch)
9783 (uri (pypi-uri "Kivy" version))
9784 (file-name (string-append name "-" version ".tar.gz"))
9785 (sha256
9786 (base32
9787 "1zzxjdp78hfjjiklzr82l4zwibwcq4j6kgicspqs6iyyfn5yisbw"))))
9788 (build-system python-build-system)
9789 (arguments
9790 `(#:tests? #f ; Tests require many optional packages
9791 #:phases
9792 (modify-phases %standard-phases
9793 (add-after 'patch-generated-file-shebangs 'set-sdl-paths
9794 (lambda* (#:key inputs #:allow-other-keys)
9795 (setenv "KIVY_SDL2_PATH"
9796 (string-append (assoc-ref inputs "sdl-union")
9797 "/include/SDL2"))
9798 #t)))))
9799 (native-inputs
9800 `(("git" ,git)
9801 ("pkg-config" ,pkg-config)
9802 ("python-cython" ,python-cython)))
9803 (inputs
9804 `(("gstreamer" ,gstreamer)
9805 ("mesa" ,mesa)
9806 ("sdl-union"
9807 ,(sdl-union (list sdl2 sdl2-image sdl2-mixer sdl2-ttf)))))
9808 (home-page "http://kivy.org")
9809 (synopsis
9810 "Multitouch application framework")
9811 (description
9812 "A software library for rapid development of
9813hardware-accelerated multitouch applications.")
9814 (license license:expat)))
9815
9816(define-public python2-kivy
9817 (package-with-python2 python-kivy))
9818
9819(define-public python-kivy-next
9820 (deprecated-package "python-kivy-next" python-kivy))
9821
9822(define-public python2-kivy-next
9823 (deprecated-package "python2-kivy-next" python2-kivy))
9824
9825(define-public python-binaryornot
9826 (package
9827 (name "python-binaryornot")
9828 (version "0.4.4")
9829 (source (origin
9830 (method url-fetch)
9831 (uri (pypi-uri "binaryornot" version))
9832 (sha256
9833 (base32
9834 "0qc006986rb6bcbmiymwgcl1mns2jphr1j7sr7nk41nlr7gh359m"))))
9835 (build-system python-build-system)
9836 (propagated-inputs
9837 `(("python-chardet" ,python-chardet)
9838 ("python-hypothesis" ,python-hypothesis)))
9839 (home-page "https://github.com/audreyr/binaryornot")
9840 (synopsis "Package to check if a file is binary or text")
9841 (description "Ultra-lightweight pure Python package to check if a file is
9842binary or text.")
9843 (license license:bsd-3)
9844 (properties `((python2-variant . ,(delay python2-binaryornot))))))
9845
9846(define-public python2-binaryornot
9847 (let ((base (package-with-python2 (strip-python2-variant python-binaryornot))))
9848 (package (inherit base)
9849 (propagated-inputs
9850 `(("python2-enum34" ,python2-enum34)
9851 ,@(package-propagated-inputs base))))))
9852
9853(define-public python-nltk
9854 (package
9855 (name "python-nltk")
9856 (version "3.2.1")
9857 (source (origin
9858 (method url-fetch)
9859 (uri (pypi-uri "nltk" version))
9860 (sha256
9861 (base32
9862 "0skxbhnymwlspjkzga0f7x1hg3y50fwpfghs8g8k7fh6f4nknlym"))))
9863 (build-system python-build-system)
9864 (arguments
9865 '(;; The tests require some extra resources to be downloaded.
9866 ;; TODO Try packaging these resources.
9867 #:tests? #f))
9868 (home-page "http://nltk.org/")
9869 (synopsis "Natural Language Toolkit")
9870 (description "It provides interfaces to over 50 corpora and lexical
9871resources such as WordNet, along with a suite of text processing libraries
9872for classification, tokenization, stemming, tagging, parsing, and semantic
9873reasoning, wrappers for natural language processing libraries.")
9874 (license license:asl2.0)))
9875
9876(define-public python2-nltk
9877 (package-with-python2 python-nltk))
9878
9879(define-public python-pymongo
9880 (package
9881 (name "python-pymongo")
9882 (version "3.7.2")
9883 (source (origin
9884 (method url-fetch)
9885 (uri (pypi-uri "pymongo" version))
9886 (sha256
9887 (base32
9888 "0zis4707r9hdg5qgkhp3wss9camr9h56ixyfc8n9dxwlnnly4x4c"))))
9889 (build-system python-build-system)
9890 (propagated-inputs
9891 `(("python-certifi" ,python-certifi)))
9892 (home-page "https://github.com/mongodb/mongo-python-driver")
9893 (synopsis "Python driver for MongoDB")
9894 (description "Python driver for MongoDB.")
9895 (license license:asl2.0)))
9896
9897(define-public python2-pymongo
9898 (package-with-python2 python-pymongo))
9899
9900(define-public python-sh
9901 (package
9902 (name "python-sh")
9903 (version "1.11")
9904 (source (origin
9905 (method url-fetch)
9906 (uri (pypi-uri "sh" version))
9907 (sha256
9908 (base32
9909 "192r0mpv6dmkysjzhc43ddffiwb5g7c76bgr1mb1z2xz9awbj3sr"))))
9910 (build-system python-build-system)
9911 (arguments
9912 `(#:tests? #f)) ; no tests
9913 (home-page "https://github.com/amoffat/sh")
9914 (synopsis "Python subprocess interface")
9915 (description "Abstracts process invocation by providing a function
9916interface for programs.")
9917 (license license:expat)))
9918
9919(define-public python2-sh
9920 (package-with-python2 python-sh))
9921
9922(define-public python-consul
9923 (package
9924 (name "python-consul")
9925 (version "0.6.1")
9926 (source
9927 (origin
9928 (method url-fetch)
9929 (uri (pypi-uri "python-consul" version))
9930 (sha256
9931 (base32
9932 "0rfyxcy4cr3x848vhx876ifalxd5ghq6l5x813m49h4vq2d4jiq8"))))
9933 (build-system python-build-system)
9934 (arguments
9935 '(#:tests? #f)) ; The tests are not distributed
9936 (propagated-inputs
9937 `(("python-requests" ,python-requests)
9938 ("python-six" ,python-six)))
9939 (home-page "https://github.com/cablehead/python-consul")
9940 (synopsis "Python client for Consul")
9941 (description
9942 "Python client for @url{http://www.consul.io/,Consul}, a tool for service
9943discovery, monitoring and configuration.")
9944 (license license:expat)))
9945
9946(define-public python2-consul
9947 (package-with-python2 python-consul))
9948
9949(define-public python-schematics
9950 (package
9951 (name "python-schematics")
9952 (version "1.1.1")
9953 (source
9954 (origin
9955 (method url-fetch)
9956 (uri (string-append
9957 "https://github.com/schematics/schematics/archive/v" version ".tar.gz"))
9958 (file-name (string-append name "-" version ".tar.gz"))
9959 (sha256
9960 (base32
9961 "19v1i69bf3bzarfxmbv0v6ivpcn758x3shvbiy9l2hy0lvqwnp6l"))))
9962 (build-system python-build-system)
9963 (propagated-inputs
9964 `(("python-six" ,python-six)))
9965 (arguments
9966 `(#:tests? #f)) ; requires a bunch of not very nice packages with fixed
9967 ; version requirements (eg python-coveralls)
9968 (home-page "https://github.com/schematics/schematics")
9969 (synopsis "Python Data Structures for Humans")
9970 (description "Python Data Structures for Humans.")
9971 (license license:bsd-3)))
9972
9973(define-public python2-schematics
9974 (package-with-python2 python-schematics))
9975
9976(define-public python-odfpy
9977 (package
9978 (name "python-odfpy")
9979 (version "1.3.3")
9980 (source (origin
9981 (method url-fetch)
9982 (uri (pypi-uri "odfpy" version))
9983 (sha256
9984 (base32
9985 "1a6ms0w9zfhhkqhvrnynwwbxrivw6hgjc0s5k7j06npc7rq0blxw"))))
9986 (arguments
9987 `(#:modules ((srfi srfi-1)
9988 (guix build python-build-system)
9989 (guix build utils))
9990 #:phases
9991 (modify-phases %standard-phases
9992 (replace 'check
9993 ;; The test runner invokes python2 and python3 for test*.py.
9994 ;; To avoid having both in inputs, we replicate it here.
9995 (lambda _
9996 (every (lambda (test-file)
9997 (zero? (system* "python" test-file)))
9998 (find-files "tests" "^test.*\\.py$")))))))
9999 (build-system python-build-system)
10000 (home-page "https://github.com/eea/odfpy")
10001 (synopsis "Python API and tools to manipulate OpenDocument files")
10002 (description "Collection of libraries and utility programs written in
10003Python to manipulate OpenDocument 1.2 files.")
10004 (license
10005 ;; The software is mainly dual GPL2+ and ASL2.0, but includes a
10006 ;; number of files with other licenses.
10007 (list license:gpl2+ license:asl2.0 license:lgpl2.1+ license:cc-by-sa3.0))))
10008
10009(define-public python2-odfpy
10010 (package-with-python2 python-odfpy))
10011
10012(define-public python-natsort
10013 (package
10014 (name "python-natsort")
10015 (version "5.4.1")
10016 (source (origin
10017 (method url-fetch)
10018 (uri (pypi-uri "natsort" version))
10019 (sha256
10020 (base32
10021 "0i732amg6yzkx4g4c9j09jmqq39q377x9cl2nbkm5hax2c2v0wxf"))))
10022 (build-system python-build-system)
10023 (arguments
10024 `(#:modules ((guix build utils)
10025 (guix build python-build-system)
10026 (srfi srfi-1)
10027 (srfi srfi-26)
10028 (ice-9 ftw))
10029 #:phases
10030 (modify-phases %standard-phases
10031 (add-before 'check 'set-cachedir
10032 ;; Tests require write access to $HOME by default
10033 (lambda _ (setenv "PYTHON_EGG_CACHE" "/tmp") #t))
10034 (replace 'check
10035 (lambda _
10036 (let ((cwd (getcwd)))
10037 (setenv "PYTHONPATH"
10038 (string-append
10039 cwd "/build/"
10040 (find (cut string-prefix? "lib" <>)
10041 (scandir (string-append cwd "/build")))
10042 ":"
10043 (getenv "PYTHONPATH")))
10044 (invoke "pytest" "-v")))))))
10045 (native-inputs
10046 `(("python-hypothesis" ,python-hypothesis)
10047 ("python-pytest-cov" ,python-pytest-cov)
10048 ("python-pytest-mock" ,python-pytest-mock)
10049 ("python-pytest" ,python-pytest)))
10050 (propagated-inputs ; TODO: Add python-fastnumbers.
10051 `(("python-pyicu" ,python-pyicu)))
10052 (home-page "https://github.com/SethMMorton/natsort")
10053 (synopsis "Natural sorting for python and shell")
10054 (description
10055 "Natsort lets you apply natural sorting on lists instead of
10056lexicographical. If you use the built-in @code{sorted} method in python
10057on a list such as @code{['a20', 'a9', 'a1', 'a4', 'a10']}, it would be
10058returned as @code{['a1', 'a10', 'a20', 'a4', 'a9']}. Natsort provides a
10059function @code{natsorted} that identifies numbers and sorts them separately
10060from strings. It can also sort version numbers, real numbers, mixed types
10061and more, and comes with a shell command @command{natsort} that exposes this
10062functionality in the command line.")
10063 (license license:expat)
10064 (properties `((python2-variant . ,(delay python2-natsort))))))
10065
10066(define-public python2-natsort
10067 (let ((base (package-with-python2 (strip-python2-variant python-natsort))))
10068 (package (inherit base)
10069 (native-inputs
10070 `(("python2-pathlib" ,python2-pathlib)
10071 ,@(package-native-inputs base))))))
10072
10073(define-public python-glances
10074 (package
10075 (name "python-glances")
10076 (version "3.0.2")
10077 (source
10078 (origin
10079 (method url-fetch)
10080 (uri (pypi-uri "Glances" version))
10081 (sha256
10082 (base32
10083 "09fxysfp1n16csqvzvawy74qm6a94nvwjf3vcf5gkqp4i6k4vjjy"))))
10084 (build-system python-build-system)
10085 (propagated-inputs
10086 `(("python-psutil" ,python-psutil)))
10087 (home-page
10088 "https://github.com/nicolargo/glances")
10089 (synopsis
10090 "A cross-platform curses-based monitoring tool")
10091 (description
10092 "Glances is a curses-based monitoring tool for a wide variety of platforms.
10093Glances uses the PsUtil library to get information from your system. It monitors
10094CPU, load, memory, network bandwidth, disk I/O, disk use, and more.")
10095 (license license:lgpl3+)))
10096
10097(define-public python2-glances
10098 (package-with-python2 python-glances))
10099
10100(define-public python-graphql-core
10101 (package
10102 (name "python-graphql-core")
10103 (version "0.5.3")
10104 (source
10105 (origin
10106 (method url-fetch)
10107 (uri (pypi-uri "graphql-core" version))
10108 (sha256
10109 (base32
10110 "0rsaarx2sj4xnw9966rhh4haiqaapm4lm2mfqm48ywd51j5vh1a0"))))
10111 (build-system python-build-system)
10112 (arguments
10113 `(#:tests? #f ; Tests require the unpackaged pytest-benchmark.
10114 #:phases
10115 (modify-phases %standard-phases
10116 (add-after 'unpack 'patch-hardcoded-version
10117 (lambda _ (substitute*
10118 "setup.py"
10119 (("'gevent==1.1rc1'") "'gevent'"))
10120 #t)))))
10121 (native-inputs
10122 `(("python-gevent" ,python-gevent)
10123 ("python-mock" ,python-mock)
10124 ("python-pytest-mock" ,python-pytest-mock)))
10125 (propagated-inputs
10126 `(("python-promise" ,python-promise)
10127 ("python-six" ,python-six)))
10128 (home-page "https://github.com/graphql-python/graphql-core")
10129 (synopsis "GraphQL implementation for Python")
10130 (description
10131 "GraphQL implementation for Python. GraphQL is a data query language and
10132runtime designed and used to request and deliver data to mobile and web apps.
10133This library is a port of @url{https://github.com/graphql/graphql-js,graphql-js}
10134to Python.")
10135 (license license:expat)))
10136
10137(define-public python2-graphql-core
10138 (package-with-python2 python-graphql-core))
10139
10140(define-public python-graphql-relay
10141 (package
10142 (name "python-graphql-relay")
10143 (version "0.4.5")
10144 (source
10145 (origin
10146 (method url-fetch)
10147 (uri (pypi-uri "graphql-relay" version))
10148 (sha256
10149 (base32
10150 "1nv5dxcj59zv31qvl8bd142njmxcmymny2dz3br1l2cpbljbf5i7"))))
10151 (build-system python-build-system)
10152 (arguments
10153 '(#:tests? #f)) ; The tests are not distributed
10154 (propagated-inputs
10155 `(("python-graphql-core" ,python-graphql-core)
10156 ("python-promise" ,python-promise)
10157 ("python-six" ,python-six)))
10158 (home-page "https://github.com/graphql-python/graphql-relay-py")
10159 (synopsis "Relay implementation for Python")
10160 (description
10161 "This is a library to allow the easy creation of Relay-compliant servers
10162using the GraphQL Python reference implementation of a GraphQL server. It
10163should be noted that the code is a exact port of the original
10164@url{https://github.com/graphql/graphql-relay-js,graphql-relay js implementation}
10165from Facebook.")
10166 (license license:expat)))
10167
10168(define-public python2-graphql-relay
10169 (package-with-python2 python-graphql-relay))
10170
10171(define-public python-graphene
10172 (package
10173 (name "python-graphene")
10174 (version "0.10.2")
10175 (source
10176 (origin
10177 (method url-fetch)
10178 (uri (pypi-uri "graphene" version))
10179 (sha256
10180 (base32
10181 "09zhac7igh9ixdz0ay6csy35b40l1jwbf2wrbxmgxwfhy51iy06q"))))
10182 (build-system python-build-system)
10183 (propagated-inputs
10184 `(("python-graphql-core" ,python-graphql-core)
10185 ("python-graphql-relay" ,python-graphql-relay)
10186 ("python-iso8601" ,python-iso8601)
10187 ("python-promise" ,python-promise)
10188 ("python-six" ,python-six)))
10189 (arguments
10190 `(#:tests? #f)) ; no tests/ in the PyPI tarball
10191 (home-page "http://graphene-python.org/")
10192 (synopsis "GraphQL Framework for Python")
10193 (description
10194 "Graphene is a Python library for building GraphQL schemas/types.
10195A GraphQL schema describes your data model, and provides a GraphQL server
10196with an associated set of resolve methods that know how to fetch data.")
10197 (properties `((python2-variant . ,(delay python2-graphene))))
10198 (license license:expat)))
10199
10200(define-public python2-graphene
10201 (let ((base (package-with-python2
10202 (strip-python2-variant python-graphene))))
10203 (package (inherit base)
10204 (native-inputs
10205 `(("python2-sqlalchemy" ,python2-sqlalchemy)
10206 ,@(package-native-inputs base))))))
10207
10208(define-public python-nautilus
10209 (package
10210 (name "python-nautilus")
10211 (version "0.4.9")
10212 (source
10213 (origin
10214 (method url-fetch)
10215 (uri (pypi-uri "nautilus" version))
10216 (sha256
10217 (base32
10218 "01hwzjc1zshk4vvxrcghm398fpy4jls66dyz06g07mrwqif8878p"))))
10219 (build-system python-build-system)
10220 (arguments `(#:tests? #f)) ; fails to import test modules
10221 (propagated-inputs
10222 `(("python-bcrypt" ,python-bcrypt)
10223 ("python-click" ,python-click)
10224 ("python-consul" ,python-consul)
10225 ("python-graphene" ,python-graphene)
10226 ("python-jinja2" ,python-jinja2)
10227 ("python-peewee" ,python-peewee)
10228 ("python-pika" ,python-pika)
10229 ("python-tornado" ,python-tornado)
10230 ("python-wtforms" ,python-wtforms)))
10231 (native-inputs
10232 `(("python-nose2" ,python-nose2)))
10233 (home-page "https://github.com/AlecAivazis/nautilus")
10234 (synopsis "Library for creating microservice applications")
10235 (description
10236 "Nautilus is a framework for flux based microservices that looks to
10237provide extendible implementations of common aspects of a cloud so that you can
10238focus on building massively scalable web applications.")
10239 (license license:expat)))
10240
10241(define-public python-snowballstemmer
10242 (package
10243 (name "python-snowballstemmer")
10244 (version "1.2.1")
10245 (source (origin
10246 (method url-fetch)
10247 (uri (pypi-uri "snowballstemmer" version))
10248 (sha256
10249 (base32
10250 "0a0idq4y5frv7qsg2x62jd7rd272749xk4x99misf5rcifk2d7wi"))))
10251 (build-system python-build-system)
10252 (arguments
10253 `(;; No tests exist
10254 #:tests? #f))
10255 (home-page "https://github.com/shibukawa/snowball_py")
10256 (synopsis "Snowball stemming library collection for Python")
10257 (description "This package provides 16 word stemmer algorithms generated
10258from Snowball algorithms. It includes the 15 original ones plus the Poerter
10259English stemmer.")
10260 (license license:bsd-3)))
10261
10262(define-public python2-snowballstemmer
10263 (package-with-python2 python-snowballstemmer))
10264
10265(define-public python-sphinx-cloud-sptheme
10266 (package
10267 (name "python-sphinx-cloud-sptheme")
10268 (version "1.8.0")
10269 (source (origin
10270 (method url-fetch)
10271 (uri (pypi-uri "cloud_sptheme" version))
10272 (sha256
10273 (base32
10274 "1dniqb6a39yh786f86c4jn666rwnyi1jvzn4616zhcchb7sfdshd"))))
10275 (build-system python-build-system)
10276 ;; FIXME: The 'pypi' release archive does not contain tests.
10277 (arguments '(#:tests? #f))
10278 (native-inputs
10279 `(("python-sphinx" ,python-sphinx)))
10280 (home-page "https://bitbucket.org/ecollins/cloud_sptheme")
10281 (synopsis "'Cloud' theme for Sphinx documenter")
10282 (description "This package contains the \"Cloud\" theme for Sphinx and some
10283related extensions.")
10284 (license license:bsd-3)))
10285
10286(define-public python2-sphinx-cloud-sptheme
10287 (package-with-python2 python-sphinx-cloud-sptheme))
10288
10289(define-public python-sphinx-alabaster-theme
10290 (package
10291 (name "python-sphinx-alabaster-theme")
10292 (version "0.7.12")
10293 (source (origin
10294 (method url-fetch)
10295 (uri (pypi-uri "alabaster" version))
10296 (sha256
10297 (base32
10298 "00nwwjj2d2ym4s2kk217x7jkx1hnczc3fvm8yxbqmsp6b0nxfqd6"))))
10299 (build-system python-build-system)
10300 (propagated-inputs
10301 `(("python-pygments" ,python-pygments)))
10302 (home-page "https://alabaster.readthedocs.io/")
10303 (synopsis "Configurable sidebar-enabled Sphinx theme")
10304 (description "Alabaster is a visually (c)lean, responsive, configurable
10305theme for the Sphinx documentation system. It's the default theme of Sphinx.")
10306 (license license:bsd-3)))
10307
10308(define-public python2-sphinx-alabaster-theme
10309 (package-with-python2 python-sphinx-alabaster-theme))
10310
10311(define-public python-setproctitle
10312(package
10313 (name "python-setproctitle")
10314 (version "1.1.10")
10315 (source
10316 (origin
10317 (method url-fetch)
10318 (uri (pypi-uri "setproctitle" version))
10319 (sha256
10320 (base32
10321 "163kplw9dcrw0lffq1bvli5yws3rngpnvrxrzdw89pbphjjvg0v2"))))
10322 (build-system python-build-system)
10323 (arguments
10324 '(#:phases
10325 (modify-phases %standard-phases
10326 (add-before 'check 'patch-Makefile
10327 ;; Stricly this is only required for the python2 variant.
10328 ;; But adding a phase in an inherited package seems to be
10329 ;; cumbersum. So we patch even for python3.
10330 (lambda _
10331 (let ((nose (assoc-ref %build-inputs "python2-nose")))
10332 (when nose
10333 (substitute* "Makefile"
10334 (("\\$\\(PYTHON\\) [^ ]which nosetests[^ ] ")
10335 (string-append nose "/bin/nosetests "))))
10336 #t)))
10337 (replace 'check
10338 (lambda _
10339 (setenv "PYTHON" (or (which "python3") (which "python")))
10340 (setenv "PYCONFIG" (or (which "python3-config")
10341 (which "python-config")))
10342 (setenv "CC" "gcc")
10343 ;; No need to extend PYTHONPATH to find the built package, since
10344 ;; the Makefile will build anyway
10345 (invoke "make" "check"))))))
10346 (native-inputs
10347 `(("procps" ,procps))) ; required for tests
10348 (home-page
10349 "https://github.com/dvarrazzo/py-setproctitle")
10350 (synopsis
10351 "Setproctitle implementation for Python to customize the process title")
10352 (description "The library allows a process to change its title (as displayed
10353by system tools such as ps and top).
10354
10355Changing the title is mostly useful in multi-process systems, for
10356example when a master process is forked: changing the children's title
10357allows to identify the task each process is busy with. The technique
10358is used by PostgreSQL and the OpenSSH Server for example.")
10359 (license license:bsd-3)
10360 (properties `((python2-variant . ,(delay python2-setproctitle))))))
10361
10362(define-public python2-setproctitle
10363 (let ((base (package-with-python2
10364 (strip-python2-variant python-setproctitle))))
10365 (package
10366 (inherit base)
10367 (native-inputs `(("python2-nose" ,python2-nose)
10368 ,@(package-native-inputs base))))))
10369
10370(define-public python-validictory
10371 (package
10372 (name "python-validictory")
10373 (version "1.0.1")
10374 (source
10375 (origin
10376 (method url-fetch)
10377 (uri (pypi-uri "validictory" version))
10378 (sha256
10379 (base32
10380 "1zf1g9sw47xzp5f80bd94pb42j9yqv82lcrgcvdwr6nkaphfi37q"))))
10381 (build-system python-build-system)
10382 (arguments
10383 '(#:phases
10384 (modify-phases %standard-phases
10385 (add-after 'unpack 'bootstrap
10386 ;; Move the tests out of the package directory to avoid
10387 ;; packaging them.
10388 (lambda* _
10389 (rename-file "validictory/tests" "tests")
10390 (delete-file "tests/__init__.py")))
10391 (replace 'check
10392 (lambda _
10393 ;; Extend PYTHONPATH so the built package will be found.
10394 (setenv "PYTHONPATH"
10395 (string-append (getcwd) "/build/lib:"
10396 (getenv "PYTHONPATH")))
10397 (zero? (system* "py.test" "-vv" )))))))
10398 (native-inputs
10399 `(("python-pytest" ,python-pytest)))
10400 (home-page
10401 "https://github.com/jamesturk/validictory")
10402 (synopsis "General purpose Python data validator")
10403 (description "It allows validation of arbitrary Python data structures.
10404
10405The schema format is based on the JSON Schema
10406proposal (http://json-schema.org), so combined with json the library is also
10407useful as a validator for JSON data.")
10408 (license license:expat)))
10409
10410(define-public python2-validictory
10411 (package-with-python2 python-validictory))
10412
10413(define-public python-pyelftools
10414 (package
10415 (name "python-pyelftools")
10416 (version "0.25")
10417 (source
10418 (origin
10419 (method url-fetch)
10420 (uri (pypi-uri "pyelftools" version))
10421 (sha256
10422 (base32
10423 "090vdksbz341f7ljvr0zswblw4lspa8qaiikzyjkf318arpxmil9"))))
10424 (build-system python-build-system)
10425 (arguments
10426 `(#:phases
10427 (modify-phases %standard-phases
10428 (add-before 'check 'set-pythonpath
10429 (lambda _
10430 (setenv "PYTHONPATH"
10431 (string-append
10432 (getcwd) "/test/"
10433 ":" (getenv "PYTHONPATH")))
10434 #t)))))
10435 (home-page
10436 "https://github.com/eliben/pyelftools")
10437 (synopsis
10438 "Analyze binary and library file information")
10439 (description "This Python library provides interfaces for parsing and
10440analyzing two binary and library file formats; the Executable and Linking
10441Format (ELF), and debugging information in the Debugging With Attributed
10442Record Format (DWARF).")
10443 (license license:public-domain)))
10444
10445(define-public python-pyev
10446 (package
10447 (name "python-pyev")
10448 (version "0.9.0")
10449 (source
10450 (origin
10451 (method url-fetch)
10452 (uri (pypi-uri "pyev" version))
10453 (sha256
10454 (base32
10455 "0rf603lc0s6zpa1nb25vhd8g4y337wg2wyz56i0agsdh7jchl0sx"))))
10456 (build-system python-build-system)
10457 (arguments
10458 `(#:tests? #f ; no test suite
10459 #:phases
10460 (modify-phases %standard-phases
10461 (add-after 'unpack 'patch
10462 (lambda* (#:key inputs #:allow-other-keys)
10463 (let ((libev (string-append (assoc-ref inputs "libev")
10464 "/lib/libev.so.4")))
10465 (substitute* "setup.py"
10466 (("libev_dll_name = find_library\\(\\\"ev\\\"\\)")
10467 (string-append "libev_dll_name = \"" libev "\"")))))))))
10468 (inputs
10469 `(("libev" ,libev)))
10470 (home-page "http://pythonhosted.org/pyev/")
10471 (synopsis "Python libev interface")
10472 (description "Pyev provides a Python interface to libev.")
10473 (license license:gpl3)))
10474
10475(define-public python2-pyev
10476 (package-with-python2 python-pyev))
10477
10478(define-public python-imagesize
10479 (package
10480 (name "python-imagesize")
10481 (version "1.1.0")
10482 (source
10483 (origin
10484 (method url-fetch)
10485 (uri (pypi-uri "imagesize" version))
10486 (sha256
10487 (base32
10488 "1dg3wn7qpwmhgqc0r9na2ding1wif9q5spz3j9zn2riwphc2k0zk"))))
10489 (build-system python-build-system)
10490 (home-page "https://github.com/shibukawa/imagesize_py")
10491 (synopsis "Gets image size of files in various formats in Python")
10492 (description
10493 "This package allows determination of image size from
10494PNG, JPEG, JPEG2000 and GIF files in pure Python.")
10495 (license license:expat)))
10496
10497(define-public python2-imagesize
10498 (package-with-python2 python-imagesize))
10499
10500(define-public python-termstyle
10501 (package
10502 (name "python-termstyle")
10503 (version "0.1.11")
10504 (source
10505 (origin
10506 (method url-fetch)
10507 (uri (pypi-uri "termstyle" version))
10508 (sha256
10509 (base32
10510 "17wzkkcqy5zc0g68xlad3kcv66iw14d2pwqc0h9420gak0vbhx7g"))))
10511 (build-system python-build-system)
10512 (arguments
10513 '(#:phases
10514 (modify-phases %standard-phases
10515 (replace 'check
10516 (lambda _
10517 (zero? (system* "python" "test3.py")))))))
10518 (home-page "https://github.com/gfxmonk/termstyle")
10519 (synopsis "Console text coloring for Python")
10520 (description "This package provides console text coloring for Python.")
10521 (license license:bsd-3)))
10522
10523(define-public python-argcomplete
10524 (package
10525 (name "python-argcomplete")
10526 (version "1.7.0")
10527 (source
10528 (origin
10529 (method url-fetch)
10530 (uri (pypi-uri "argcomplete" version))
10531 (sha256
10532 (base32
10533 "11bwiw6j0nilgz81xnw6f1npyga3prp8asjqrm87cdr3ria5l03x"))))
10534 (build-system python-build-system)
10535 (native-inputs
10536 `(("python-pexpect" ,python-pexpect)
10537 ("tcsh" ,tcsh)
10538 ("bash-full" ,bash))) ;full Bash for 'test_file_completion'
10539 (home-page "https://github.com/kislyuk/argcomplete")
10540 (synopsis "Shell tab completion for Python argparse")
10541 (description "argcomplete provides extensible command line tab completion
10542of arguments and options for Python scripts using @code{argparse}. It's
10543particularly useful for programs with many options or sub-parsers that can
10544dynamically suggest completions; for example, when browsing resources over the
10545network.")
10546 (license license:asl2.0)))
10547
10548(define-public python2-argcomplete
10549 (package-with-python2 python-argcomplete))
10550
10551(define-public python-xopen
10552 (package
10553 (name "python-xopen")
10554 (version "0.3.3")
10555 (source
10556 (origin
10557 (method url-fetch)
10558 (uri (pypi-uri "xopen" version))
10559 (sha256
10560 (base32
10561 "1a0wbil552wsmklwd89ssmgz3pjd86qa9i7jh8wqb9wslc8a2qjr"))
10562 (file-name (string-append name "-" version ".tar.gz"))))
10563 (build-system python-build-system)
10564 (home-page "https://github.com/marcelm/xopen/")
10565 (synopsis "Open compressed files transparently")
10566 (description "This module provides an @code{xopen} function that works like
10567Python's built-in @code{open} function, but can also deal with compressed files.
10568Supported compression formats are gzip, bzip2 and, xz, and are automatically
10569recognized by their file extensions. The focus is on being as efficient as
10570possible on all supported Python versions.")
10571 (license license:expat)))
10572
10573(define-public python2-xopen
10574 (let ((base (package-with-python2
10575 (strip-python2-variant python-xopen))))
10576 (package
10577 (inherit base)
10578 (propagated-inputs `(("python2-bz2file" ,python2-bz2file)
10579 ,@(package-propagated-inputs base))))))
10580
10581(define-public python-cheetah
10582 (package
10583 (name "python-cheetah")
10584 (version "3.1.0")
10585 (source
10586 (origin
10587 (method url-fetch)
10588 (uri (pypi-uri "Cheetah3" version))
10589 (sha256
10590 (base32
10591 "1ihag9cxll6b86fc8v5lkhmr3brdbi4yiz16zpgw79yylmv8fgr9"))))
10592 (build-system python-build-system)
10593 (arguments
10594 `(#:modules ((guix build utils)
10595 (guix build python-build-system)
10596 (ice-9 ftw)
10597 (srfi srfi-1)
10598 (srfi srfi-26))
10599 #:phases (modify-phases %standard-phases
10600 (add-after 'unpack 'use-absolute-python
10601 (lambda _
10602 (substitute* "Cheetah/CheetahWrapper.py"
10603 (("#!/usr/bin/env python")
10604 (string-append "#!" (which "python"))))
10605 #t))
10606 (replace 'check
10607 (lambda _
10608 (let ((cwd (getcwd)))
10609 (setenv "PYTHONPATH"
10610 (string-append
10611 cwd "/build/"
10612 (find (cut string-prefix? "lib" <>)
10613 (scandir (string-append cwd "/build")))
10614 ":" (getenv "PYTHONPATH")))
10615 (setenv "PATH"
10616 (string-append (getenv "PATH")
10617 ":" cwd "/bin"))
10618 (setenv "TMPDIR" "/tmp")
10619
10620 (substitute* "Cheetah/Tests/Test.py"
10621 (("unittest.TextTestRunner\\(\\)")
10622 "unittest.TextTestRunner(verbosity=2)"))
10623
10624 (invoke "python" "Cheetah/Tests/Test.py")))))))
10625 (propagated-inputs
10626 `(("python-markdown" ,python-markdown))) ;optional
10627 (home-page "http://cheetahtemplate.org/")
10628 (synopsis "Template engine")
10629 (description "Cheetah is a text-based template engine and Python code
10630generator.
10631
10632Cheetah can be used as a standalone templating utility or referenced as
10633a library from other Python applications. It has many potential uses,
10634but web developers looking for a viable alternative to ASP, JSP, PHP and
10635PSP are expected to be its principle user group.
10636
10637Features:
10638@enumerate
10639@item Generates HTML, SGML, XML, SQL, Postscript, form email, LaTeX, or any other
10640 text-based format.
10641@item Cleanly separates content, graphic design, and program code.
10642@item Blends the power and flexibility of Python with a simple template language
10643 that non-programmers can understand.
10644@item Gives template writers full access to any Python data structure, module,
10645 function, object, or method in their templates.
10646@item Makes code reuse easy by providing an object-orientated interface to
10647 templates that is accessible from Python code or other Cheetah templates.
10648 One template can subclass another and selectively reimplement sections of it.
10649@item Provides a simple, yet powerful, caching mechanism that can dramatically
10650 improve the performance of a dynamic website.
10651@item Compiles templates into optimized, yet readable, Python code.
10652@end enumerate")
10653 (license (license:x11-style "file://LICENSE"))))
10654
10655(define-public python2-cheetah
10656 (package-with-python2 python-cheetah))
10657
10658(define-public python-dulwich
10659 (package
10660 (name "python-dulwich")
10661 (version "0.18.6")
10662 (source
10663 (origin
10664 (method url-fetch)
10665 (uri (list (string-append "https://www.dulwich.io/releases/"
10666 "dulwich-" version ".tar.gz")
10667 (pypi-uri "dulwich" version)))
10668 (sha256
10669 (base32
10670 "1aa1xfrxkc3j9s4xi0llhf5gndyi9ryprcxsqfa5fcb8ph34981q"))))
10671 (build-system python-build-system)
10672 (arguments
10673 `(#:phases
10674 (modify-phases %standard-phases
10675 (add-before 'check 'fix-tests
10676 (lambda* (#:key inputs #:allow-other-keys)
10677 ;; The tests use Popen with a custom environment which doesn't
10678 ;; include PATH.
10679 (substitute* "dulwich/tests/compat/utils.py"
10680 (("'git'") (string-append "'"
10681 (which "git")
10682 "'")))
10683 (substitute* '("dulwich/tests/test_repository.py"
10684 "dulwich/tests/test_hooks.py")
10685 (("#!/bin/sh") (string-append "#!" (which "sh"))))
10686 (setenv "TEST_RUNNER" "unittest")
10687 (setenv "PYTHONHASHSEED" "random")
10688 #t)))))
10689 (propagated-inputs
10690 `(("python-fastimport" ,python-fastimport)))
10691 (native-inputs
10692 `(("python-mock" ,python-mock)
10693 ("python-geventhttpclient" ,python-geventhttpclient)
10694 ("git" ,git)))
10695 (home-page "https://www.dulwich.io/")
10696 (synopsis "Git implementation in Python")
10697 (description "Dulwich is an implementation of the Git file formats and
10698protocols written in pure Python.")
10699 ;; Can be used with either license.
10700 (license (list license:asl2.0 license:gpl2+))))
10701
10702(define-public python2-dulwich
10703 (package-with-python2 python-dulwich))
10704
10705(define-public python-pbkdf2
10706 (package
10707 (name "python-pbkdf2")
10708 (version "1.3")
10709 (source
10710 (origin
10711 (method url-fetch)
10712 (uri (pypi-uri "pbkdf2" version))
10713 (sha256
10714 (base32
10715 "0yb99rl2mbsaamj571s1mf6vgniqh23v98k4632150hjkwv9fqxc"))))
10716 (build-system python-build-system)
10717 (arguments
10718 '(#:phases
10719 (modify-phases %standard-phases
10720 (replace 'check
10721 (lambda _
10722 (setenv "PYTHONPATH"
10723 (string-append (getcwd) "/build/lib:"
10724 (getenv "PYTHONPATH")))
10725 (zero? (system* "python" "test/test_pbkdf2.py")))))))
10726 (propagated-inputs
10727 `(("python-pycrypto" ,python-pycrypto))) ; optional
10728 (home-page "https://www.dlitz.net/software/python-pbkdf2/")
10729 (synopsis "Password-based key derivation")
10730 (description "This module implements the password-based key derivation
10731function, PBKDF2, specified in RSA PKCS#5 v2.0.
10732
10733PKCS#5 v2.0 Password-Based Key Derivation is a key derivation function which
10734is part of the RSA Public Key Cryptography Standards series. The provided
10735implementation takes a password or a passphrase and a salt value (and
10736optionally a iteration count, a digest module, and a MAC module) and provides
10737a file-like object from which an arbitrarly-sized key can be read.")
10738 (license license:expat)))
10739
10740(define-public python2-pbkdf2
10741 (package-with-python2 python-pbkdf2))
10742
10743(define-public python-qrcode
10744 (package
10745 (name "python-qrcode")
10746 (version "6.0")
10747 (source
10748 (origin
10749 (method url-fetch)
10750 (uri (pypi-uri "qrcode" version))
10751 (sha256
10752 (base32
10753 "1gz1g2n9kqwqkak78aavr354z1v3yyiksk7q6xp5hi1zr6s0syq3"))))
10754 (build-system python-build-system)
10755 (arguments
10756 ;; FIXME: Tests require packaging 'pymaging'.
10757 '(#:tests? #f))
10758 (propagated-inputs
10759 `(("python-lxml" ,python-lxml) ; for SVG output
10760 ("python-pillow" ,python-pillow) ; for PNG output
10761 ("python-six" ,python-six)))
10762 (inputs
10763 `(;; The setup.cfg file needs to be used, and support for this requires
10764 ;; at least version 30.3.0 of setuptools
10765 ("python-setuptools" ,python-setuptools)))
10766 (home-page "https://github.com/lincolnloop/python-qrcode")
10767 (synopsis "QR Code image generator")
10768 (description "This package provides a pure Python QR Code generator
10769module. It uses the Python Imaging Library (PIL) to allow for the generation
10770of QR Codes.
10771
10772In addition this package provides a command line tool to generate QR codes and
10773either write these QR codes to a file or do the output as ascii art at the
10774console.")
10775 (license license:bsd-3)))
10776
10777(define-public python2-qrcode
10778 (package-with-python2 python-qrcode))
10779
10780(define-public python-rst2ansi
10781 (package
10782 (name "python-rst2ansi")
10783 (version "0.1.5")
10784 (source
10785 (origin
10786 (method url-fetch)
10787 (uri (pypi-uri "rst2ansi" version))
10788 (sha256
10789 (base32
10790 "0vzy6gd60l79ff750scl0sz48r1laalkl6md6dwzah4dcadgn5qv"))))
10791 (build-system python-build-system)
10792 (propagated-inputs
10793 `(("python-docutils" ,python-docutils)))
10794 (home-page "https://github.com/Snaipe/python-rst-to-ansi")
10795 (synopsis "Convert RST to ANSI-decorated console output")
10796 (description
10797 "Python module dedicated to rendering RST (reStructuredText) documents
10798to ansi-escaped strings suitable for display in a terminal.")
10799 (license license:expat)))
10800
10801(define-public python-ansi2html
10802 (package
10803 (name "python-ansi2html")
10804 (version "1.2.0")
10805 (source
10806 (origin
10807 (method url-fetch)
10808 (uri (pypi-uri "ansi2html" version))
10809 (sha256
10810 (base32
10811 "1wa00zffprb78w1mqq90dk47czz1knanys2a40zbw2vyapd5lp9y"))))
10812 (build-system python-build-system)
10813 (native-inputs
10814 `(("python-mock" ,python-mock)
10815 ("python-nose" ,python-nose)))
10816 (propagated-inputs
10817 `(("python-six" ,python-six)))
10818 (home-page "https://github.com/ralphbean/ansi2html")
10819 (synopsis "Convert ANSI-decorated console output to HTML")
10820 (description
10821 "@command{ansi2html} is a Python library and command line utility for
10822convering text with ANSI color codes to HTML or LaTeX.")
10823 (license license:gpl3+)))
10824
10825(define-public python2-ansi2html
10826 (package-with-python2 python-ansi2html))
10827
10828(define-public python-ddt
10829 (package
10830 (name "python-ddt")
10831 (version "1.1.3")
10832 (source
10833 (origin
10834 (method url-fetch)
10835 (uri (pypi-uri "ddt" version))
10836 (sha256
10837 (base32
10838 "1lw17420iimhghkgzgax85nn8d1an2d6k2cfvb7j5kwn2dqlr1vk"))))
10839 (build-system python-build-system)
10840 (native-inputs
10841 `(("python-mock" ,python-mock)
10842 ("python-nose" ,python-nose)))
10843 (propagated-inputs
10844 `(("python-six" ,python-six)
10845 ("python-pyyaml" ,python-pyyaml)))
10846 (home-page "https://github.com/txels/ddt")
10847 (synopsis "Data-Driven Tests")
10848 (description
10849 "Data-Driven Tests (@dfn{DDT}) allow you to multiply one test case by
10850running it with different test data, and make it appear as multiple test
10851cases.")
10852 (license license:expat)))
10853
10854(define-public python2-ddt
10855 (package-with-python2 python-ddt))
10856
10857(define-public python-pycountry
10858 (package
10859 (name "python-pycountry")
10860 (version "18.5.26")
10861 (source
10862 (origin
10863 (method url-fetch)
10864 (uri (pypi-uri "pycountry" version))
10865 (sha256
10866 (base32
10867 "15q9j047s3yc9cfcxq1ch8b71f81na44cr6dydd5gxk0ki9a4akz"))))
10868 (build-system python-build-system)
10869 (home-page "https://bitbucket.org/flyingcircus/pycountry")
10870 (synopsis "ISO databases for languages, countries, currencies, etc.")
10871 (description
10872 "@code{pycountry} provides the ISO databases for the standards:
10873@enumerate
10874@item 639-3 (Languages)
10875@item 3166 (Countries)
10876@item 3166-3 (Deleted Countries)
10877@item 3166-2 (Subdivisions of countries)
10878@item 4217 (Currencies)
10879@item 15924 (Scripts)
10880@end enumerate
10881It includes a copy from Debian’s pkg-isocodes and makes the data accessible
10882through a Python API.")
10883 (license license:lgpl2.1+)))
10884
10885(define-public python2-pycountry
10886 (package-with-python2 python-pycountry))
10887
10888(define-public python-pycosat
10889 (package
10890 (name "python-pycosat")
10891 (version "0.6.1")
10892 (source
10893 (origin
10894 (method url-fetch)
10895 (uri (pypi-uri "pycosat" version))
10896 (sha256
10897 (base32
10898 "1kl3wh1f47rc712n4bmwplbx3fqz3x9i1b587jrbpmvdva4c8f6l"))))
10899 ;; TODO: Unundle picosat. http://fmv.jku.at/picosat/
10900 (build-system python-build-system)
10901 (home-page "https://github.com/ContinuumIO/pycosat")
10902 (synopsis "Bindings to picosat (a SAT solver)")
10903 (description
10904 "This package provides efficient Python bindings to @code{picosat} on
10905the C level. When importing pycosat, the @code{picosat} solver becomes part
10906of the Python process itself. @code{picosat} is a @dfn{Boolean Satisfiability
10907Problem} (SAT) solver.")
10908 (license license:expat)))
10909
10910(define-public python2-pycosat
10911 (package-with-python2 python-pycosat))
10912
10913(define-public python2-ruamel.ordereddict
10914 (package
10915 (name "python2-ruamel.ordereddict")
10916 (version "0.4.9")
10917 (source
10918 (origin
10919 (method url-fetch)
10920 (uri (pypi-uri "ruamel.ordereddict" version))
10921 (sha256
10922 (base32
10923 "1xmkl8v9l9inm2pyxgc1fm5005yxm7fkd5gv74q7lj1iy5qc8n3h"))))
10924 (build-system python-build-system)
10925 (arguments
10926 `(#:python ,python-2
10927 #:phases
10928 (modify-phases %standard-phases
10929 (delete 'check)
10930 (add-after 'install 'check
10931 (lambda* (#:key inputs outputs #:allow-other-keys)
10932 (add-installed-pythonpath inputs outputs)
10933 (zero? (system* "python" "test/testordereddict.py")))))))
10934 (home-page "https://bitbucket.org/ruamel/ordereddict")
10935 (synopsis "Version of dict that keeps keys in insertion order")
10936 (description
10937 "This is an implementation of an ordered dictionary with @dfn{Key
10938Insertion Order} (KIO: updates of values do not affect the position of the
10939key), @dfn{Key Value Insertion Order} (KVIO, an existing key's position is
10940removed and put at the back). The standard library module @code{OrderedDict},
10941implemented later, implements a subset of @code{ordereddict} functionality.
10942Sorted dictionaries are also provided. Currently only with @dfn{Key Sorted
10943Order} (KSO, no sorting function can be specified, but a transform can be
10944specified to apply on the key before comparison (e.g. @code{string.lower})).")
10945 (license license:expat)))
10946
10947(define-public python-pypeg2
10948 (package
10949 (name "python-pypeg2")
10950 (version "2.15.2")
10951 (source
10952 (origin
10953 (method url-fetch)
10954 (uri (pypi-uri "pyPEG2" version))
10955 (sha256
10956 (base32
10957 "0v8ziaam2r637v94ra4dbjw6jzxz99gs5x4i585kgag1v204yb9b"))))
10958 (build-system python-build-system)
10959 (propagated-inputs `(("python-lxml" ,python-lxml)))
10960 (arguments
10961 ;;https://bitbucket.org/fdik/pypeg/issues/36/test-failures-on-py35
10962 '(#:tests? #f))
10963 (home-page "https://fdik.org/pyPEG/")
10964 (synopsis "Parsering Expression Grammars in Python")
10965 (description "PyPEG is an intrinsic parser interpreter framework for
10966Python. It is based on Parsing Expression Grammars, PEG. With pyPEG you can
10967parse many formal languages.")
10968 (license license:gpl2)))
10969
10970(define-public python-incremental
10971 (package
10972 (name "python-incremental")
10973 (version "17.5.0")
10974 (source
10975 (origin
10976 (method url-fetch)
10977 (uri (pypi-uri "incremental" version))
10978 (sha256
10979 (base32
10980 "1cylxdz1cnkm5g3pklna3h2n0i0rks95ir1pnpxfnvpkmab1cxbv"))))
10981 (build-system python-build-system)
10982 (home-page "https://github.com/hawkowl/incremental")
10983 (synopsis "Library for versioning Python projects")
10984 (description "Incremental is a small library that versions your Python
10985projects.")
10986 (license license:expat)))
10987
10988(define-public python2-incremental
10989 (package-with-python2 python-incremental))
10990
10991(define-public python-invoke
10992 (package
10993 (name "python-invoke")
10994 (home-page "http://www.pyinvoke.org/")
10995 (version "1.1.0")
10996 (source (origin
10997 (method url-fetch)
10998 (uri (pypi-uri "invoke" version))
10999 (sha256
11000 (base32
11001 "0aiy1xvk1f91246zxd1zqrm679vdvd10h843a2na41cqr3cflpi6"))))
11002 (build-system python-build-system)
11003 (arguments
11004 ;; XXX: Requires many dependencies that are not yet in Guix.
11005 `(#:tests? #f))
11006 (synopsis "Pythonic task execution")
11007 (description
11008 "Invoke is a Python task execution tool and library, drawing inspiration
11009from various sources to arrive at a powerful and clean feature set. It is
11010evolved from the Fabric project, but focuses on local and abstract concerns
11011instead of servers and network commands.")
11012 (license license:bsd-3)))
11013
11014(define-public python2-invoke
11015 (package-with-python2 python-invoke))
11016
11017(define-public python-automat
11018 (package
11019 (name "python-automat")
11020 (version "0.6.0")
11021 (source (origin
11022 (method url-fetch)
11023 (uri (pypi-uri "Automat" version))
11024 (sha256
11025 (base32
11026 "1a7nsrljysfmdqmpn2apfa1gg6rfah4y9sizvns8gb08rx7d07rw"))))
11027 (build-system python-build-system)
11028 ;; We disable the tests because they require python-twisted, while
11029 ;; python-twisted depends on python-automat. Twisted is optional, but the
11030 ;; tests fail if it is not available. Also see
11031 ;; <https://github.com/glyph/automat/issues/71>.
11032 (arguments '(#:tests? #f))
11033 (native-inputs
11034 `(("python-m2r" ,python-m2r)
11035 ("python-setuptools-scm" ,python-setuptools-scm)
11036 ("python-graphviz" ,python-graphviz)))
11037 (propagated-inputs
11038 `(("python-six" ,python-six)
11039 ("python-attrs" ,python-attrs)))
11040 (home-page "https://github.com/glyph/Automat")
11041 (synopsis "Self-service finite-state machines")
11042 (description "Automat is a library for concise, idiomatic Python
11043expression of finite-state automata (particularly deterministic finite-state
11044transducers).")
11045 (license license:expat)))
11046
11047(define-public python2-automat
11048 (package-with-python2 python-automat))
11049
11050(define-public python-m2r
11051 (package
11052 (name "python-m2r")
11053 (version "0.1.12")
11054 (source (origin
11055 (method url-fetch)
11056 (uri (pypi-uri "m2r" version))
11057 (sha256
11058 (base32
11059 "1axrwnf425sz4qz3c0qc7yhhki4myzb8rki7pczcsgzznzmqdyxd"))))
11060 (build-system python-build-system)
11061 (propagated-inputs
11062 `(("python-docutils" ,python-docutils)
11063 ("python-mistune" ,python-mistune)))
11064 (native-inputs
11065 `(("python-pygments" ,python-pygments)
11066 ("python-mock" ,python-mock)))
11067 (home-page "https://github.com/miyakogi/m2r")
11068 (synopsis "Markdown to reStructuredText converter")
11069 (description "M2R converts a markdown file including reST markups to valid
11070reST format.")
11071 (license license:expat)))
11072
11073(define-public python2-m2r
11074 (package-with-python2 python-m2r))
11075
11076(define-public python-constantly
11077 (package
11078 (name "python-constantly")
11079 (version "15.1.0")
11080 (source (origin
11081 (method url-fetch)
11082 (uri (pypi-uri "constantly" version))
11083 (sha256
11084 (base32
11085 "0dgwdla5kfpqz83hfril716inm41hgn9skxskvi77605jbmp4qsq"))))
11086 (build-system python-build-system)
11087 (home-page "https://github.com/twisted/constantly")
11088 (synopsis "Symbolic constants in Python")
11089 (description "Constantly is a Python library that provides symbolic
11090constant support. It includes collections and constants with text, numeric,
11091and bit flag values.")
11092 (license license:expat)))
11093
11094(define-public python2-constantly
11095 (package-with-python2 python-constantly))
11096
11097(define-public python-attrs
11098 (package
11099 (name "python-attrs")
11100 (version "18.2.0")
11101 (source (origin
11102 (method url-fetch)
11103 (uri (pypi-uri "attrs" version))
11104 (sha256
11105 (base32
11106 "0s9ydh058wmmf5v391pym877x4ahxg45dw6a0w4c7s5wgpigdjqh"))))
11107 (build-system python-build-system)
11108 (arguments
11109 `(#:modules ((guix build utils)
11110 (guix build python-build-system)
11111 (ice-9 ftw)
11112 (srfi srfi-1)
11113 (srfi srfi-26))
11114 #:phases (modify-phases %standard-phases
11115 (replace 'check
11116 (lambda _
11117 (let ((cwd (getcwd)))
11118 (setenv "PYTHONPATH"
11119 (string-append
11120 cwd "/build/"
11121 (find (cut string-prefix? "lib" <>)
11122 (scandir (string-append cwd "/build")))
11123 ":"
11124 (getenv "PYTHONPATH")))
11125 (invoke "python" "-m" "pytest")))))))
11126 (native-inputs
11127 `(("python-coverage" ,python-coverage)
11128 ("python-hypothesis" ,python-hypothesis)
11129 ("python-pympler" ,python-pympler)
11130 ("python-pytest" ,python-pytest)
11131 ("python-six" ,python-six)
11132 ("python-sphinx" ,python-sphinx)
11133 ("python-zope-interface" ,python-zope-interface)))
11134 (home-page "https://github.com/python-attrs/attrs/")
11135 (synopsis "Attributes without boilerplate")
11136 (description "@code{attrs} is a Python package with class decorators that
11137ease the chores of implementing the most common attribute-related object
11138protocols.")
11139 (license license:expat)))
11140
11141(define-public python2-attrs
11142 (package-with-python2 python-attrs))
11143
11144(define-public python-attrs-bootstrap
11145 (package
11146 (inherit python-attrs)
11147 (name "python-attrs-bootstrap")
11148 ;; Keep this on a fixed version so python-attrs can be updated without
11149 ;; triggering a mass-rebuild. FIXME: Update this in the next rebuild cycle.
11150 (version "17.4.0")
11151 (source (origin
11152 (method url-fetch)
11153 (uri (pypi-uri "attrs" version))
11154 (sha256
11155 (base32
11156 "1jafnn1kzd6qhxgprhx6y6ik1r5m2rilx25syzcmq03azp660y8w"))))
11157 (native-inputs `())
11158 (arguments `(#:tests? #f))))
11159
11160(define-public python2-attrs-bootstrap
11161 (package-with-python2 python-attrs-bootstrap))
11162
11163(define-public python2-cliapp
11164 (package
11165 (name "python2-cliapp")
11166 (version "1.20170823")
11167 (source
11168 (origin
11169 (method url-fetch)
11170 (uri (string-append
11171 "http://git.liw.fi/cgi-bin/cgit/cgit.cgi/cliapp/snapshot/cliapp-"
11172 version ".tar.gz"))
11173 (sha256
11174 (base32
11175 "1i9gik0xrj6jmi95s5w988jl1y265baz5xm5pbqdyvsh8h9ln6yq"))))
11176 (build-system python-build-system)
11177 (arguments
11178 `(#:python ,python-2
11179 #:phases
11180 (modify-phases %standard-phases
11181 ;; check phase needs to be run before the build phase. If not,
11182 ;; coverage-test-runner looks for tests for the built source files,
11183 ;; and fails.
11184 (delete 'check)
11185 (add-before 'build 'check
11186 (lambda _
11187 ;; Disable python3 tests
11188 (substitute* "check"
11189 (("python3") "# python3"))
11190 (zero? (system* "./check")))))))
11191 (native-inputs
11192 `(("python2-coverage-test-runner" ,python2-coverage-test-runner)
11193 ("python2-pep8" ,python2-pep8)))
11194 (propagated-inputs
11195 `(("python2-pyaml" ,python2-pyaml)))
11196 (home-page "https://liw.fi/cliapp/")
11197 (synopsis "Python framework for command line programs")
11198 (description "@code{python2-cliapp} is a python framework for
11199command line programs. It contains the typical stuff such programs
11200need to do, such as parsing the command line for options, and
11201iterating over input files.")
11202 (license license:gpl2+)))
11203
11204(define-public python2-ttystatus
11205 (package
11206 (name "python2-ttystatus")
11207 (version "0.35")
11208 (source
11209 (origin
11210 (method url-fetch)
11211 (uri (string-append
11212 "http://git.liw.fi/cgi-bin/cgit/cgit.cgi/ttystatus/snapshot/ttystatus-"
11213 version ".tar.gz"))
11214 (sha256
11215 (base32
11216 "0vivqbw7ddhsq1zj3g9cvvv4f0phl0pis2smsnwcr2szz2fk3hl6"))))
11217 (build-system python-build-system)
11218 (native-inputs
11219 `(("python2-coverage-test-runner" ,python2-coverage-test-runner)
11220 ("python2-pep8" ,python2-pep8)))
11221 (arguments
11222 `(#:python ,python-2
11223 #:phases
11224 (modify-phases %standard-phases
11225 ;; check phase needs to be run before the build phase. If not,
11226 ;; coverage-test-runner looks for tests for the built source files,
11227 ;; and fails.
11228 (delete 'check)
11229 (add-before 'build 'check
11230 (lambda _
11231 (zero? (system* "make" "check")))))))
11232 (home-page "https://liw.fi/ttystatus/")
11233 (synopsis "Python library for showing progress reporting and
11234status updates on terminals")
11235 (description "@code{python2-ttystatus} is a python library for
11236showing progress reporting and status updates on terminals, for
11237command line programs. Output is automatically adapted to the width
11238of the terminal: truncated if it does not fit, and resized if the
11239terminal size changes.")
11240 (license license:gpl3+)))
11241
11242(define-public python2-tracing
11243 (package
11244 (name "python2-tracing")
11245 (version "0.10")
11246 (source
11247 (origin
11248 (method url-fetch)
11249 (uri (string-append
11250 "http://git.liw.fi/cgi-bin/cgit/cgit.cgi/python-tracing/snapshot/tracing-"
11251 version ".tar.gz"))
11252 (sha256
11253 (base32
11254 "06cw4zg42fsvqy372vi2whj26w56vzg5axhzwdjc2bgwf03garbw"))))
11255 (build-system python-build-system)
11256 (arguments
11257 `(#:python ,python-2))
11258 (home-page "https://liw.fi/tracing/")
11259 (synopsis "Python debug logging helper")
11260 (description "@code{python2-tracing} is a python library for
11261logging debug messages. It provides a way to turn debugging messages
11262on and off, based on the filename they occur in. It is much faster
11263than using @code{logging.Filter} to accomplish the same thing, which
11264matters when code is run in production mode. The actual logging still
11265happens using the @code{logging} library.")
11266 (license license:gpl3+)))
11267
11268(define-public python2-larch
11269 (package
11270 (name "python2-larch")
11271 (version "1.20151025")
11272 (source
11273 (origin
11274 (method url-fetch)
11275 (uri (string-append
11276 "http://git.liw.fi/cgi-bin/cgit/cgit.cgi/larch/snapshot/larch-"
11277 version ".tar.gz"))
11278 (patches (search-patches
11279 "python2-larch-coverage-4.0a6-compatibility.patch"))
11280 (sha256
11281 (base32
11282 "1p4knkkavlqymgciz2wbcnfrdgdbafhg14maplnk4vbw0q8xs663"))))
11283 (build-system python-build-system)
11284 (arguments
11285 `(#:python ,python-2
11286 #:phases
11287 (modify-phases %standard-phases
11288 ;; check phase needs to be run before the build phase. If not,
11289 ;; coverage-test-runner looks for tests for the built source files,
11290 ;; and fails.
11291 (delete 'check)
11292 (add-before 'build 'check
11293 (lambda _
11294 (zero? (system* "make" "check")))))))
11295 (native-inputs
11296 `(("cmdtest" ,cmdtest)
11297 ("python2-coverage-test-runner" ,python2-coverage-test-runner)))
11298 (propagated-inputs
11299 `(("python2-tracing" ,python2-tracing)))
11300 (home-page "https://liw.fi/larch/")
11301 (synopsis "Python copy-on-write B-tree library")
11302 (description "@code{python2-larch} is an implementation of
11303particular kind of B-tree, based on research by Ohad Rodeh. See
11304@url{http://liw.fi/larch/ohad-btrees-shadowing-clones.pdf} for details
11305on the data structure.
11306
11307The distinctive feature of this B-tree is that a node is never
11308(conceptually) modified. Instead, all updates are done by
11309copy-on-write. This makes it easy to clone a tree, and modify only the
11310clone, while other processes access the original tree.")
11311 (license license:gpl3+)))
11312
11313(define-public python-astroid
11314 (package
11315 (name "python-astroid")
11316 (version "2.1.0")
11317 (source
11318 (origin
11319 (method url-fetch)
11320 (uri (pypi-uri "astroid" version))
11321 (sha256
11322 (base32
11323 "08hz675knh4294bancdapql392fmbjyimhbyrmfkz1ka7l035c1m"))))
11324 (build-system python-build-system)
11325 (propagated-inputs
11326 `(("python-lazy-object-proxy" ,python-lazy-object-proxy)
11327 ("python-six" ,python-six)
11328 ("python-wrapt" ,python-wrapt)))
11329 (native-inputs
11330 `(("python-dateutil" ,python-dateutil)
11331 ("python-nose" ,python-nose)
11332 ("python-pytest" ,python-pytest)
11333 ("python-pytest-runner" ,python-pytest-runner)))
11334 (arguments
11335 `(#:phases
11336 (modify-phases %standard-phases
11337 (add-after 'unpack 'remove-spurious-test
11338 (lambda _
11339 ;; This can be removed after upgrading from python-3.7
11340 ;; https://github.com/PyCQA/astroid/issues/593
11341 ;; https://bugs.python.org/issue34056
11342 (delete-file "astroid/tests/unittest_modutils.py")
11343 #t))
11344 (replace 'check
11345 (lambda _
11346 (invoke "pytest" "astroid"))))))
11347 (home-page "https://github.com/PyCQA/astroid")
11348 (synopsis "Common base representation of python source code for pylint and
11349other projects")
11350 (description "@code{python-astroid} provides a common base representation
11351of python source code for projects such as pychecker, pyreverse, pylint, etc.
11352
11353It provides a compatible representation which comes from the _ast module. It
11354rebuilds the tree generated by the builtin _ast module by recursively walking
11355down the AST and building an extended ast. The new node classes have
11356additional methods and attributes for different usages. They include some
11357support for static inference and local name scopes. Furthermore, astroid
11358builds partial trees by inspecting living objects.")
11359 (license license:lgpl2.1+)
11360 (properties `((python2-variant . ,(delay python2-astroid))))))
11361
11362(define-public python2-astroid
11363 (let ((base (package-with-python2
11364 (strip-python2-variant python-astroid))))
11365 (package (inherit base)
11366 ;; Version 2.x removes python2 support.
11367 (version "1.6.5")
11368 (source
11369 (origin
11370 (method url-fetch)
11371 (uri (pypi-uri "astroid" version))
11372 (sha256
11373 (base32
11374 "0fir4b67sm7shcacah9n61pvq313m523jb4q80sycrh3p8nmi6zw"))))
11375 (arguments
11376 (substitute-keyword-arguments (package-arguments base)
11377 ((#:phases phases)
11378 `(modify-phases ,phases
11379 (add-after 'unpack 'remove-spurious-test
11380 (lambda _
11381 ;; https://github.com/PyCQA/astroid/issues/276
11382 (delete-file "astroid/tests/unittest_brain.py")
11383 #t))
11384 (replace 'check
11385 (lambda _
11386 (invoke"python" "-m" "unittest" "discover"
11387 "-p" "unittest*.py")))))))
11388 (native-inputs `())
11389 (propagated-inputs
11390 `(("python2-backports-functools-lru-cache"
11391 ,python2-backports-functools-lru-cache)
11392 ("python2-enum34" ,python2-enum34)
11393 ("python2-singledispatch" ,python2-singledispatch)
11394 ,@(package-propagated-inputs base))))))
11395
11396(define-public python-isort
11397 (package
11398 (name "python-isort")
e2227b6a 11399 (version "4.3.4")
44d10b1f
RW
11400 (source
11401 (origin
e2227b6a
EF
11402 (method git-fetch)
11403 (uri (git-reference
11404 ;; Tests pass only from the Github sources
11405 (url "https://github.com/timothycrosley/isort")
11406 (commit version)))
11407 (file-name (git-file-name name version))
44d10b1f
RW
11408 (sha256
11409 (base32
e2227b6a 11410 "1q0mlrpki5vjbgwxag5rghljjcfg7mvb0pbkwid80p0sqrxlm2p6"))))
44d10b1f
RW
11411 (build-system python-build-system)
11412 (native-inputs
11413 `(("python-mock" ,python-mock)
11414 ("python-pytest" ,python-pytest)))
11415 (home-page "https://github.com/timothycrosley/isort")
11416 (synopsis "Python utility/library to sort python imports")
11417 (description "@code{python-isort} is a python utility/library to sort
11418imports alphabetically, and automatically separated into sections. It
11419provides a command line utility, a python library and plugins for various
11420editors.")
e2227b6a
EF
11421 (license license:expat)
11422 (properties `((python2-variant . ,(delay python2-isort))))))
44d10b1f
RW
11423
11424(define-public python2-isort
e2227b6a
EF
11425 (let ((base (package-with-python2
11426 (strip-python2-variant python-isort))))
11427 (package (inherit base)
11428 (native-inputs
11429 `(("python2-futures" ,python2-futures)
11430 ,@(package-native-inputs base))))))
44d10b1f
RW
11431
11432(define-public python2-backports-functools-lru-cache
11433 (package
11434 (name "python2-backports-functools-lru-cache")
11435 (version "1.5")
11436 (source
11437 (origin
11438 (method url-fetch)
11439 ;; only the pypi tarballs contain the necessary metadata
11440 (uri (pypi-uri "backports.functools_lru_cache" version))
11441 (sha256
11442 (base32
11443 "06jgv8gib4fhky0p5cmxdghvsgjyzcdgk48k8pxb1ccf11znk64x"))))
11444 (build-system python-build-system)
11445 (native-inputs
11446 `(("python2-setuptools-scm" ,python2-setuptools-scm)))
11447 (arguments
11448 `(#:python ,python-2))
11449 (home-page "https://github.com/jaraco/backports.functools_lru_cache")
11450 (synopsis "Backport of functools.lru_cache from Python 3.3")
11451 (description "@code{python2-backports-functools-lru-cache} is a backport
11452of @code{functools.lru_cache} from python 3.3.")
11453 (license license:expat)))
11454
11455(define-public python-configparser
11456 (package
11457 (name "python-configparser")
11458 (version "3.5.0")
11459 (source
11460 (origin
11461 (method url-fetch)
11462 (uri (string-append
11463 "https://bitbucket.org/ambv/configparser/get/"
11464 version ".tar.bz2"))
11465 (file-name (string-append name "-" version ".tar.gz"))
11466 (sha256
11467 (base32
11468 "0waq40as14abwzbb321hfz4vr1fi363nscy32ga14qvfygrg96wa"))))
11469 (build-system python-build-system)
11470 (home-page "http://docs.python.org/py3k/library/configparser.html")
11471 (synopsis "Backport of configparser from python 3.5")
11472 (description "@code{python-configparser} is a backport of
11473@code{configparser} from Python 3.5 so that it can be used directly
11474in other versions.")
11475 (license license:expat)))
11476
11477(define-public python2-configparser
11478 (package-with-python2 python-configparser))
11479
11480(define-public python-mando
11481 (package
11482 (name "python-mando")
11483 (version "0.6.4")
11484 (source (origin
11485 (method url-fetch)
11486 (uri (pypi-uri "mando" version))
11487 (sha256
11488 (base32
11489 "0q6rl085q1hw1wic52pqfndr0x3nirbxnhqj9akdm5zhq2fv3zkr"))))
11490 (build-system python-build-system)
11491 (propagated-inputs
11492 `(("python-rst2ansi" ,python-rst2ansi)
11493 ("python-six" ,python-six)))
11494 (native-inputs
11495 `(("python-pytest" ,python-pytest)))
11496 (home-page "https://mando.readthedocs.org/")
11497 (synopsis
11498 "Wrapper around argparse, allowing creation of complete CLI applications")
11499 (description
11500 "This package is a wrapper around argparse, allowing you to write complete CLI
11501applications in seconds while maintaining all the flexibility.")
11502 (license license:expat)))
11503
11504(define-public python2-mando
11505 (package-with-python2 python-mando))
11506
11507(define-public python-fudge
11508 (package
11509 (name "python-fudge")
11510 ;; 0.9.6 is the latest version suitable for testing the "fabric" Python 2
11511 ;; package, which is currently the only use of this package.
11512 (version "0.9.6")
11513 (source
11514 (origin
11515 (method url-fetch)
11516 (uri (pypi-uri "fudge" version))
11517 (sha256
11518 (base32
11519 "185ia3vr3qk4f2s1a9hdxb8ci4qc0x0xidrad96pywg8j930qs9l"))))
11520 (build-system python-build-system)
11521 (arguments
11522 `(#:tests? #f)) ;XXX: Tests require the NoseJS Python package.
11523 (home-page "https://github.com/fudge-py/fudge")
11524 (synopsis "Replace real objects with fakes/mocks/stubs while testing")
11525 (description
11526 "Fudge is a Python module for using fake objects (mocks and stubs) to
11527test real ones.
11528
11529In readable Python code, you declare the methods available on your fake object
11530and how they should be called. Then you inject that into your application and
11531start testing. This declarative approach means you don’t have to record and
11532playback actions and you don’t have to inspect your fakes after running code.
11533If the fake object was used incorrectly then you’ll see an informative
11534exception message with a traceback that points to the culprit.")
11535 (license license:expat)))
11536
11537(define-public python2-fudge
11538 (package-with-python2 python-fudge))
11539
11540(define-public python-mwclient
11541 (package
11542 (name "python-mwclient")
11543 (version "0.8.4")
11544 (source
11545 (origin
11546 (method url-fetch)
11547 ;; The PyPI version wouldn't contain tests.
11548 (uri (string-append "https://github.com/mwclient/mwclient/archive/"
11549 "v" version ".tar.gz"))
11550 (file-name (string-append name "-" version ".tar.gz"))
11551 (sha256
11552 (base32
11553 "1jj0yhilkjir00719fc7w133x7hdyhkxhk6xblla4asig45klsfv"))))
11554 (build-system python-build-system)
11555 (propagated-inputs
11556 `(("python-requests" ,python-requests)
11557 ("python-requests-oauthlib"
11558 ,python-requests-oauthlib)
11559 ("python-six" ,python-six)))
11560 (native-inputs
11561 `(("python-mock" ,python-mock)
11562 ("python-pytest" ,python-pytest)
11563 ("python-pytest-pep8" ,python-pytest-pep8)
11564 ("python-pytest-cache" ,python-pytest-cache)
11565 ("python-pytest-cov" ,python-pytest-cov)
11566 ("python-responses" ,python-responses)))
11567 (home-page "https://github.com/btongminh/mwclient")
11568 (synopsis "MediaWiki API client")
11569 (description "This package provides a MediaWiki API client.")
11570 (license license:expat)))
11571
11572(define-public python2-mwclient
11573 (package-with-python2 python-mwclient))
11574
11575(define-public python-utils
11576 (package
11577 (name "python-utils")
11578 (version "2.1.0")
11579 (source (origin
11580 (method url-fetch)
11581 (uri (pypi-uri "python-utils" version))
11582 (sha256
11583 (base32
11584 "1mcsy6q5am4ya72rgkpb6kax6vv7c93cfkkas89xnpa4sj9zf28p"))))
11585 (build-system python-build-system)
11586 (native-inputs
11587 `(("pytest-runner" ,python-pytest-runner)
11588 ("pytest" ,python-pytest)
11589 ("six" ,python-six)))
11590 (home-page "https://github.com/WoLpH/python-utils")
11591 (synopsis "Convenient utilities not included with the standard Python install")
11592 (description
11593 "Python Utils is a collection of small Python functions and classes which
11594make common patterns shorter and easier.")
11595 (license license:bsd-2)))
11596
11597(define-public python2-utils
11598 (package-with-python2 python-utils))
11599
11600(define-public python-sphinx-me
11601 (package
11602 (name "python-sphinx-me")
11603 (version "0.3")
11604 (source
11605 (origin
11606 (method url-fetch)
11607 (uri (pypi-uri "sphinx-me" version))
11608 (sha256
11609 (base32
11610 "06jzgp213zihnvpcy2y5jy3ykid3apc2ncp2pg6a2g05lhiziglq"))))
11611 (build-system python-build-system)
11612 (home-page "https://github.com/stephenmcd/sphinx-me")
11613 (synopsis "Create a Sphinx documentation shell")
11614 (description
11615 "Create a Sphinx documentation shell for your project and include the
11616README file as the documentation index. It handles extracting the required
11617meta data such as the project name, author and version from your project for
11618use in your Sphinx docs.")
11619 (license license:bsd-2)))
11620
11621(define-public python2-sphinx-me
11622 (package-with-python2 python-sphinx-me))
11623
11624(define-public python-diff-match-patch
11625 (package
11626 (name "python-diff-match-patch")
11627 (version "20121119")
11628 (source
11629 (origin
11630 (method url-fetch)
11631 (uri (pypi-uri "diff-match-patch" version))
11632 (sha256
11633 (base32
11634 "0k1f3v8nbidcmmrk65m7h8v41jqi37653za9fcs96y7jzc8mdflx"))))
11635 (build-system python-build-system)
11636 (home-page "https://code.google.com/p/google-diff-match-patch")
11637 (synopsis "Synchronize plain text")
11638 (description "Diff Match and Patch libraries offer robust algorithms to
11639perform the operations required for synchronizing plain text.")
11640 (license license:asl2.0)))
11641
11642(define-public python2-diff-match-patch
11643 (package-with-python2 python-diff-match-patch))
11644
11645(define-public python-dirsync
11646 (package
11647 (name "python-dirsync")
11648 (version "2.2.3")
11649 (source
11650 (origin
11651 (method url-fetch)
11652 (uri (pypi-uri "dirsync" version))
11653 (sha256
11654 (base32
11655 "1r40fkanksagcszf1ag85mdr8w7rgc7196n6s1qlsk2abw6i7v0z"))))
11656 (build-system python-build-system)
11657 (propagated-inputs
11658 `(("six" ,python-six)))
11659 (home-page "https://bitbucket.org/tkhyn/dirsync")
11660 (synopsis "Advanced directory tree synchronisation tool")
11661 (description "Advanced directory tree synchronisation tool.")
11662 (license license:expat)))
11663
11664(define-public python2-dirsync
11665 (package-with-python2 python-dirsync))
11666
11667(define-public python-levenshtein
11668 (package
11669 (name "python-levenshtein")
11670 (version "0.12.0")
11671 (source
11672 (origin
11673 (method url-fetch)
11674 (uri (pypi-uri "python-Levenshtein" version))
11675 (sha256
11676 (base32
11677 "1c9ybqcja31nghfcc8xxbbz9h60s9qi12b9hr4jyl69xbvg12fh3"))))
11678 (build-system python-build-system)
11679 (home-page "https://github.com/ztane/python-Levenshtein")
11680 (synopsis "Fast computation of Levenshtein distance and string similarity")
11681 (description
11682 "The Levenshtein Python C extension module contains functions for fast computation of
11683@enumerate
11684@item Levenshtein (edit) distance, and edit operations
11685@item string similarity
11686@item approximate median strings, and generally string averaging
11687@item string sequence and set similarity
11688@end enumerate
11689It supports both normal and Unicode strings.")
11690 (license license:gpl2+)))
11691
11692(define-public python2-levenshtein
11693 (package-with-python2 python-levenshtein))
11694
11695(define-public python-scandir
11696 (package
11697 (name "python-scandir")
11698 (version "1.9.0")
11699 (source
11700 (origin
11701 (method url-fetch)
11702 (uri (pypi-uri "scandir" version))
11703 (sha256
11704 (base32 "0r3hvf1a9jm1rkqgx40gxkmccknkaiqjavs8lccgq9s8khh5x5s4"))))
11705 (build-system python-build-system)
11706 (arguments
11707 `(#:phases (modify-phases %standard-phases
11708 (replace 'check
11709 (lambda _
11710 (invoke "python" "test/run_tests.py"))))))
11711 (home-page "https://github.com/benhoyt/scandir")
11712 (synopsis "Directory iteration function")
11713 (description
11714 "Directory iteration function like os.listdir(), except that instead of
11715returning a list of bare filenames, it yields DirEntry objects that include
11716file type and stat information along with the name. Using scandir() increases
11717the speed of os.walk() by 2-20 times (depending on the platform and file
11718system) by avoiding unnecessary calls to os.stat() in most cases.
11719
11720This package is part of the Python standard library since version 3.5.")
11721 (license license:bsd-3)))
11722
11723(define-public python2-scandir
11724 (package-with-python2 python-scandir))
11725
11726(define-public python2-stemming
11727 (package
11728 (name "python2-stemming")
11729 (version "1.0.1")
11730 (source
11731 (origin
11732 (method url-fetch)
11733 (uri (pypi-uri "stemming" version))
11734 (sha256
11735 (base32 "0ldwa24gnnxhniv0fhygkpc2mwgd93q10ag8rvzayv6hw418frsr"))))
11736 (build-system python-build-system)
11737 (arguments
11738 `(#:python ,python-2))
11739 (home-page "https://bitbucket.org/mchaput/stemming/overview")
11740 (synopsis "Python implementations of various stemming algorithms")
11741 (description
11742 "Python implementations of the Porter, Porter2, Paice-Husk, and Lovins
11743stemming algorithms for English. These implementations are straightforward and
11744efficient, unlike some Python versions of the same algorithms available on the
11745Web. This package is an extraction of the stemming code included in the Whoosh
11746search engine.")
11747 (license license:public-domain)))
11748
11749(define-public python-factory-boy
11750 (package
11751 (name "python-factory-boy")
11752 (version "2.8.1")
11753 (source
11754 (origin
11755 (method url-fetch)
11756 (uri (pypi-uri "factory_boy" version))
11757 (sha256
11758 (base32 "1fvin6san5xsjh2c4y18caj2lnmwxlylyqm8mh1yc6rp38wlwr56"))))
11759 (build-system python-build-system)
11760 (arguments
11761 ;; Tests are not included in the tarball.
11762 `(#:tests? #f))
11763 (propagated-inputs
11764 `(("faker" ,python-faker)))
11765 (home-page "https://github.com/benhoyt/scandir")
11766 (synopsis "Versatile test fixtures replacement")
11767 (description
11768 "Factory_boy is a fixtures replacement based on thoughtbot’s factory_girl.
11769
11770As a fixtures replacement tool, it aims to replace static, hard to maintain
11771fixtures with easy-to-use factories for complex object.
11772
11773Instead of building an exhaustive test setup with every possible combination
11774of corner cases, factory_boy allows you to use objects customized for the
11775current test, while only declaring the test-specific fields")
11776 (license license:expat)))
11777
11778(define-public python2-factory-boy
11779 (package-with-python2 python-factory-boy))
11780
11781(define-public python-translate-toolkit
11782 (package
11783 (name "python-translate-toolkit")
11784 (version "2.1.0")
11785 (source
11786 (origin
11787 (method url-fetch)
11788 (uri (pypi-uri "translate-toolkit" version ".tar.bz2"))
11789 (sha256
11790 (base32 "1vlkwrg83vb17jc36pmwh2b7jphwf390lz0jw8hakcg16qhwypvq"))))
11791 (build-system python-build-system)
11792 (native-inputs
11793 `(("python-pytest" ,python-pytest)
11794 ("python-sphinx" ,python-sphinx)))
11795 (propagated-inputs
11796 `(("python-babel" ,python-babel)
11797 ("python-beautifulsoup4" ,python-beautifulsoup4)
11798 ("python-chardet" ,python-chardet)
11799 ("python-diff-match-patch" ,python-diff-match-patch)
11800 ("python-levenshtein" ,python-levenshtein)
11801 ("python-lxml" ,python-lxml)
11802 ("python-six" ,python-six)
11803 ("python-vobject" ,python-vobject)
11804 ("python-pyyaml" ,python-pyyaml)))
11805 (arguments
11806 ;; TODO: tests are not run, because they end with
11807 ;; TypeError: parse() missing 2 required positional arguments: 'tree' and
11808 ;; 'parse_funcs'
11809 ;; during test setup.
11810 `(#:tests? #f))
11811 (home-page "http://toolkit.translatehouse.org")
11812 (synopsis "Tools and API for translation and localization engineering")
11813 (description
11814 "Tools and API for translation and localization engineering. It contains
11815several utilities, as well as an API for building localization tools.")
11816 (license license:gpl2+)))
11817
11818(define-public python2-translate-toolkit
11819 (package-with-python2 python-translate-toolkit))
11820
11821(define-public python-packaging
11822 (package
11823 (name "python-packaging")
11824 (version "18.0")
11825 (source
11826 (origin
11827 (method url-fetch)
11828 (uri (pypi-uri "packaging" version))
11829 (sha256
11830 (base32
11831 "01wq9c53ix5rz6qg2c98gy8n4ff768rmanifm8m5jpjiaizj51h8"))))
11832 (build-system python-build-system)
11833 (arguments
11834 `(#:phases (modify-phases %standard-phases
11835 (replace 'check
11836 (lambda _ (invoke "py.test" "-vv"))))))
11837 (native-inputs
11838 `(("python-pretend" ,python-pretend)
11839 ("python-pytest" ,python-pytest)))
11840 (propagated-inputs
11841 `(("python-pyparsing" ,python-pyparsing)
11842 ("python-six" ,python-six)))
11843 (home-page "https://github.com/pypa/packaging")
11844 (synopsis "Core utilities for Python packages")
11845 (description "Packaging is a Python module for dealing with Python packages.
11846It offers an interface for working with package versions, names, and dependency
11847information.")
11848 ;; From 'LICENSE': This software is made available under the terms of
11849 ;; *either* of the licenses found in LICENSE.APACHE or LICENSE.BSD.
11850 ;; Contributions to this software is made under the terms of *both* these
11851 ;; licenses.
11852 (license (list license:asl2.0 license:bsd-2))))
11853
11854(define-public python2-packaging
11855 (package-with-python2 python-packaging))
11856
11857(define-public python-relatorio
11858 (package
11859 (name "python-relatorio")
11860 (version "0.8.0")
11861 (source
11862 (origin
11863 (method url-fetch)
11864 (uri (pypi-uri "relatorio" version))
11865 (sha256
11866 (base32
11867 "1na6hlhz1awi1hbjg1gyclq0khz42iz90wvdjw7mmj655788bpxx"))))
11868 (build-system python-build-system)
11869 (propagated-inputs
11870 `(("python-lxml" ,python-lxml)
11871 ("python-genshi" ,python-genshi)))
11872 (native-inputs
11873 `(("python-magic" ,python-magic)))
11874 (home-page "https://relatorio.tryton.org/")
11875 (synopsis "Templating library able to output ODT and PDF files")
11876 (description "Relatorio is a templating library which provides a way to
11877easily output ODT, ODS, PNG, SVG and several other kinds of files. Support
11878for more filetypes can be easily added by creating plugins for them.")
11879 (license license:gpl3+)))
11880
11881(define-public python2-relatorio
11882 (package-with-python2 python-relatorio))
11883
11884(define-public python-radon
11885 (package
11886 (name "python-radon")
11887 (version "2.2.0")
11888 (source
11889 (origin
11890 (method url-fetch)
11891 (uri (pypi-uri "radon" version))
11892 (sha256
11893 (base32
11894 "07gq5hq4nrffxnlnksws9hrx7fd001gam63j62i82gyfr23gvdym"))))
11895 (build-system python-build-system)
11896 (arguments
11897 `(#:phases (modify-phases %standard-phases
11898 (replace 'check
11899 (lambda _
11900 (invoke "python" "radon/tests/run.py"))))))
11901 (propagated-inputs
11902 `(("python-colorama" ,python-colorama)
11903 ("python-flake8-polyfill" ,python-flake8-polyfill)
11904 ("python-mando" ,python-mando)))
11905 (native-inputs
11906 `(("python-pytest" ,python-pytest)
11907 ("python-pytest-mock" ,python-pytest-mock)))
11908 (home-page "https://radon.readthedocs.org/")
11909 (synopsis "Code Metrics in Python")
11910 (description "Radon is a Python tool which computes various code metrics.
11911Supported metrics are:
11912@itemize @bullet
11913@item raw metrics: SLOC, comment lines, blank lines, &c.
11914@item Cyclomatic Complexity (i.e. McCabe’s Complexity)
11915@item Halstead metrics (all of them)
11916@item the Maintainability Index (a Visual Studio metric)
11917@end itemize")
11918 (license license:expat)))
11919
11920(define-public python2-radon
11921 (package-with-python2 python-radon))
11922
11923(define-public python-sure
11924 (package
11925 (name "python-sure")
11926 (version "1.4.11")
11927 (source
11928 (origin
11929 (method url-fetch)
11930 (uri (pypi-uri "sure" version))
11931 (sha256
11932 (base32
11933 "1and0drq8w9iplsic22n2h7hkpyq03a1mbqk4sgcdqhqzdqm539w"))))
11934 (build-system python-build-system)
11935 (propagated-inputs
11936 `(("python-mock" ,python-mock)
11937 ("python-six" ,python-six)))
11938 (native-inputs
11939 `(("python-nose" ,python-nose)))
11940 (home-page "https://github.com/gabrielfalcao/sure")
11941 (synopsis "Automated testing library in python for python")
11942 (description
11943 "Sure is a python library that leverages a DSL for writing assertions.
11944Sure is heavily inspired by @code{RSpec Expectations} and @code{should.js}.")
11945 (license license:gpl3+)))
11946
11947(define-public python2-sure
11948 (package-with-python2 python-sure))
11949
11950(define-public python2-couleur
11951 ;; This package does not seem to support python3 at all, hence,
11952 ;; only the python2 variant definition is provided.
11953 (package
11954 (name "python2-couleur")
11955 (version "0.6.2")
11956 (source
11957 (origin
11958 (method url-fetch)
11959 (uri (pypi-uri "couleur" version))
11960 (sha256
11961 (base32
11962 "1qqaxyqz74wvid0cr119dhcwz0h0if5b5by44zl49pd5z65v58k1"))))
11963 (build-system python-build-system)
11964 (arguments
11965 `(#:python ,python-2))
11966 (home-page "https://github.com/gabrielfalcao/couleur")
11967 (synopsis
11968 "ANSI terminal tool for python, colored shell and other handy fancy features")
11969 (description
11970 "@code{Couleur} provides python programs a way to use the ANSI features in a unix
11971terminal such as coloured output in the shell, overwriting output, indentation, etc.")
11972 ;; README.md says ASL2.0, but all source code headers are LGPL3+.
11973 ;; https://github.com/gabrielfalcao/couleur/issues/11
11974 (license license:lgpl3+)))
11975
11976(define-public python-misaka
11977 (package
11978 (name "python-misaka")
11979 (version "2.1.0")
11980 (source
11981 (origin
11982 (method url-fetch)
11983 (uri (pypi-uri "misaka" version))
11984 (sha256
11985 (base32
11986 "1yqrq3a5rracirmvk52n28nn6ckdaz897gnigv89a9gmyn87sqw7"))))
11987 (build-system python-build-system)
11988 (arguments
11989 `(;; Line 37 of setup.py calls self.run_command('develop')
11990 ;; in the 'check' phase. This command seems to be trying
11991 ;; to write to
11992 ;; /gnu/store/...-python-<version>/lib/python<version>/site-packages/
11993 ;; for which it does not have the permission to write.
11994 #:tests? #f))
11995 (propagated-inputs
11996 `(("python-cffi" ,python-cffi)))
11997 (home-page "https://github.com/FSX/misaka")
11998 (synopsis "Python binding for Hoedown")
11999 (description
12000 "@code{Misaka} is a CFFI-based binding for @code{Hoedown}, a fast markdown processing
12001library written in C. It features a fast HTML renderer and functionality to make custom
12002renderers (e.g. man pages or LaTeX).")
12003 (license license:expat)))
12004
12005(define-public python2-misaka
12006 (package-with-python2 python-misaka))
12007
12008(define-public python2-steadymark
12009 ;; This is forced into being a python2 only variant
12010 ;; due to its dependence on couleur that has no support
12011 ;; for python3
12012 (package
12013 (name "python2-steadymark")
12014 (version "0.7.3")
12015 (source
12016 (origin
12017 (method url-fetch)
12018 (uri (pypi-uri "steadymark" version))
12019 (sha256
12020 (base32
12021 "1640i9g8dycql3cc8j0bky0jkzj0q39blfbp4lsgpkprkfgcdk8v"))))
12022 (build-system python-build-system)
12023 (native-inputs
12024 `(("python-couleur" ,python2-couleur)
12025 ("python-sure" ,python2-sure)
12026 ("python-misaka" ,python2-misaka)))
12027 (arguments
12028 `(#:python ,python-2
12029 #:phases
12030 (modify-phases %standard-phases
12031 (add-before 'build 'patch-setup-py
12032 (lambda _
12033 ;; Update requirements from dependency==version
12034 ;; to dependency>=version
12035 (substitute* "setup.py"
12036 (("==") ">="))
12037 #t)))))
12038 (home-page "https://github.com/gabrielfalcao/steadymark")
12039 (synopsis "Markdown-based test runner for python")
12040 (description
12041 "@code{Steadymark} allows documentation to be written in github-flavoured
12042markdown. The documentation may contain snippets of code surrounded by python
12043code blocks and @code{Steadymark} will find these snippets and run them, making
12044sure that there are no old malfunctional examples in the documentation examples.")
12045 (license license:expat)))
12046
12047(define-public python-jsonpointer
12048 (package
12049 (name "python-jsonpointer")
12050 (version "1.10")
12051 (source
12052 (origin
12053 (method url-fetch)
12054 (uri (pypi-uri "jsonpointer" version))
12055 (sha256
12056 (base32
12057 "1cg0gvgqjysydv6p45v4jywg1jb3v48c7m3cbpi57zgf6nndr9cz"))))
12058 (build-system python-build-system)
12059 (home-page "https://github.com/stefankoegl/python-json-pointer")
12060 (synopsis "Identify specific nodes in a JSON document")
12061 (description "@code{jsonpointer} allows you to access specific nodes
12062by path in a JSON document (see RFC 6901).")
12063 (license license:bsd-3)))
12064
12065(define-public python2-jsonpointer
12066 (package-with-python2 python-jsonpointer))
12067
12068(define-public python-jsonpatch
12069 (package
12070 (name "python-jsonpatch")
12071 (version "1.16")
12072 (source
12073 (origin
12074 (method url-fetch)
12075 ;; pypi version lacks tests.js
12076 (uri (string-append "https://github.com/stefankoegl/python-json-patch/"
12077 "archive/v" version ".tar.gz"))
12078 (file-name (string-append name "-" version ".tar.gz"))
12079 (sha256
12080 (base32
12081 "085ykisl8v7mv9h7hvhdy3l2fjzs4214gx32r5k6nx4f76hbv6y5"))))
12082 (build-system python-build-system)
12083 (native-inputs
12084 `(("python-jsonpointer" ,python-jsonpointer)))
12085 (home-page "https://github.com/stefankoegl/python-json-patch")
12086 (synopsis "Applying JSON Patches in Python 2.6+ and 3.x")
12087 (description "@code{jsonpatch} is a library and program that allows
12088applying JSON Patches according to RFC 6902.")
12089 (license license:bsd-3)))
12090
12091(define-public python2-jsonpatch
12092 (package-with-python2 python-jsonpatch))
12093
12094(define-public python-jsonpatch-0.4
12095 (package (inherit python-jsonpatch)
12096 (name "python-jsonpatch")
12097 (version "0.4")
12098 (source
12099 (origin
12100 (method url-fetch)
12101 (uri (string-append "https://github.com/stefankoegl/python-json-patch/"
12102 "archive/v" version ".tar.gz"))
12103 (file-name (string-append name "-" version ".tar.gz"))
12104 (sha256
12105 (base32
12106 "0j0cd9z9zyp8kppp464jxrfgrnbgkzl1yi10i5gsv8yz6d95929d"))))))
12107
12108(define-public python2-jsonpatch-0.4
12109 (package-with-python2 python-jsonpatch-0.4))
12110
12111(define-public python-rfc3986
12112 (package
12113 (name "python-rfc3986")
12114 (version "1.1.0")
12115 (source (origin
12116 (method url-fetch)
12117 (uri (pypi-uri "rfc3986" version))
12118 (sha256
12119 (base32
12120 "06wlmysw83f75ff84zr1yr6n0shvc2xn1n1sb4iwzqap9hf5fn44"))))
12121 (build-system python-build-system)
12122 (arguments
12123 `(#:modules ((guix build utils)
12124 (guix build python-build-system)
12125 (ice-9 ftw)
12126 (srfi srfi-1)
12127 (srfi srfi-26))
12128 #:phases
12129 (modify-phases %standard-phases
12130 (replace 'check
12131 (lambda _
12132 (let ((cwd (getcwd)))
12133 (setenv "PYTHONPATH"
12134 (string-append cwd "/build/"
12135 (find (cut string-prefix? "lib" <>)
12136 (scandir (string-append cwd "/build")))
12137 ":"
12138 (getenv "PYTHONPATH")))
12139 (invoke "pytest" "-v")))))))
12140 (native-inputs
12141 `(("python-pytest" ,python-pytest)))
12142 (home-page "https://rfc3986.readthedocs.io/")
12143 (synopsis "Parse and validate URI references")
12144 (description
12145 "@code{rfc3986} is a Python implementation of RFC@tie{}3986 including
12146validation and authority parsing. This module also supports RFC@tie{}6874
12147which adds support for zone identifiers to IPv6 addresses.")
12148 (license license:asl2.0)))
12149
12150(define-public python2-rfc3986
12151 (package-with-python2 python-rfc3986))
12152
12153(define-public python-rfc3987
12154 (package
12155 (name "python-rfc3987")
12156 (version "1.3.7")
12157 (source
12158 (origin
12159 (method url-fetch)
12160 (uri (pypi-uri "rfc3987" version))
12161 (sha256
12162 (base32
12163 "192pclzs2y0yaywqkrlvd0x73740q310kvqvm6jldhi619mq59wi"))))
12164 (build-system python-build-system)
12165 (home-page "https://pypi.python.org/pypi/rfc3987")
12166 (synopsis "Parsing and validation of URIs (RFC 3986) and IRIs (RFC 3987)")
12167 (description "@code{rfc3987} provides routines for parsing and
12168validation of URIs (see RFC 3986) and IRIs (see RFC 3987).")
12169 (license license:gpl3+)))
12170
12171(define-public python2-rfc3987
12172 (package-with-python2 python-rfc3987))
12173
12174(define-public python-validate-email
12175 (package
12176 (name "python-validate-email")
12177 (version "1.3")
12178 (source
12179 (origin
12180 (method url-fetch)
12181 (uri (pypi-uri "validate_email" version))
12182 (sha256
12183 (base32
12184 "1bxffaf5yz2cph8ki55vdvdypbwkvn2xr1firlcy62vqbzf1jivq"))))
12185 (build-system python-build-system)
12186 (home-page "https://github.com/syrusakbary/validate_email")
12187 (synopsis "Verifies if an email address is valid and really exists")
12188 (description "@code{validate_email} can be used to verify if an email
12189address is valid and really exists.")
12190 (license license:lgpl3+)))
12191
12192(define-public python2-validate-email
12193 (package-with-python2 python-validate-email))
12194
12195(define-public python-flex
12196 (package
12197 (name "python-flex")
12198 (version "6.10.0")
12199 (source
12200 (origin
12201 (method url-fetch)
12202 (uri (pypi-uri "flex" version))
12203 (sha256
12204 (base32
12205 "00pamnwla3khk8nyla7y28dq9jnh69swd7f4jfsl7sn1izs8n8zk"))))
12206 (build-system python-build-system)
12207 (propagated-inputs
12208 `(("python-click" ,python-click)
12209 ("python-iso8601" ,python-iso8601)
12210 ("python-jsonpointer" ,python-jsonpointer)
12211 ("python-pyyaml" ,python-pyyaml)
12212 ("python-requests" ,python-requests)
12213 ("python-rfc3987" ,python-rfc3987)
12214 ("python-six" ,python-six)
12215 ("python-validate-email" ,python-validate-email)))
12216 (home-page "https://github.com/pipermerriam/flex")
12217 (synopsis "Validates Swagger schemata")
12218 (description "@code{flex} can be used to validate Swagger schemata.")
12219 (license license:bsd-3)))
12220
12221(define-public python2-flex
12222 (package-with-python2 python-flex))
12223
12224(define-public python-marshmallow
12225 (package
12226 (name "python-marshmallow")
12227 (version "3.0.0b14")
12228 (source
12229 (origin
12230 (method url-fetch)
12231 (uri (pypi-uri "marshmallow" version))
12232 (sha256
12233 (base32
12234 "1digk3f5cfk7wmlka65mc7bzsd96pbsgcsvp6pimd5b4ff9zb5p3"))))
12235 (build-system python-build-system)
12236 (propagated-inputs
12237 `(("python-dateutil" ,python-dateutil)
12238 ("python-simplejson" ,python-simplejson)))
12239 (native-inputs
12240 `(("python-pytest" ,python-pytest)
12241 ("python-pytz" ,python-pytz)))
12242 (home-page "https://github.com/marshmallow-code/marshmallow")
12243 (synopsis "Convert complex datatypes to and from native
12244Python datatypes.")
12245 (description "@code{marshmallow} provides a library for converting
12246complex datatypes to and from native Python datatypes.")
12247 (license license:expat)))
12248
12249(define-public python2-marshmallow
12250 (package-with-python2 python-marshmallow))
12251
12252(define-public python-apispec
12253 (package
12254 (name "python-apispec")
12255 (version "0.25.3")
12256 (source
12257 (origin
12258 (method url-fetch)
12259 (uri (pypi-uri "apispec" version))
12260 (sha256
12261 (base32
12262 "0kxa8723zbisx10363yh4mmmn4higxrspymbjfz5zq8f644zagm9"))))
12263 (build-system python-build-system)
12264 (propagated-inputs
12265 `(("python-pyyaml" ,python-pyyaml)))
12266 (native-inputs
12267 `(("python-pytest" ,python-pytest)
12268 ("python-flask" ,python-flask)
12269 ("python-marshmallow" ,python-marshmallow)
12270 ("python-tornado" ,python-tornado)
12271 ("python-bottle" ,python-bottle)
12272 ("python-mock" ,python-mock)))
12273 (home-page "https://github.com/marshmallow-code/apispec")
12274 (synopsis "Swagger 2.0 API specification generator")
12275 (description "@code{python-apispec} is a pluggable API specification
12276generator. Currently supports the OpenAPI specification (f.k.a.
12277Swagger 2.0).")
12278 (license license:expat)))
12279
12280(define-public python2-apispec
12281 (package-with-python2 python-apispec))
12282
12283(define-public python-flasgger
12284 (package
12285 (name "python-flasgger")
12286 (version "0.6.3")
12287 (source
12288 (origin
12289 (method url-fetch)
12290 (uri (string-append "https://github.com/rochacbruno/flasgger/archive/"
12291 version ".tar.gz"))
12292 (file-name (string-append name "-" version ".tar.gz"))
12293 (sha256
12294 (base32
12295 "1gqzlm0rb55fdpsy5ipkganlx9cnpi454fqyycr03jm22zql14ay"))))
12296 (build-system python-build-system)
12297 (arguments
12298 `(#:phases
12299 (modify-phases %standard-phases
12300 (replace 'check
12301 (lambda* (#:key inputs outputs #:allow-other-keys)
12302 (substitute* "Makefile"
12303 (("flake8 flasgger --ignore=F403")
12304 "flake8 flasgger --ignore=E731,F403"))
12305 (setenv "PYTHONPATH" (string-append (getcwd)
12306 ":"
12307 (getenv "PYTHONPATH")))
12308 (zero? (system* "py.test")))))))
12309 (propagated-inputs
12310 `(("python-flask" ,python-flask)
12311 ("python-pyyaml" ,python-pyyaml)
12312 ("python-jsonschema" ,python-jsonschema)
12313 ("python-mistune" ,python-mistune)
12314 ("python-six" ,python-six)))
12315 (native-inputs
12316 `(("python-decorator" ,python-decorator)
12317 ("python-flake8" ,python-flake8)
12318 ("python-flask-restful" ,python-flask-restful)
12319 ("python-flex" ,python-flex)
12320 ("python-pytest" ,python-pytest)
12321 ("python-pytest-cov" ,python-pytest-cov)
12322 ("python-marshmallow" ,python-marshmallow)
12323 ("python-apispec" ,python-apispec)))
12324 (home-page "https://github.com/rochacbruno/flasgger/")
12325 (synopsis "Extract Swagger specs from your Flask project")
12326 (description "@code{python-flasgger} allows extracting Swagger specs
12327from your Flask project. It is a fork of Flask-Swagger.")
12328 (license license:expat)))
12329
12330(define-public python2-flasgger
12331 (package-with-python2 python-flasgger))
12332
12333(define-public python-swagger-spec-validator
12334 (package
12335 (name "python-swagger-spec-validator")
12336 (version "2.1.0")
12337 (source
12338 (origin
12339 (method url-fetch)
12340 (uri (pypi-uri "swagger-spec-validator" version))
12341 (sha256
12342 (base32
12343 "13hkpn2lycwr0468yqhjb3kwszqf7hjwlq61w7vdxq1caz31k4nw"))))
12344 (build-system python-build-system)
12345 (propagated-inputs
12346 `(("python-jsonschema" ,python-jsonschema)
12347 ("python-six" ,python-six)))
12348 (home-page
12349 "https://github.com/Yelp/swagger_spec_validator")
12350 (synopsis "Validation of Swagger specifications")
12351 (description "@code{swagger_spec_validator} provides a library for
12352validating Swagger API specifications.")
12353 (license license:asl2.0)))
12354
12355(define-public python2-swagger-spec-validator
12356 (package-with-python2 python-swagger-spec-validator))
12357
12358(define-public python-apache-libcloud
12359 (package
12360 (name "python-apache-libcloud")
12361 (version "2.4.0")
12362 (source
12363 (origin
12364 (method url-fetch)
12365 (uri (pypi-uri "apache-libcloud" version))
12366 (sha256
12367 (base32
12368 "0daj3mkzw79v5zin2r1s2wkrz1hplfc16bwj4ss68i5qjq4l2p0j"))))
12369 (build-system python-build-system)
12370 (arguments
12371 `(#:phases
12372 (modify-phases %standard-phases
12373 (add-after 'unpack 'patch-ssh
12374 (lambda* (#:key inputs #:allow-other-keys)
12375 (substitute* "libcloud/compute/ssh.py"
12376 (("'ssh'") (string-append "'" (assoc-ref inputs "openssh")
12377 "/bin/ssh" "'")))
12378 #t))
12379 (add-after 'unpack 'patch-tests
12380 (lambda _
12381 (substitute* "./libcloud/test/test_file_fixtures.py"
12382 ;; See <https://issues.apache.org/jira/browse/LIBCLOUD-923>.
12383 (("def _ascii") "def _raw_data(self, method, url, body, headers):
12384 return (httplib.OK,
12385 \"1234abcd\",
12386 {\"test\": \"value\"},
12387 httplib.responses[httplib.OK])
12388 def _ascii"))
12389 (substitute* "libcloud/test/compute/test_ssh_client.py"
12390 (("class ShellOutSSHClientTests")
12391 "@unittest.skip(\"Guix container doesn't have ssh service\")
12392class ShellOutSSHClientTests")
12393 ;; See <https://issues.apache.org/jira/browse/LIBCLOUD-924>.
12394 (("'.xf0.x90.x8d.x88'") "b'\\xF0\\x90\\x8D\\x88'")
12395 (("'.xF0', '.x90', '.x8D', '.x88'")
12396 "b'\\xF0', b'\\x90', b'\\x8D', b'\\x88'"))
12397 #t))
12398 (add-before 'check 'copy-secret
12399 (lambda _
12400 (copy-file "libcloud/test/secrets.py-dist"
12401 "libcloud/test/secrets.py")
12402 #t)))))
12403 (inputs
12404 `(("openssh" ,openssh)))
12405 (propagated-inputs
12406 `(("python-paramiko" ,python-paramiko)
12407 ("python-requests" ,python-requests)))
12408 (native-inputs
12409 `(("python-lockfile" ,python-lockfile)
12410 ("python-mock" ,python-mock)
12411 ("python-pytest" ,python-pytest)
12412 ("python-pytest-runner" ,python-pytest-runner)
12413 ("python-requests-mock" ,python-requests-mock)))
12414 (home-page "https://libcloud.apache.org/")
12415 (synopsis "Unified Cloud API")
12416 (description "@code{libcloud} is a Python library for interacting with
12417many of the popular cloud service providers using a unified API.")
12418 (license license:asl2.0)))
12419
12420(define-public python2-apache-libcloud
12421 (package-with-python2 python-apache-libcloud))
12422
12423(define-public python-smmap2
12424 (package
12425 (name "python-smmap2")
12426 (version "2.0.3")
12427 (source
12428 (origin
12429 (method url-fetch)
12430 (uri (pypi-uri "smmap2" version))
12431 (sha256
12432 (base32
12433 "1hvn28p3zvxa98sbi9lrqvv2ps4q284j4jq9a619zw0m7yv0sly7"))))
12434 (build-system python-build-system)
12435 (native-inputs
12436 `(("python-nosexcover" ,python-nosexcover)))
12437 (home-page "https://github.com/Byron/smmap")
12438 (synopsis "Python sliding window memory map manager")
12439 (description "@code{smmap2} is a pure Python implementation of a sliding
12440window memory map manager.")
12441 (license license:bsd-3)))
12442
12443(define-public python2-smmap2
12444 (package-with-python2 python-smmap2))
12445
12446(define-public python-regex
12447 (package
12448 (name "python-regex")
12449 (version "2017.06.07")
12450 (source (origin
12451 (method url-fetch)
12452 (uri (pypi-uri "regex" version))
12453 (sha256
12454 (base32
12455 "06r6b7yigikbj3a72whl85r2b64pj1r0ypmw9yalmkm0wnxq8mz4"))))
12456 (build-system python-build-system)
12457 (home-page "https://bitbucket.org/mrabarnett/mrab-regex")
12458 (synopsis "Alternative regular expression module")
12459 (description "This regular expression implementation is backwards-
12460compatible with the standard @code{re} module, but offers additional
12461functionality like full case-folding for case-insensitive matches in Unicode.")
12462 (license license:psfl)))
12463
12464(define-public python2-regex
12465 (package-with-python2 python-regex))
12466
12467(define-public python2-pyopengl
12468 (package
12469 (name "python2-pyopengl")
12470 (version "3.1.0")
12471 (source
12472 (origin
12473 (method url-fetch)
12474 (uri (pypi-uri "PyOpenGL" version))
12475 (sha256
12476 (base32
12477 "1byxjj6a8rwzhxhjqlc588zdad2qwxdd7vlam2653ylll31waiwv"))))
12478 (arguments
12479 `(#:python ,python-2))
12480 (build-system python-build-system)
12481 (home-page "http://pyopengl.sourceforge.net")
12482 (synopsis "Standard OpenGL bindings for Python")
12483 (description
12484 "PyOpenGL is the most common cross platform Python binding to OpenGL and
12485related APIs. The binding is created using the standard @code{ctypes}
12486library.")
12487 (license license:bsd-3)))
12488
12489(define-public python2-pyopengl-accelerate
12490 (package
12491 (inherit python2-pyopengl)
12492 (name "python2-pyopengl-accelerate")
12493 (version "3.1.0")
12494 (source
12495 (origin
12496 (method url-fetch)
12497 (uri (pypi-uri "PyOpenGL-accelerate" version))
12498 (sha256
12499 (base32
12500 "0464c1ifzk0k92lyndikmvzjgnx1y25r7bkkc8pnxm4kp1q4czwj"))))
12501 (synopsis "Acceleration code for PyOpenGL")
12502 (description
12503 "This is the Cython-coded accelerator module for PyOpenGL.")))
12504
12505(define-public python-rencode
12506 (package
12507 (name "python-rencode")
12508 (version "1.0.5")
12509 (source
12510 (origin
12511 (method url-fetch)
12512 (uri (pypi-uri "rencode" version))
12513 (sha256
12514 (base32
12515 "0mzwdq1is7kyyr32i5k4iz6g5xxdvmiyc132jnc60p9m6lnwjrpv"))))
12516 (build-system python-build-system)
12517 (arguments
12518 `(#:phases
12519 (modify-phases %standard-phases
12520 (add-before 'check 'delete-bogus-test
12521 ;; This test requires /home/aresch/Downloads, which is not provided by
12522 ;; the build environment.
12523 (lambda _
12524 (delete-file "rencode/t.py")
12525 #t)))))
12526 (native-inputs `(("pkg-config" ,pkg-config)
12527 ("python-cython" ,python-cython)))
12528 (home-page "https://github.com/aresch/rencode")
12529 (synopsis "Serialization of heterogeneous data structures")
12530 (description
12531 "The @code{rencode} module is a data structure serialization library,
12532similar to @code{bencode} from the BitTorrent project. For complex,
12533heterogeneous data structures with many small elements, r-encoding stake up
12534significantly less space than b-encodings. This version of rencode is a
12535complete rewrite in Cython to attempt to increase the performance over the
12536pure Python module.")
12537 (license license:bsd-3)))
12538
12539(define-public python2-rencode
12540 (package-with-python2 python-rencode))
12541
12542(define-public python-xenon
12543 (package
12544 (name "python-xenon")
12545 (version "0.5.4")
12546 (source
12547 (origin
12548 (method url-fetch)
12549 (uri (pypi-uri "xenon" version))
12550 (sha256
12551 (base32
12552 "029cbhysg2vr5n4jz8gpg2793f8wkwnqpr1qgv6c1dn685vy31mc"))))
12553 (build-system python-build-system)
12554 (native-inputs
12555 `(("python-pyyaml" ,python-pyyaml)
12556 ("python-radon" ,python-radon)
12557 ("python-requests" ,python-requests)
12558 ("python-flake8" ,python-flake8)
12559 ("python-tox" ,python-tox)))
12560 (arguments
12561 `(#:phases
12562 (modify-phases %standard-phases
12563 (add-before 'build 'patch-test-requirements
12564 (lambda _
12565 ;; Remove httpretty dependency for tests.
12566 (substitute* "setup.py"
12567 (("httpretty") ""))
12568 #t)))))
12569 (home-page "https://xenon.readthedocs.org/")
12570 (synopsis "Monitor code metrics for Python on your CI server")
12571 (description
12572 "Xenon is a monitoring tool based on Radon. It monitors code complexity.
12573Ideally, @code{xenon} is run every time code is committed. Through command
12574line options, various thresholds can be set for the complexity of code. It
12575will fail (i.e. it will exit with a non-zero exit code) when any of these
12576requirements is not met.")
12577 (license license:expat)))
12578
12579(define-public python2-xenon
12580 (package-with-python2 python-xenon))
12581
12582(define-public python-pysocks
12583 (package
12584 (name "python-pysocks")
12585 (version "1.6.8")
12586 (source
12587 (origin
12588 (method url-fetch)
12589 (uri (pypi-uri "PySocks" version))
12590 (sha256
12591 (base32
12592 "0wn6xafwy9c1gamwljw3fyvih5w19qy9xp39zmv8c90ai5ajrr9z"))))
12593 (build-system python-build-system)
12594 (arguments `(#:tests? #f))
12595 (home-page "https://github.com/Anorov/PySocks")
12596 (synopsis "SOCKS client module")
12597 (description "@code{pysocks} is an updated and semi-actively maintained
12598version of @code{SocksiPy} with bug fixes and extra features.")
12599 (license license:bsd-3)))
12600
12601(define-public python2-pysocks
12602 (package-with-python2 python-pysocks))
12603
12604(define-public python-pydiff
12605 (package
12606 (name "python-pydiff")
12607 (version "0.2")
12608 (source
12609 (origin
12610 (method url-fetch)
12611 (uri (pypi-uri "pydiff" version))
12612 (sha256
12613 (base32
12614 "1als83h9w0gab24ipyna6khm390qmpnpkc5jksmdbs2xc8hp2z44"))))
12615 (build-system python-build-system)
12616 (home-page "https://github.com/myint/pydiff")
12617 (synopsis "Library to diff two Python files at the bytecode level")
12618 (description
12619 "@code{pydiff} makes it easy to look for actual code changes while
12620ignoring formatting changes.")
12621 (license license:expat)))
12622
12623(define-public python2-pydiff
12624 (package-with-python2 python-pydiff))
12625
12626(define-public python-tqdm
12627 (package
12628 (name "python-tqdm")
12629 (version "4.19.6")
12630 (source
12631 (origin
12632 (method url-fetch)
12633 (uri (pypi-uri "tqdm" version))
12634 (sha256
12635 (base32
12636 "1pw0ngm0zn9papdmkwipi3yih5c3di6d0w849bdmrraq4d2d9h2y"))))
12637 (build-system python-build-system)
12638 (native-inputs
12639 `(("python-flake8" ,python-flake8)
12640 ("python-nose" ,python-nose)
12641 ("python-coverage" ,python-coverage)))
12642 (home-page "https://github.com/tqdm/tqdm")
12643 (synopsis "Fast, extensible progress meter")
12644 (description
12645 "Make loops show a progress bar on the console by just wrapping any
12646iterable with @code{|tqdm(iterable)|}. Offers many options to define
12647design and layout.")
12648 (license (list license:mpl2.0 license:expat))))
12649
12650(define-public python2-tqdm
12651 (package-with-python2 python-tqdm))
12652
12653(define-public python-pkginfo
12654 (package
12655 (name "python-pkginfo")
12656 (version "1.4.2")
12657 (source
12658 (origin
12659 (method url-fetch)
12660 (uri (pypi-uri "pkginfo" version))
12661 (sha256
12662 (base32
12663 "0x6lm17p1ks031mj6pajyp4rkq74vpqq8qwjb7ikgwmkli1day2q"))))
12664 (build-system python-build-system)
12665 (arguments
12666 ;; The tests are broken upstream.
12667 '(#:tests? #f))
12668 (home-page
12669 "https://code.launchpad.net/~tseaver/pkginfo/trunk")
12670 (synopsis
12671 "Query metadatdata from sdists, bdists, and installed packages")
12672 (description
12673 "API to query the distutils metadata written in @file{PKG-INFO} inside a
12674source distriubtion (an sdist) or a binary distribution (e.g., created by
12675running bdist_egg). It can also query the EGG-INFO directory of an installed
12676distribution, and the *.egg-info stored in a \"development checkout\" (e.g,
12677created by running @code{python setup.py develop}).")
12678 (license license:expat)))
12679
12680(define-public python2-pkginfo
12681 (package-with-python2 python-pkginfo))
12682
12683(define-public python-twine
12684 (package
12685 (name "python-twine")
12686 (version "1.9.1")
12687 (source
12688 (origin
12689 (method url-fetch)
12690 (uri (pypi-uri "twine" version))
12691 (sha256
12692 (base32
12693 "1ay1b6kdq6k4bfbjsvf6ymj41wrgpvinhxndb09355pwhxwmp96a"))))
12694 (build-system python-build-system)
12695 (propagated-inputs
12696 `(("python-tqdm" ,python-tqdm)
12697 ("python-pkginfo" ,python-pkginfo)
12698 ("python-requests" ,python-requests)
12699 ("python-requests-toolbelt" ,python-requests-toolbelt)))
12700 (home-page "https://github.com/pypa/twine")
12701 (synopsis "Collection of utilities for interacting with PyPI")
12702 (description
12703 "@code{twine} currently supports registering projects and uploading
12704distributions. It authenticates the user over HTTPS, allows them to pre-sign
12705their files and supports any packaging format (including wheels).")
12706 (license license:asl2.0)))
12707
12708(define-public python2-twine
12709 (package-with-python2 python-twine))
12710
12711(define-public python-linecache2
12712 (package
12713 (name "python-linecache2")
12714 (version "1.0.0")
12715 (source
12716 (origin
12717 (method url-fetch)
12718 (uri (pypi-uri "linecache2" version))
12719 (sha256
12720 (base32
12721 "0z79g3ds5wk2lvnqw0y2jpakjf32h95bd9zmnvp7dnqhf57gy9jb"))))
12722 (build-system python-build-system)
12723 (arguments
12724 `(;; The tests depend on unittest2, and our version is a bit too old.
12725 #:tests? #f))
12726 (native-inputs
12727 `(("python-pbr" ,python-pbr-minimal)))
12728 (home-page
12729 "https://github.com/testing-cabal/linecache2")
12730 (synopsis "Backports of the linecache module")
12731 (description
12732 "The linecache module allows one to get any line from any file, while
12733attempting to optimize internally, using a cache, the common case where many
12734lines are read from a single file.")
12735 (license license:psfl)))
12736
12737(define-public python2-linecache2
12738 (package-with-python2 python-linecache2))
12739
12740(define-public python-traceback2
12741 (package
12742 (name "python-traceback2")
12743 (version "1.4.0")
12744 (source
12745 (origin
12746 (method url-fetch)
12747 (uri (pypi-uri "traceback2" version))
12748 (sha256
12749 (base32
12750 "0c1h3jas1jp1fdbn9z2mrgn3jj0hw1x3yhnkxp7jw34q15xcdb05"))))
12751 (build-system python-build-system)
12752 (arguments
12753 `(;; python-traceback2 and python-unittest2 depend on one another.
12754 #:tests? #f))
12755 (native-inputs
12756 `(("python-pbr" ,python-pbr-minimal)))
12757 (propagated-inputs
12758 `(("python-linecache2" ,python-linecache2)))
12759 (home-page
12760 "https://github.com/testing-cabal/traceback2")
12761 (synopsis "Backports of the traceback module")
12762 (description
12763 "This module provides a standard interface to extract, format and print
12764stack traces of Python programs. It exactly mimics the behavior of the Python
12765interpreter when it prints a stack trace.")
12766 (license license:psfl)))
12767
12768(define-public python2-traceback2
12769 (package-with-python2 python-traceback2))
12770
12771(define-public python-ratelimiter
12772 (package
12773 (name "python-ratelimiter")
12774 (version "1.2.0")
12775 (source
12776 (origin
12777 (method url-fetch)
12778 (uri (pypi-uri "ratelimiter" version))
12779 (sha256
12780 (base32
12781 "1dhz85mj5bqd2mij84ncs6pz32hgidr79hay4aqfmzaa4rbb497p"))))
12782 (build-system python-build-system)
12783 (arguments
12784 '(#:tests? #f)) ; There are no tests in the pypi archive.
12785 (home-page "https://github.com/RazerM/ratelimiter")
12786 (synopsis "Simple rate limiting object")
12787 (description
12788 "The @code{ratelimiter} module ensures that an operation will not be
12789executed more than a given number of times during a given period.")
12790 (license license:asl2.0)))
12791
12792(define-public python2-ratelimiter
12793 (package-with-python2 python-ratelimiter))
12794
12795(define-public python-dukpy
12796 (package
12797 (name "python-dukpy")
12798 (version "0.3")
12799 (source
12800 (origin
12801 (method url-fetch)
12802 (uri (string-append "https://github.com/kovidgoyal/dukpy/archive/v"
12803 version ".tar.gz"))
12804 (file-name (string-append name "-" version ".tar.gz"))
12805 (sha256
12806 (base32
12807 "0pj39rfwlzivqm5hkrsza7gssg6ggpxlq5ivc8f3h7x5pfgc6y6c"))))
12808 (build-system python-build-system)
12809 (home-page "https://github.com/kovidgoyal/dukpy")
12810 (synopsis "Run JavaScript in python")
12811 (description
12812 "dukpy is a JavaScript runtime environment for Python using the duktape
12813embeddable JavaScript engine.")
12814 ;; Dukpy is licensed under MIT like the embedded duktape library,
12815 ;; with 'errors.c' as GPL3.
12816 (license (list license:expat license:gpl3))))
12817
12818(define-public python2-dukpy
12819 (package-with-python2 python-dukpy))
12820
12821(define-public python-jsonrpclib-pelix
12822 (package
12823 (name "python-jsonrpclib-pelix")
12824 (version "0.3.2")
12825 (source
12826 (origin
12827 (method url-fetch)
12828 (uri (pypi-uri "jsonrpclib-pelix" version))
12829 (sha256
12830 (base32
12831 "0f83z5zi7w32vprhk1dyc94ir1bh4hdd57bjdbwkq9ykng8qilhl"))))
12832 (build-system python-build-system)
12833 (arguments
12834 `(#:tests? #f)) ; no tests in PyPI tarball
12835 (home-page "https://github.com/tcalmant/jsonrpclib/")
12836 (synopsis "JSON-RPC 2.0 client library for Python")
12837 (description
12838 "This library implements the JSON-RPC v2.0
12839specification (backwards-compatible) as a client library for Python. This
12840version is a fork of jsonrpclib by Josh Marshall, usable with Pelix remote
12841services.")
12842 (license license:asl2.0)))
12843
12844(define-public python2-jsonrpclib-pelix
12845 (package-with-python2 python-jsonrpclib-pelix))
12846
12847(define-public python-setuptools-scm-git-archive
12848 (package
12849 (name "python-setuptools-scm-git-archive")
12850 (version "1.0")
12851 (source
12852 (origin
12853 (method url-fetch)
12854 (uri (pypi-uri "setuptools_scm_git_archive" version))
12855 (sha256
12856 (base32
12857 "1nii1sz5jq75ilf18bjnr11l9rz1lvdmyk66bxl7q90qan85yhjj"))))
12858 (build-system python-build-system)
12859 (native-inputs
12860 `(("python-pytest" ,python-pytest)))
12861 (propagated-inputs
12862 `(("python-setuptools-scm" ,python-setuptools-scm)))
12863 (home-page "https://github.com/Changaco/setuptools_scm_git_archive/")
12864 (synopsis "Setuptools_scm plugin for git archives")
12865 (description
12866 "The setuptools_scm_git_archive package is a plugin to
12867setuptools_scm, which supports obtaining versions from git archives that
12868belong to tagged versions.")
12869 (license license:expat)))
12870
12871(define-public python2-setuptools-scm-git-archive
12872 (package-with-python2 python-setuptools-scm-git-archive))
12873
12874(define-public python-pyclipper
12875 (package
12876 (name "python-pyclipper")
12877 (version "1.1.0.post1")
12878 (source
12879 (origin
12880 (method url-fetch)
12881 (uri (pypi-uri "pyclipper" version ".zip"))
12882 (sha256
12883 (base32
12884 "0ldbkbnx94an4zzrwb1sxmg6k0jgk4cwmvcdyy8y5k1zslc612wa"))
12885 (modules '((guix build utils)))
12886 (snippet
12887 '(begin
12888 ;; This file is generated by Cython.
12889 (delete-file "pyclipper/pyclipper.cpp") #t))))
12890 (build-system python-build-system)
12891 (arguments
12892 `(#:phases
12893 (modify-phases %standard-phases
12894 (add-before 'build 'cythonize-sources
12895 (lambda _
12896 (with-directory-excursion "pyclipper"
12897 (invoke "cython" "--cplus" "pyclipper.pyx")))))))
12898 (propagated-inputs
12899 `(("python-setuptools-scm-git-archive" ,python-setuptools-scm-git-archive)))
12900 (native-inputs
12901 `(("python-cython" ,python-cython)
12902 ("python-pytest" ,python-pytest)
12903 ("python-pytest-runner" ,python-pytest-runner)
12904 ("python-unittest2" ,python-unittest2)
12905 ("unzip" ,unzip)))
12906 (home-page "https://github.com/greginvm/pyclipper")
12907 (synopsis "Wrapper for Angus Johnson's Clipper library")
12908 (description
12909 "Pyclipper is a Cython wrapper for the C++ translation of the
12910Angus Johnson's polygon clipping Clipper library (ver. 6.4.2).")
12911 (license license:expat)))
12912
12913(define-public python2-pyclipper
12914 (package-with-python2 python-pyclipper))
12915
12916(define-public python2-booleanoperations
12917 (package
12918 (name "python2-booleanoperations")
12919 (version "0.7.1")
12920 (source
12921 (origin
12922 (method url-fetch)
12923 (uri (pypi-uri "booleanOperations" version ".zip"))
12924 (sha256
12925 (base32
12926 "1hw42fazdpvsn77glx96hwsj9l17mvx37sc5707s08y5w6fx16mn"))))
12927 (build-system python-build-system)
12928 (arguments
12929 `(#:python ,python-2))
12930 (native-inputs
12931 `(("unzip" ,unzip)
12932 ("python2-pytest" ,python2-pytest)
12933 ("python2-pytest-runner" ,python2-pytest-runner)))
12934 (propagated-inputs
12935 `(("python-fonttools" ,python2-fonttools)
12936 ("python-pyclipper" ,python2-pyclipper)
12937 ("python-ufolib" ,python2-ufolib)))
12938 (home-page "https://github.com/typemytype/booleanOperations")
12939 (synopsis "Boolean operations on paths")
12940 (description
12941 "BooleanOperations provides a Python library that enables
12942boolean operations on paths.")
12943 (license license:expat)))
12944
12945(define-public python-tempdir
12946 (package
12947 (name "python-tempdir")
12948 (version "0.7.1")
12949 (source
12950 (origin
12951 (method url-fetch)
12952 (uri (pypi-uri "tempdir" version))
12953 (sha256
12954 (base32
12955 "13msyyxqbicr111a294x7fsqbkl6a31fyrqflx3q7k547gnq15k8"))))
12956 (build-system python-build-system)
12957 (home-page "https://pypi.org/project/tempdir/")
12958 (arguments
12959 ;; the package has no tests
12960 '(#:tests? #f))
12961 (synopsis "Python library for managing temporary directories")
12962 (description
12963 "This library manages temporary directories that are automatically
12964deleted with all their contents when they are no longer needed. It is
12965particularly convenient for use in tests.")
12966 (license license:expat)))
12967
12968(define-public python2-tempdir
12969 (package-with-python2 python-tempdir))
12970
12971(define-public python-activepapers
12972 (package
12973 (name "python-activepapers")
12974 (version "0.2.2")
12975 (source
12976 (origin
12977 (method url-fetch)
12978 (uri (pypi-uri "ActivePapers.Py" version))
12979 (sha256
12980 (base32
12981 "12wkhjh90ffipjzv10swndp2xv9hd7xrxvg6v0n4n3i411pj4xb8"))))
12982 (build-system python-build-system)
12983 (arguments
12984 `(#:modules ((ice-9 ftw)
12985 (srfi srfi-1)
12986 (guix build utils)
12987 (guix build python-build-system))
12988
12989 #:phases
12990 (modify-phases %standard-phases
12991 (add-after 'unpack 'delete-python2-code
12992 (lambda _
12993 (for-each delete-file
12994 '("lib/activepapers/builtins2.py"
12995 "lib/activepapers/standardlib2.py"
12996 "lib/activepapers/utility2.py"))))
12997 (replace 'check
12998 (lambda _
12999 ;; Deactivate the test cases that download files
13000 (setenv "NO_NETWORK_ACCESS" "1")
13001 ;; For some strange reason, some tests fail if nosetests runs all
13002 ;; test modules in a single execution. They pass if each test
13003 ;; module is run individually.
13004 (for-each (lambda (filename)
13005 (invoke "nosetests"
13006 (string-append "tests/" filename)))
13007 (scandir "tests"
13008 (lambda (filename)
13009 (string-suffix? ".py" filename)))))))))
13010 (native-inputs
13011 `(("python-tempdir" ,python-tempdir)
13012 ("python-nose" ,python-nose)))
13013 (propagated-inputs
13014 `(("python-h5py" ,python-h5py)))
13015 (home-page "http://www.activepapers.org/")
13016 (synopsis "Executable papers for scientific computing")
13017 (description
13018 "ActivePapers is a tool for working with executable papers, which
13019combine data, code, and documentation in single-file packages,
13020suitable for publication as supplementary material or on repositories
13021such as figshare or Zenodo.")
13022 (properties `((python2-variant . ,(delay python2-activepapers))))
13023 (license license:bsd-3)))
13024
13025(define-public python2-activepapers
13026 (let ((base (package-with-python2
13027 (strip-python2-variant python-activepapers))))
13028 (package
13029 (inherit base)
13030 (arguments
13031 (substitute-keyword-arguments (package-arguments base)
13032 ((#:phases phases)
13033 `(modify-phases ,phases
13034 (delete 'delete-python2-code)
13035 (add-after 'unpack 'delete-python3-code
13036 (lambda _
13037 (for-each delete-file
13038 '("lib/activepapers/builtins3.py"
13039 "lib/activepapers/standardlib3.py"
13040 "lib/activepapers/utility3.py")))))))))))
13041
13042(define-public python-semver
13043 (package
13044 (name "python-semver")
13045 (version "2.7.9")
13046 (source
13047 (origin
13048 (method url-fetch)
13049 (uri (pypi-uri "semver" version))
13050 (sha256
13051 (base32
13052 "0hhgqppchv59rqj0yzi1prdg2nfsywqmjsqy2rycyxm0hvxmbyqz"))))
13053 (build-system python-build-system)
13054 (arguments
13055 `(#:phases
13056 (modify-phases %standard-phases
13057 (add-after 'unpack 'patch-test-requirements
13058 (lambda _
13059 (substitute* "setup.py"
13060 ;; Our Python is new enough.
13061 (("'virtualenv<14\\.0\\.0'") "'virtualenv'"))
13062 #t)))))
13063 (native-inputs
13064 `(("python-tox" ,python-tox)
13065 ("python-virtualenv" ,python-virtualenv)))
13066 (home-page "https://github.com/k-bx/python-semver")
13067 (synopsis "Python helper for Semantic Versioning")
13068 (description "This package provides a Python library for
13069@url{Semantic Versioning, http://semver.org/}.")
13070 (license license:bsd-3)))
13071
13072(define-public python2-semver
13073 (package-with-python2 python-semver))
13074
13075(define-public python-pyro4
13076 (package
13077 (name "python-pyro4")
13078 (version "4.74")
13079 (source
13080 (origin
13081 (method url-fetch)
13082 (uri (pypi-uri "Pyro4" version))
13083 (sha256
13084 (base32
13085 "0pzp7c6q3vvkxq0wy9lr6wd5wky40sajz69g697i5rb2q497pvc9"))))
13086 (build-system python-build-system)
13087 (propagated-inputs
13088 `(("python-serpent" ,python-serpent)))
13089 (home-page "https://pyro4.readthedocs.io")
13090 (synopsis "Distributed object middleware for Python")
13091 (description
13092 "Pyro enables you to build applications in which objects can talk to each
13093other over the network. You can just use normal Python method calls to call
13094objects on other machines, also known as remote procedure calls (RPC).")
13095 (license license:expat)))
13096
13097(define-public python2-pyro
13098 (package
13099 (name "python2-pyro")
13100 (version "3.16")
13101 (source
13102 (origin
13103 (method url-fetch)
13104 (uri (pypi-uri "Pyro" version))
13105 (file-name (string-append "Pyro-" version ".tar.gz"))
13106 (sha256
13107 (base32
13108 "0y75wzdqbjy565rpxaxscav4j8xg060sa90lnmb7aypgaf251v8v"))))
13109 (build-system python-build-system)
13110 (arguments
13111 ;; Pyro is not compatible with Python 3
13112 `(#:python ,python-2
13113 ;; Pyro has no test cases for automatic execution
13114 #:tests? #f))
13115 (home-page "http://pythonhosted.org/Pyro/")
13116 (synopsis "Distributed object manager for Python")
13117 (description "Pyro is a Distributed Object Technology system
13118written in Python that is designed to be easy to use. It resembles
13119Java's Remote Method Invocation (RMI). It has less similarity to CORBA,
13120which is a system and language independent Distributed Object Technology
13121and has much more to offer than Pyro or RMI. Pyro 3.x is no
13122longer maintained. New projects should use Pyro4 instead, which
13123is the new Pyro version that is actively developed.")
13124 (license license:expat)))
13125
13126(define-public python2-scientific
13127 (package
13128 (name "python2-scientific")
13129 (version "2.9.4")
13130 (source
13131 (origin
13132 (method url-fetch)
13133 (uri (string-append "https://bitbucket.org/khinsen/"
13134 "scientificpython/downloads/ScientificPython-"
13135 version ".tar.gz"))
13136 (file-name (string-append "ScientificPython-" version ".tar.gz"))
13137 (sha256
13138 (base32
13139 "0fc69zhlsn9d2jvbzyjl9ah53vj598h84nkq230c83ahfvgzx5y3"))))
13140 (build-system python-build-system)
13141 (inputs
13142 `(("netcdf" ,netcdf)))
13143 (propagated-inputs
13144 `(("python-numpy" ,python2-numpy-1.8)
13145 ("python-pyro" ,python2-pyro)))
13146 (arguments
13147 ;; ScientificPython is not compatible with Python 3
13148 `(#:python ,python-2
13149 #:tests? #f ; No test suite
13150 #:phases
13151 (modify-phases %standard-phases
13152 (replace 'build
13153 (lambda* (#:key inputs #:allow-other-keys)
13154 (zero? (system* "python" "setup.py" "build"
13155 (string-append "--netcdf_prefix="
13156 (assoc-ref inputs "netcdf")))))))))
13157 (home-page "https://bitbucket.org/khinsen/scientificpython")
13158 (synopsis "Python modules for scientific computing")
13159 (description "ScientificPython is a collection of Python modules that are
13160useful for scientific computing. Most modules are rather general (Geometry,
13161physical units, automatic derivatives, ...) whereas others are more
13162domain-specific (e.g. netCDF and PDB support). The library is currently
13163not actively maintained and works only with Python 2 and NumPy < 1.9.")
13164 (license license:cecill-c)))
13165
13166(define-public python2-mmtk
13167 (package
13168 (name "python2-mmtk")
13169 (version "2.7.11")
13170 (source
13171 (origin
13172 (method url-fetch)
13173 (uri (string-append "https://bitbucket.org/khinsen/"
13174 "mmtk/downloads/MMTK-" version ".tar.gz"))
13175 (file-name (string-append "MMTK-" version ".tar.gz"))
13176 (sha256
13177 (base32
13178 "1d0nnjx4lwsvh8f99vv1r6gi50d93yba0adkz8b4zgv4za4c5862"))))
13179 (build-system python-build-system)
13180 (native-inputs
13181 `(("netcdf" ,netcdf)))
13182 (propagated-inputs
13183 `(("python-scientific" ,python2-scientific)
13184 ("python-tkinter" ,python-2 "tk")))
13185 (arguments
13186 `(#:python ,python-2
13187 #:tests? #f
13188 #:phases
13189 (modify-phases %standard-phases
13190 (add-before 'build 'includes-from-scientific
13191 (lambda* (#:key inputs #:allow-other-keys)
13192 (mkdir-p "Include/Scientific")
13193 (copy-recursively
13194 (string-append
13195 (assoc-ref inputs "python-scientific")
13196 "/include/python2.7/Scientific")
13197 "Include/Scientific"))))))
13198 (home-page "http://dirac.cnrs-orleans.fr/MMTK")
13199 (synopsis "Python library for molecular simulation")
13200 (description "MMTK is a library for molecular simulations with an emphasis
13201on biomolecules. It provides widely used methods such as Molecular Dynamics
13202and normal mode analysis, but also basic routines for implementing new methods
13203for simulation and analysis. The library is currently not actively maintained
13204and works only with Python 2 and NumPy < 1.9.")
13205 (license license:cecill-c)))
13206
13207(define-public python-phonenumbers
13208 (package
13209 (name "python-phonenumbers")
13210 (version "8.9.1")
13211 (source
13212 (origin
13213 (method url-fetch)
13214 (uri (pypi-uri "phonenumbers" version))
13215 (sha256
13216 (base32
13217 "03fmrgb4r8x3ykmddjs9i3zhs703in8smikj3a6447blqpimwyh1"))))
13218 (build-system python-build-system)
13219 (home-page
13220 "https://github.com/daviddrysdale/python-phonenumbers")
13221 (synopsis
13222 "Python library for dealing with international phone numbers")
13223 (description
13224 "This package provides a Python port of Google's libphonenumber library.")
13225 (license license:asl2.0)))
13226
13227(define-public python2-phonenumbers
13228 (package-with-python2 python-phonenumbers))
13229
13230(define-public python-send2trash
13231 (package
13232 (name "python-send2trash")
13233 (version "1.4.2")
13234 (source
13235 (origin (method url-fetch)
13236 ;; Source tarball on PyPI doesn't include tests.
13237 (uri (string-append "https://github.com/hsoft/send2trash/archive/"
13238 version ".tar.gz"))
13239 (file-name (string-append name "-" version ".tar.gz"))
13240 (sha256
13241 (base32
13242 "0ffyhwjyx61slkdy38iwjc4gmj7fj9gs2q58f075gwvq630pzm9z"))))
13243 (build-system python-build-system)
13244 (arguments
13245 '(#:phases
13246 (modify-phases %standard-phases
13247 (add-before 'check 'pre-check
13248 (lambda _
13249 (mkdir-p "/tmp/foo")
13250 (setenv "HOME" "/tmp/foo")
13251 #t)))))
13252 (home-page "https://github.com/hsoft/send2trash")
13253 (synopsis "Send files to the user's @file{~/Trash} directory")
13254 (description "This package provides a Python library to send files to the
13255user's @file{~/Trash} directory.")
13256 (license license:bsd-3)))
13257
13258(define-public python2-send2trash
13259 (package
13260 (inherit (package-with-python2 python-send2trash))
13261 (arguments
13262 (substitute-keyword-arguments (package-arguments python-send2trash)
13263 ((#:phases phases)
13264 `(modify-phases ,phases
13265 (add-before 'check 'setenv
13266 (lambda _
13267 (setenv "PYTHONPATH"
13268 (string-append (getcwd) ":" (getenv "PYTHONPATH")))
13269 #t))))))
13270 (properties `((python2-variant . ,(delay python-send2trash))))))
13271
13272(define-public python-yapf
13273 (package
13274 (name "python-yapf")
13275 (version "0.24.0")
13276 (source
13277 (origin
13278 (method url-fetch)
13279 (uri (pypi-uri "yapf" version))
13280 (sha256
13281 (base32
13282 "0anwby0ydmyzcsgjc5dn1ryddwvii4dq61vck447q0n96npnzfyf"))))
13283 (build-system python-build-system)
13284 (home-page "https://github.com/google/yapf")
13285 (synopsis "Formatter for Python code")
13286 (description "YAPF is a formatter for Python code. It's based off of
13287@dfn{clang-format}, developed by Daniel Jasper. In essence, the algorithm
13288takes the code and reformats it to the best formatting that conforms to the
13289style guide, even if the original code didn't violate the style guide.")
13290 (license license:asl2.0)))
13291
13292(define-public python2-yapf
13293 (package-with-python2 python-yapf))
13294
13295(define-public python-gyp
13296 (let ((commit "5e2b3ddde7cda5eb6bc09a5546a76b00e49d888f")
13297 (revision "0"))
13298 (package
13299 (name "python-gyp")
13300 ;; Google does not release versions,
13301 ;; based on second most recent commit date.
13302 (version (git-version "0.0.0" revision commit))
13303 (source
13304 (origin
13305 ;; Google does not release tarballs,
13306 ;; git checkout is needed.
13307 (method git-fetch)
13308 (uri (git-reference
13309 (url "https://chromium.googlesource.com/external/gyp")
13310 (commit commit)))
13311 (file-name (git-file-name name version))
13312 (sha256
13313 (base32
13314 "0fr7nxcrk292djmxzpcjaphnsd123k31gp8jnd91vwknhq6snmv9"))))
13315 (build-system python-build-system)
13316 (home-page "https://gyp.gsrc.io/")
13317 (synopsis "GYP is a Meta-Build system")
13318 (description
13319 "GYP builds build systems for large, cross platform applications.
13320It can be used to generate XCode projects, Visual Studio projects, Ninja build
13321files, and Makefiles.")
13322 (license license:bsd-3))))
13323
13324(define-public python2-gyp
13325 (package-with-python2 python-gyp))
13326
13327(define-public python-whatever
13328 (package
13329 (name "python-whatever")
13330 (version "0.5")
13331 (source
13332 (origin
13333 (method url-fetch)
13334 (uri (string-append "https://github.com/Suor/whatever/archive/" version
13335 ".tar.gz"))
13336 (sha256
13337 (base32
13338 "1iqvnaf0zpc6b4rvbqq4xy45mszcscyzpzknv8wg6j84pbp22sap"))
13339 (file-name (string-append name "-" version ".tar.gz"))))
13340 (build-system python-build-system)
13341 (arguments
13342 `(#:phases
13343 (modify-phases %standard-phases
13344 (replace 'check
13345 (lambda _
13346 (invoke "py.test"))))))
13347 (native-inputs
13348 `(("python-pytest" ,python-pytest)))
13349 (home-page "http://github.com/Suor/whatever")
13350 (synopsis "Make anonymous functions by partial application of operators")
13351 (description "@code{whatever} provides an easy way to make anonymous
13352functions by partial application of operators.")
13353 (license license:bsd-3)))
13354
13355(define-public python2-whatever
13356 (package-with-python2 python-whatever))
13357
13358(define-public python-funcy
13359 (package
13360 (name "python-funcy")
13361 (version "1.10")
13362 (source
13363 (origin
13364 (method url-fetch)
13365 (uri (string-append "https://github.com/Suor/funcy/archive/" version
13366 ".tar.gz"))
13367 (sha256
13368 (base32
13369 "1fanxivsip29vgarw6dn39xym3q4pbxcpa11plpp548lvxajpahz"))
13370 (file-name (string-append name "-" version ".tar.gz"))))
13371 (build-system python-build-system)
13372 (arguments
13373 `(#:phases
13374 (modify-phases %standard-phases
13375 (replace 'check
13376 (lambda _
13377 (invoke "py.test"))))))
13378 (native-inputs
13379 `(("python-pytest" ,python-pytest)
13380 ("python-whatever" ,python-whatever)))
13381 (home-page "http://github.com/Suor/funcy")
13382 (synopsis "Functional tools")
13383 (description "@code{funcy} is a library that provides functional tools.
13384Examples are:
13385@enumerate
13386@item merge - Merges collections of the same type
13387@item walk - Type-preserving map
13388@item select - Selects a part of a collection
13389@item take - Takes the first n items of a collection
13390@item first - Takes the first item of a collection
13391@item remove - Predicated-removes items of a collection
13392@item concat - Concatenates two collections
13393@item flatten - Flattens a collection with subcollections
13394@item distinct - Returns only distinct items
13395@item split - Predicated-splits a collection
13396@item split_at - Splits a collection at a given item
13397@item group_by - Groups items by group
13398@item pairwise - Pairs off adjacent items
13399@item partial - Partially-applies a function
13400@item curry - Curries a function
13401@item compose - Composes functions
13402@item complement - Complements a predicate
13403@item all_fn - \"all\" with predicate
13404@end enumerate")
13405 (license license:bsd-3)))
13406
13407(define-public python2-funcy
13408 (package-with-python2 python-funcy))
13409
13410(define-public python-isoweek
13411 (package
13412 (name "python-isoweek")
13413 (version "1.3.3")
13414 (source
13415 (origin
13416 (method url-fetch)
13417 (uri (pypi-uri "isoweek" version))
13418 (sha256
13419 (base32
13420 "1s7zsf0pab0l9gn6456qadnz5i5h90hafcjwnhx5mq23qjxggwvk"))))
13421 (build-system python-build-system)
13422 (home-page "https://github.com/gisle/isoweek")
13423 (synopsis "Objects representing a week")
13424 (description "The @code{isoweek} module provide the class Week that
13425implements the week definition of ISO 8601. This standard also defines
13426a notation for identifying weeks; yyyyWww (where the W is a literal).
13427Week instances stringify to this form.")
13428 (license license:bsd-3)))
13429
13430(define-public python2-isoweek
13431 (package-with-python2 python-isoweek))
13432
13433(define-public python-tokenize-rt
13434 (package
13435 (name "python-tokenize-rt")
13436 (version "2.0.1")
13437 (source
13438 (origin
13439 (method url-fetch)
13440 (uri (pypi-uri "tokenize-rt" version))
13441 (sha256
13442 (base32
13443 "1yjvbz7rvrz31zjyax1cgy3xhf4wb3j18jwnj4bnl77ca4gliyiw"))))
13444 (build-system python-build-system)
13445 (home-page "https://github.com/asottile/tokenize-rt")
13446 (synopsis "Wrapper around the stdlib tokenize which roundtrips.")
13447 (description
13448 "This Python library is a wrapper around @code{tokenize} from the Python
13449standard library. It provides two additional tokens @code{ESCAPED_NL} and
13450@code{UNIMPORTANT_WS}, and a @code{Token} data type. Use @code{src_to_tokens}
13451and @code{tokens_to_src} to roundtrip.")
13452 (license license:expat)))
13453
13454(define-public python-future-fstrings
13455 (package
13456 (name "python-future-fstrings")
13457 (version "0.4.1")
13458 (source
13459 (origin
13460 (method url-fetch)
13461 (uri (pypi-uri "future_fstrings" version))
13462 (sha256
13463 (base32
13464 "0ydxqz2dvns44g55p8ix2x18qkfk3aaz0m0dc70f3g6n8js35h47"))))
13465 (build-system python-build-system)
13466 (propagated-inputs
13467 `(("python-tokenize-rt" ,python-tokenize-rt)))
13468 (home-page "https://github.com/asottile/future-fstrings")
13469 (synopsis "Backport of fstrings to Python < 3.6")
13470 (description
13471 "This package provides a UTF-8 compatible encoding
13472@code{future_fstrings}, which performs source manipulation. It decodes the
13473source bytes using the UTF-8 encoding and then rewrites Python 3.6 style
13474@code{f} strings.")
13475 (license license:expat)))
13476
13477(define-public python-typing
13478 (package
13479 (name "python-typing")
13480 (version "3.6.6")
13481 (source
13482 (origin
13483 (method url-fetch)
13484 (uri (pypi-uri "typing" version))
13485 (sha256
13486 (base32
13487 "0ba9acs4awx15bf9v3nrs781msbd2nx826906nj6fqks2bvca9s0"))))
13488 (build-system python-build-system)
13489 (home-page "https://docs.python.org/3/library/typing.html")
13490 (synopsis "Type hints for Python")
13491 (description "This is a backport of the standard library @code{typing}
13492module to Python versions older than 3.5. Typing defines a standard notation
13493for Python function and variable type annotations. The notation can be used
13494for documenting code in a concise, standard format, and it has been designed
13495to also be used by static and runtime type checkers, static analyzers, IDEs
13496and other tools.")
13497 (license license:psfl)))
13498
13499(define-public python2-typing
13500 (package-with-python2 python-typing))
13501
13502(define-public bpython
13503 (package
13504 (name "bpython")
13505 (version "0.17.1")
13506 (source
13507 (origin
13508 (method url-fetch)
13509 (uri (pypi-uri "bpython" version))
13510 (sha256
13511 (base32
13512 "0bxhxi5zxdkrf8b4gwn0d363kdz3qnypjwhm1aydki53ph8ca1w9"))))
13513 (build-system python-build-system)
13514 (arguments
13515 `(#:phases
13516 (modify-phases %standard-phases
13517 (add-after 'unpack 'remove-failing-test
13518 (lambda _
13519 ;; Remove failing test. FIXME: make it pass
13520 (delete-file "bpython/test/test_args.py")
13521 #t))
13522 (add-after 'wrap 'add-aliases
13523 ;; for symmetry to bpython2, add symlinks bypthon3, bpdb3, etc.
13524 (lambda* (#:key outputs #:allow-other-keys)
13525 (let ((out (assoc-ref outputs "out")))
13526 (for-each
13527 (lambda (old new)
13528 (symlink old (string-append out "/bin/" new)))
13529 '("bpython" "bpython-curses" "bpython-urwid" "bpdb")
13530 '("bpython3" "bpython3-curses" "bpython3-urwid" "bpdb3")))
13531 #t)))))
13532 (propagated-inputs
13533 `(("python-pygments" ,python-pygments)
13534 ("python-requests" ,python-requests)
13535 ("python-babel" ,python-babel) ; optional, for internationalization
13536 ("python-curtsies" ,python-curtsies) ; >= 0.1.18
13537 ("python-greenlet" ,python-greenlet)
13538 ("python-urwid" ,python-urwid) ; for bpython-urwid only
13539 ("python-six" ,python-six)))
13540 (native-inputs
13541 `(("python-sphinx" ,python-sphinx)
13542 ("python-mock" ,python-mock)))
13543 (home-page "https://bpython-interpreter.org/")
13544 (synopsis "Fancy interface to the Python interpreter")
13545 (description "Bpython is a fancy interface to the Python
13546interpreter. bpython's main features are
13547
13548@enumerate
13549@item in-line syntax highlighting,
13550@item readline-like autocomplete with suggestions displayed as you type,
13551@item expected parameter list for any Python function,
13552@item \"rewind\" function to pop the last line of code from memory and
13553 re-evaluate,
13554@item send the code you've entered off to a pastebin,
13555@item save the code you've entered to a file, and
13556@item auto-indentation.
13557@end enumerate")
13558 (license license:expat)))
13559
13560(define-public bpython2
13561 (let ((base (package-with-python2
13562 (strip-python2-variant bpython))))
13563 (package (inherit base)
13564 (name "bpython2")
13565 (arguments
13566 `(#:python ,python-2
13567 #:phases
13568 (modify-phases %standard-phases
13569 (add-after 'unpack 'remove-failing-test
13570 (lambda _
13571 ;; Remove failing test. FIXME: make it pass
13572 (delete-file "bpython/test/test_args.py")
13573 ;; Disable failing test-cases (renaming inhibits they are
13574 ;; discovered)
13575 (substitute* "bpython/test/test_curtsies_repl.py"
13576 (("^(\\s*def )(test_get_last_word_with_prev_line\\W)" _ a b)
13577 (string-append a "xxx_off_" b))
13578 (("^(\\s*def )(test_complex\\W)" _ a b)
13579 (string-append a "xxx_off_" b)))
13580 #t))
13581 (add-before 'build 'rename-scripts
13582 ;; rename the scripts to bypthon2, bpdb2, etc.
13583 (lambda _
13584 (substitute* "setup.py"
13585 (("^(\\s+'bpdb)(\\s+=.*',?)\\s*?$" _ name rest)
13586 (string-append name "2" rest "\n"))
13587 (("^(\\s+'bpython)(-\\S+)?(\\s+=.*',?)\\s*?$" _ name sub rest)
13588 (string-append name "2" (or sub "") rest "\n")))
13589 #t))))))))
13590
13591(define-public python-pyinotify
13592 (package
13593 (name "python-pyinotify")
13594 (version "0.9.6")
13595 (source (origin
13596 (method url-fetch)
13597 (uri (pypi-uri "pyinotify" version))
13598 (sha256
13599 (base32
13600 "1x3i9wmzw33fpkis203alygfnrkcmq9w1aydcm887jh6frfqm6cw"))))
13601 (build-system python-build-system)
13602 (arguments `(#:tests? #f)) ;no tests
13603 (home-page "https://github.com/seb-m/pyinotify")
13604 (synopsis "Python library for monitoring inotify events")
13605 (description
13606 "@code{pyinotify} provides a Python interface for monitoring
13607file system events on Linux.")
13608 (license license:expat)))
13609
13610(define-public python2-pyinotify
13611 (package-with-python2 python-pyinotify))
13612
13613;; Ada parser uses this version.
13614(define-public python2-quex-0.67.3
13615 (package
13616 (name "python2-quex")
13617 (version "0.67.3")
13618 (source
13619 (origin
13620 (method url-fetch)
13621 (uri (string-append "mirror://sourceforge/quex/HISTORY/"
13622 (version-major+minor version)
13623 "/quex-" version ".zip"))
13624 (sha256
13625 (base32
13626 "14gv8ll3ipqv4kyc2xiy891nrmjl4ic823zfyx8hassagyclyppw"))))
13627 (build-system python-build-system)
13628 (native-inputs
13629 `(("unzip" ,unzip)))
13630 (arguments
13631 `(#:python ,python-2
13632 #:tests? #f
13633 #:phases
13634 (modify-phases %standard-phases
13635 (delete 'configure)
13636 (delete 'build)
13637 (replace 'install
13638 (lambda* (#:key outputs #:allow-other-keys)
13639 (let* ((out (assoc-ref outputs "out"))
13640 (share/quex (string-append out "/share/quex"))
13641 (bin (string-append out "/bin")))
13642 (copy-recursively "." share/quex)
13643 (mkdir-p bin)
13644 (symlink (string-append share/quex "/quex-exe.py")
13645 (string-append bin "/quex"))
13646 #t))))))
13647 (native-search-paths
13648 (list (search-path-specification
13649 (variable "QUEX_PATH")
13650 (files '("share/quex")))))
13651 (home-page "http://quex.sourceforge.net/")
13652 (synopsis "Lexical analyzer generator in Python")
13653 (description "@code{quex} is a lexical analyzer generator in Python.")
13654 (license license:lgpl2.1+))) ; Non-military
13655
13656(define-public python2-quex
13657 (package (inherit python2-quex-0.67.3)
13658 (name "python2-quex")
13659 (version "0.68.1")
13660 (source
13661 (origin
13662 (method url-fetch)
13663 (uri (string-append "mirror://sourceforge/quex/DOWNLOAD/quex-" version ".tar.gz"))
13664 (sha256
13665 (base32
13666 "0svc9nla3b9145d6b7fb9dizx412l3difzqw0ilh9lz52nsixw8j"))
13667 (file-name (string-append name "-" version ".tar.gz"))))))
13668
13669(define-public python-more-itertools
13670 (package
13671 (name "python-more-itertools")
13672 (version "4.3.0")
13673 (source
13674 (origin
13675 (method url-fetch)
13676 (uri (pypi-uri "more-itertools" version))
13677 (sha256
13678 (base32
13679 "17h3na0rdh8xq30w4b9pizgkdxmm51896bxw600x84jflg9vaxn4"))))
13680 (build-system python-build-system)
13681 (arguments
13682 `(,@(if (any (cute string-prefix? <> (or (%current-system)
13683 (%current-target-system)))
13684 '("armhf" "i686"))
13685 '(#:phases
13686 (modify-phases %standard-phases
13687 ;; This is required for 32-bit hardware.
13688 ;; TODO: Try to remove this when upgrading.
13689 (add-after 'unpack 'patch-test
13690 (lambda _
13691 (substitute* "more_itertools/tests/test_more.py"
13692 (("10 \\*\\* 10") "9 ** 9"))
13693 #t))))
13694 '())))
13695 (propagated-inputs
13696 `(("python-six" ,python-six-bootstrap)))
13697 (home-page "https://github.com/erikrose/more-itertools")
13698 (synopsis "More routines for operating on iterables, beyond itertools")
13699 (description "Python's built-in @code{itertools} module implements a
13700number of iterator building blocks inspired by constructs from APL, Haskell,
13701and SML. @code{more-itertools} includes additional building blocks for
13702working with iterables.")
13703 (license license:expat)))
13704
13705(define-public python2-more-itertools
13706 (package-with-python2 python-more-itertools))
13707
13708(define-public python-latexcodec
13709 (package
13710 (name "python-latexcodec")
13711 (version "1.0.5")
13712 (source
13713 (origin
13714 (method url-fetch)
13715 (uri (pypi-uri "latexcodec" version))
13716 (sha256
13717 (base32
13718 "0zdd1gf24i83ykadx0y30n3001j43scqr2saql3vckk5c39dj1wn"))))
13719 (build-system python-build-system)
13720 (inputs
13721 `(("python-six" ,python-six)))
13722 (home-page "https://readthedocs.org/projects/latexcodec/")
13723 (synopsis "Work with LaTeX code in Python")
13724 (description "Lexer and codec to work with LaTeX code in Python.")
13725 (license license:expat)))
13726
13727(define-public python-pybtex
13728 (package
13729 (name "python-pybtex")
13730 (version "0.21")
13731 (source
13732 (origin
13733 (method url-fetch)
13734 (uri (pypi-uri "pybtex" version))
13735 (sha256
13736 (base32
13737 "00300j8dn5pxq4ndxmfmbmycg2znawkqs49val2x6jlmfiy6r2mg"))))
13738 (build-system python-build-system)
13739 (native-inputs
13740 `(("python-nose" ,python-nose)))
13741 (inputs
13742 `(("python-latexcodec" ,python-latexcodec)
13743 ("python-pyyaml" ,python-pyyaml)
13744 ("python-six" ,python-six)))
13745 (arguments
13746 `(#:test-target "nosetests"))
13747 (home-page "https://pybtex.org/")
13748 (synopsis "BibTeX-compatible bibliography processor")
13749 (description "Pybtex is a BibTeX-compatible bibliography processor written
13750in Python. You can simply type pybtex instead of bibtex.")
13751 (license license:expat)))
13752
13753(define-public python-onetimepass
13754 (package
13755 (name "python-onetimepass")
13756 (version "1.0.1")
13757 (source
13758 (origin
13759 (method url-fetch)
13760 (uri (pypi-uri "onetimepass" version))
13761 (sha256
13762 (base32 "09vagxgbq78wvq4xbikmn2hpqqsa2i96kqsmphf7dqynfv0dlsd5"))))
13763 (build-system python-build-system)
13764 (propagated-inputs `(("python-six" ,python-six)))
13765 (home-page "https://github.com/tadeck/onetimepass/")
13766 (synopsis "One-time password library")
13767 (description "Python one-time password library for HMAC-based (HOTP) and
13768time-based (TOTP) passwords.")
13769 (license license:expat)))
13770
13771(define-public python-parso
13772 (package
13773 (name "python-parso")
13774 (version "0.3.1")
13775 (source
13776 (origin
13777 (method url-fetch)
13778 (uri (pypi-uri "parso" version))
13779 (sha256
13780 (base32
13781 "18p89iwcm8mnf380f92g9w0bhx5km8wxp392vvjcq4y1ld1llw1m"))))
13782 (native-inputs
13783 `(("python-pytest" ,python-pytest)))
13784 (build-system python-build-system)
13785 (home-page "https://github.com/davidhalter/parso")
13786 (synopsis "Python Parser")
13787 (description "Parso is a Python parser that supports error recovery and
13788round-trip parsing for different Python versions (in multiple Python versions).
13789Parso is also able to list multiple syntax errors in your Python file.")
13790 (license license:expat)))
13791
13792(define-public python2-parso
13793 (package-with-python2 python-parso))
13794
13795(define-public python-async-generator
13796 (package
13797 (name "python-async-generator")
13798 (version "1.9")
13799 (source
13800 (origin
13801 (method url-fetch)
13802 (uri (pypi-uri "async_generator" version))
13803 (sha256
13804 (base32
13805 "0wc3hidz1q85cja93k5pzybn0fprfnqyrv4qlkdqdzklc5f4dmdp"))))
13806 (build-system python-build-system)
13807 (native-inputs
13808 `(("python-pytest" ,python-pytest)))
13809 (home-page "https://github.com/python-trio/async_generator")
13810 (synopsis "Async generators and context managers for Python 3.5+")
13811 (description "@code{async_generator} back-ports Python 3.6's native async
13812generators and Python 3.7's context managers into Python 3.5.")
13813 ;; Dual licensed.
13814 (license (list license:expat license:asl2.0))))
13815
13816(define-public python-async-timeout
13817 (package
13818 (name "python-async-timeout")
13819 (version "3.0.1")
13820 (source
13821 (origin
13822 (method url-fetch)
13823 (uri (pypi-uri "async-timeout" version))
13824 (sha256
13825 (base32
13826 "0pscbyr840m7fyfc3r8zv9kgkwdcn9f78p7zsrczciwd09m82g0c"))))
13827 (build-system python-build-system)
13828 (home-page "https://github.com/aio-libs/async_timeout/")
13829 (synopsis "Timeout context manager for asyncio programs")
13830 (description "@code{async-timeout} provides a timeout timeout context
13831manager compatible with @code{asyncio}.")
13832 (license license:asl2.0)))
13833
13834(define-public python-glob2
13835 (package
13836 (name "python-glob2")
13837 (version "0.6")
13838 (source (origin
13839 (method url-fetch)
13840 (uri (string-append
13841 "https://github.com/miracle2k/python-glob2/archive/"
13842 version
13843 ".tar.gz"))
13844 (sha256
13845 (base32
13846 "0ja168f0dz4kbz4m06dm0rd3acaypk6hjx2km541pw22y9s40mag"))
13847 (file-name (string-append name "-" version ".tar.gz"))))
13848 (build-system python-build-system)
13849 (home-page "https://github.com/miracle2k/python-glob2/")
13850 (synopsis "Extended Version of the python buildin glob module")
13851 (description "This is an extended version of the Python
13852@url{http://docs.python.org/library/glob.html, built-in glob module} which
13853adds:
13854
13855@itemize
13856@item The ability to capture the text matched by glob patterns, and return
13857those matches alongside the file names.
13858@item A recursive @code{**} globbing syntax, akin for example to the
13859@code{globstar} option of Bash.
13860@item The ability to replace the file system functions used, in order to glob
13861on virtual file systems.
13862@item Compatible with Python 2 and Python 3 (tested with 3.3).
13863@end itemize
13864
13865Glob2 currently based on the glob code from Python 3.3.1.")
13866 (license license:bsd-2)))
13867
13868(define-public python2-glob2
13869 (package-with-python2 python-glob2))
13870
13871(define-public python-gipc
13872 (package
13873 (name "python-gipc")
13874 (version "0.6.0")
13875 (source
13876 (origin
13877 (method url-fetch)
13878 (uri (pypi-uri "gipc" version ".zip"))
13879 (sha256
13880 (base32
13881 "0pd9by719qh882hqs6xpby61sn1x5h98hms5p2p8yqnycrf1s0h2"))))
13882 (build-system python-build-system)
13883 (native-inputs
13884 `(("unzip" ,unzip)))
13885 (propagated-inputs
13886 `(("python-gevent" ,python-gevent)))
13887 (home-page "http://gehrcke.de/gipc")
13888 (synopsis "Child process management in the context of gevent")
13889 (description "Usage of Python's multiprocessing package in a
13890gevent-powered application may raise problems. With @code{gipc},
13891process-based child processes can safely be created anywhere within a
13892gevent-powered application.")
13893 (license license:expat)))
13894
13895(define-public python2-gipc
13896 (package-with-python2 python-gipc))
13897
13898(define-public python-fusepy
13899 (package
13900 (name "python-fusepy")
13901 (version "2.0.4")
13902 (source
13903 (origin
13904 (method url-fetch)
13905 (uri (pypi-uri "fusepy" version))
13906 (sha256
13907 (base32
13908 "0v5grm4zyf58hsplwsxfbihddw95lz9w8cy3rpzbyha287swgx8h"))))
13909 (build-system python-build-system)
13910 (arguments
13911 `(#:phases
13912 (modify-phases %standard-phases
13913 (add-before 'build 'set-library-file-name
13914 (lambda* (#:key inputs #:allow-other-keys)
13915 (let ((fuse (assoc-ref inputs "fuse")))
13916 (substitute* "fuse.py"
13917 (("find_library\\('fuse'\\)")
13918 (string-append "'" fuse "/lib/libfuse.so'")))
13919 #t))))))
13920 (propagated-inputs
13921 `(("fuse" ,fuse)))
13922 (home-page "https://github.com/fusepy/fusepy")
13923 (synopsis "Simple ctypes bindings for FUSE")
13924 (description "Python module that provides a simple interface to FUSE and
13925MacFUSE. The binding is created using the standard @code{ctypes} library.")
13926 (license license:isc)))
13927
13928(define-public python2-fusepy
13929 (package-with-python2 python-fusepy))
13930
13931(define-public python2-gdrivefs
13932 (package
13933 (name "python2-gdrivefs")
13934 (version "0.14.9")
13935 (source
13936 (origin
13937 (method url-fetch)
13938 (uri (pypi-uri "gdrivefs" version))
13939 (sha256
13940 (base32
13941 "0v9sp2cfg4ki3wagkwf3rnfpjhvgf845anz3757il9z95yvvcvb7"))))
13942 (build-system python-build-system)
13943 (arguments
13944 `(#:python ,python-2
13945 #:phases
13946 (modify-phases %standard-phases
13947 (add-before 'build 'patch-setup-py
13948 (lambda _
13949 ;; Update requirements from dependency==version
13950 ;; to dependency>=version
13951 (substitute* "gdrivefs/resources/requirements.txt"
13952 (("==") ">="))
13953 #t)))))
13954 (native-inputs
13955 `(("python2-gipc" ,python2-gipc)
13956 ("python2-gevent" ,python2-gevent)
13957 ("python2-greenlet" ,python2-greenlet)
13958 ("python2-httplib2" ,python2-httplib2)
13959 ("python2-uritemplate" ,python2-uritemplate)
13960 ("python2-oauth2client" ,python2-oauth2client)
13961 ("python2-six" ,python2-six)))
13962 (propagated-inputs
13963 `(("python2-dateutil" ,python2-dateutil)
13964 ("python2-fusepy" ,python2-fusepy)
13965 ("python2-google-api-client" ,python2-google-api-client)))
13966 (home-page "https://github.com/dsoprea/GDriveFS")
13967 (synopsis "Mount Google Drive as a local file system")
13968 (description "@code{gdrivefs} provides a FUSE wrapper for Google Drive
13969under Python 2.7.")
13970 (license license:gpl2)))
13971
13972(define-public pybind11
13973 (package
13974 (name "pybind11")
13975 (version "2.2.4")
13976 (source (origin
13977 (method git-fetch)
13978 (uri (git-reference
13979 (url "https://github.com/pybind/pybind11.git")
13980 (commit (string-append "v" version))))
13981 (sha256
13982 (base32
13983 "0pa79ymcasv8br5ifbx7878id5py2jpjac3i20cqxr6gs9l6ivlv"))
13984 (file-name (git-file-name name version))))
13985 (build-system cmake-build-system)
13986 (native-inputs
13987 `(("python" ,python)
13988 ("python-pytest" ,python-pytest)))
13989 (arguments
13990 `(#:test-target "check"))
13991 (home-page "https://github.com/pybind/pybind11/")
13992 (synopsis "Seamless operability between C++11 and Python")
13993 (description "pybind11 is a lightweight header-only library that exposes
13994C++ types in Python and vice versa, mainly to create Python bindings of
13995existing C++ code. Its goals and syntax are similar to the excellent
13996Boost.Python library by David Abrahams: to minimize boilerplate code in
13997traditional extension modules by inferring type information using compile-time
13998introspection.")
13999 (license license:expat)))
14000
14001(define-public python-fasteners
14002 (package
14003 (name "python-fasteners")
14004 (version "0.14.1")
14005 (source
14006 (origin
14007 (method url-fetch)
14008 (uri (pypi-uri "fasteners" version))
14009 (sha256
14010 (base32
14011 "063y20kx01ihbz2mziapmjxi2cd0dq48jzg587xdsdp07xvpcz22"))))
14012 (build-system python-build-system)
14013 (propagated-inputs
14014 `(("python-monotonic" ,python-monotonic)
14015 ("python-six" ,python-six)
14016 ("python-testtools" ,python-testtools)))
14017 (home-page "https://github.com/harlowja/fasteners")
14018 (synopsis "Python package that provides useful locks")
14019 (description
14020 "This package provides a Python program that provides following locks:
14021
14022@itemize
14023@item Locking decorator
14024@item Reader-writer locks
14025@item Inter-process locks
14026@item Generic helpers
14027@end itemize\n")
14028 (properties `((python2-variant . ,(delay python2-fasteners))))
14029 (license license:asl2.0)))
14030
14031(define-public python2-fasteners
14032 (let ((base (package-with-python2 (strip-python2-variant python-fasteners))))
14033 (package
14034 (inherit base)
14035 (propagated-inputs
14036 `(("python2-futures" ,python2-futures)
14037 ,@(package-propagated-inputs base))))))
14038
14039(define-public python-requests-file
14040 (package
14041 (name "python-requests-file")
14042 (version "1.4.3")
14043 (source
14044 (origin
14045 (method url-fetch)
14046 (uri (pypi-uri "requests-file" version))
14047 (sha256
14048 (base32
14049 "1yp2jaxg3v86pia0q512dg3hz6s9y5vzdivsgrba1kds05ial14g"))))
14050 (build-system python-build-system)
14051 (propagated-inputs
14052 `(("python-requests" ,python-requests)
14053 ("python-six" ,python-six)))
14054 (home-page
14055 "https://github.com/dashea/requests-file")
14056 (synopsis "File transport adapter for Requests")
14057 (description
14058 "Requests-File is a transport adapter for use with the Requests Python
14059library to allow local filesystem access via file:// URLs.")
14060 (license license:asl2.0)))
14061
14062(define-public python2-requests-file
14063 (package-with-python2 python-requests-file))
14064
14065(define-public python-tldextract
14066 (package
14067 (name "python-tldextract")
14068 (version "2.2.0")
14069 (source
14070 (origin
14071 (method url-fetch)
14072 (uri (pypi-uri "tldextract" version))
14073 (sha256
14074 (base32
14075 "1d5s8v6kpsgazyahflhji1cfdcf89rv7l7z55v774bhzvcjp2y99"))))
14076 (build-system python-build-system)
14077 (native-inputs
14078 `(("python-pytest" ,python-pytest)
14079 ("python-responses" ,python-responses)))
14080 (propagated-inputs
14081 `(("python-idna" ,python-idna)
14082 ("python-requests" ,python-requests)
14083 ("python-requests-file" ,python-requests-file)))
14084 (home-page
14085 "https://github.com/john-kurkowski/tldextract")
14086 (synopsis
14087 "Separate the TLD from the registered domain and subdomains of a URL")
14088 (description
14089 "TLDExtract accurately separates the TLD from the registered domain and
14090subdomains of a URL, using the Public Suffix List. By default, this includes
14091the public ICANN TLDs and their exceptions. It can optionally support the
14092Public Suffix List's private domains as well.")
14093 (license license:bsd-3)))
14094
14095(define-public python2-tldextract
14096 (package-with-python2 python-tldextract))
14097
14098(define-public python-pynamecheap
14099 (package
14100 (name "python-pynamecheap")
14101 (version "0.0.3")
14102 (source
14103 (origin
14104 (method url-fetch)
14105 (uri (pypi-uri "PyNamecheap" version))
14106 (sha256
14107 (base32
14108 "0wkbwz208j8nfrsmzmclvxg22ymknn0mlz76wbdza9k2bx2zja6l"))))
14109 (build-system python-build-system)
14110 (propagated-inputs
14111 `(("python-requests" ,python-requests)))
14112 (home-page
14113 "https://github.com/Bemmu/PyNamecheap")
14114 (synopsis
14115 "Namecheap API client in Python")
14116 (description
14117 "PyNamecheap is a Namecheap API client in Python.")
14118 (license license:expat)))
14119
14120(define-public python2-pynamecheap
14121 (package-with-python2 python-pynamecheap))
14122
14123(define-public python-dns-lexicon
14124 (package
14125 (name "python-dns-lexicon")
14126 (version "2.4.0")
14127 (source
14128 (origin
14129 (method url-fetch)
14130 (uri (pypi-uri "dns-lexicon" version))
14131 (sha256
14132 (base32
14133 "0jdn3ns71bsybr7njgsqr9xlxsqh7zh6phn4ld0liazqdn2l5f6m"))))
14134 (build-system python-build-system)
14135 (arguments
14136 `(#:tests? #f)) ;requires internet access
14137 (propagated-inputs
14138 `(("python-future" ,python-future)
14139 ("python-pynamecheap" ,python-pynamecheap)
14140 ("python-requests" ,python-requests)
14141 ("python-tldextract" ,python-tldextract)
14142 ("python-urllib3" ,python-urllib3)))
14143 (home-page "https://github.com/AnalogJ/lexicon")
14144 (synopsis
14145 "Manipulate DNS records on various DNS providers")
14146 (description
14147 "Lexicon provides a way to manipulate DNS records on multiple DNS
14148providers in a standardized way. It has a CLI but it can also be used as a
14149Python library. It was designed to be used in automation, specifically with
14150Let's Encrypt.")
14151 (license license:expat)))
14152
14153(define-public python2-dns-lexicon
14154 (package-with-python2 python-dns-lexicon))
14155
14156(define-public python-commandlines
14157 (package
14158 (name "python-commandlines")
14159 (version "0.4.1")
14160 (source
14161 (origin
14162 (method url-fetch)
14163 (uri (pypi-uri "commandlines" version))
14164 (sha256
14165 (base32
14166 "0r7xcr0knv02p4mswa2bng61nn8nbhhrs6kvdnb9bb3hhjvm1dl6"))))
14167 (build-system python-build-system)
14168 (home-page "https://github.com/chrissimpkins/commandlines")
14169 (synopsis "Command line argument to object parsing library")
14170 (description
14171 "@code{Commandlines} is a Python library for command line application
14172development that supports command line argument parsing, command string
14173validation testing and application logic.")
14174 (license license:expat)))
14175
14176;; Make sure to upgrade python-llvmlite in (gnu packages llvm) together with
14177;; python-numba. They have a very unflexible relationship.
14178(define-public python-numba
14179 (package
14180 (name "python-numba")
14181 (version "0.39.0")
14182 (source
14183 (origin
14184 (method url-fetch)
14185 (uri (pypi-uri "numba" version))
14186 (sha256
14187 (base32
14188 "1bibvkwga1v8293i9ivl469d8bzgabn3vgr2ig7c1i68v8frsx07"))))
14189 (build-system python-build-system)
14190 (arguments
14191 `(#:modules ((guix build utils)
14192 (guix build python-build-system)
14193 (ice-9 ftw)
14194 (srfi srfi-1)
14195 (srfi srfi-26))
14196 #:phases
14197 (modify-phases %standard-phases
14198 (add-after 'unpack 'disable-proprietary-features
14199 (lambda _
14200 (setenv "NUMBA_DISABLE_HSA" "1")
14201 (setenv "NUMBA_DISABLE_CUDA" "1")
14202 #t))
14203 (add-after 'unpack 'remove-failing-tests
14204 (lambda _
14205 ;; FIXME: these tests fail for unknown reasons:
14206 ;; test_non_writable_pycache, test_non_creatable_pycache, and
14207 ;; test_frozen (all in numba.tests.test_dispatcher.TestCache).
14208 (substitute* "numba/tests/test_dispatcher.py"
14209 (("def test(_non_writable_pycache)" _ m)
14210 (string-append "def guix_skip" m))
14211 (("def test(_non_creatable_pycache)" _ m)
14212 (string-append "def guix_skip" m))
14213 (("def test(_frozen)" _ m)
14214 (string-append "def guix_skip" m)))
14215
14216 ;; These tests fail because we don't run the tests from the build
14217 ;; directory: test_setup_py_distutils, test_setup_py_setuptools
14218 ;; They ar in numba.tests.test_pycc.TestDistutilsSupport.
14219 (substitute* "numba/tests/test_pycc.py"
14220 (("def test(_setup_py_distutils|_setup_py_setuptools)" _ m)
14221 (string-append "def guix_skip" m)))
14222 #t))
14223 (replace 'check
14224 (lambda _
14225 (let ((cwd (getcwd)))
14226 (setenv "PYTHONPATH"
14227 (string-append cwd "/build/"
14228 (find (cut string-prefix? "lib" <>)
14229 (scandir (string-append cwd "/build")))
14230 ":"
14231 (getenv "PYTHONPATH")))
14232 ;; Something is wrong with the PYTHONPATH when running the
14233 ;; tests from the build directory, as it complains about not being
14234 ;; able to import certain modules.
14235 (with-directory-excursion "/tmp"
14236 (invoke "python3" "-m" "numba.runtests" "-v" "-m")))
14237 #t)))))
14238 (propagated-inputs
14239 `(("python-llvmlite" ,python-llvmlite)
14240 ("python-numpy" ,python-numpy)
14241 ("python-singledispatch" ,python-singledispatch)))
14242 ;; Needed for tests.
14243 (inputs
14244 `(("python-jinja2" ,python-jinja2)
14245 ("python-pygments" ,python-pygments)))
14246 (home-page "https://numba.pydata.org")
14247 (synopsis "Compile Python code using LLVM")
14248 (description "Numba gives you the power to speed up your applications with
14249high performance functions written directly in Python. With a few
14250annotations, array-oriented and math-heavy Python code can be just-in-time
14251compiled to native machine instructions, similar in performance to C, C++ and
14252Fortran, without having to switch languages or Python interpreters.
14253
14254Numba works by generating optimized machine code using the LLVM compiler
14255infrastructure at import time, runtime, or statically (using the included pycc
14256tool).")
14257 (license license:bsd-3)))
14258
14259(define-public python-anndata
14260 (package
14261 (name "python-anndata")
14262 (version "0.6.9")
14263 (source
14264 (origin
14265 (method url-fetch)
14266 (uri (pypi-uri "anndata" version))
14267 (sha256
14268 (base32
14269 "1fh461xyyc7pcrjfgd013bdc2alf53r46ss3gfw3431mbb1gappi"))))
14270 (build-system python-build-system)
14271 (propagated-inputs
14272 `(("python-h5py" ,python-h5py)
14273 ("python-natsort" ,python-natsort)
14274 ("python-pandas" ,python-pandas)
14275 ("python-scipy" ,python-scipy)))
14276 (home-page "https://github.com/theislab/anndata")
14277 (synopsis "Annotated data for data analysis pipelines")
14278 (description "Anndata is a package for simple (functional) high-level APIs
14279for data analysis pipelines. In this context, it provides an efficient,
14280scalable way of keeping track of data together with learned annotations and
14281reduces the code overhead typically encountered when using a mostly
14282object-oriented library such as @code{scikit-learn}.")
14283 (license license:bsd-3)))
14284
14285(define-public python-dill
14286 (package
14287 (name "python-dill")
14288 (version "0.2.8.2")
14289 (source
14290 (origin
14291 (method url-fetch)
14292 (uri (pypi-uri "dill" version))
14293 (sha256
14294 (base32
14295 "1cymzn9fxwdy33h21zkk4gqgzvd25110hh3zdqnvnwa3p52c4kb2"))))
14296 (build-system python-build-system)
14297 ;; FIXME: The check phase fails with "don't know how to make test".
14298 (arguments '(#:tests? #f))
14299 (home-page "https://pypi.org/project/dill")
14300 (synopsis "Serialize all of Python")
14301 (description "Dill extends Python's @code{pickle} module for serializing
14302and de-serializing Python objects to the majority of the built-in Python
14303types. Dill provides the user the same interface as the @code{pickle} module,
14304and also includes some additional features. In addition to pickling Python
14305objects, @code{dill} provides the ability to save the state of an interpreter
14306session in a single command. Hence, it would be feasable to save a
14307interpreter session, close the interpreter, ship the pickled file to another
14308computer, open a new interpreter, unpickle the session and thus continue from
14309the saved state of the original interpreter session.")
14310 (license license:bsd-3)))
14311
14312(define-public python-multiprocess
14313 (package
14314 (name "python-multiprocess")
14315 (version "0.70.6.1")
14316 (source
14317 (origin
14318 (method url-fetch)
14319 (uri (pypi-uri "multiprocess" version))
14320 (sha256
14321 (base32
14322 "1ip5caz67b3q0553mr8gm8xwsb8x500jn8ml0gihgyfy52m2ypcq"))))
14323 (build-system python-build-system)
14324 (propagated-inputs
14325 `(("python-dill" ,python-dill)))
14326 (home-page "https://pypi.org/project/multiprocess")
14327 (synopsis "Multiprocessing and multithreading in Python")
14328 (description
14329 "This package is a fork of the multiprocessing Python package, a package
14330which supports the spawning of processes using the API of the standard
14331library's @code{threading} module.")
14332 (license license:bsd-3)))
14333
14334(define-public python-toolz
14335 (package
14336 (name "python-toolz")
14337 (version "0.9.0")
14338 (source
14339 (origin
14340 (method url-fetch)
14341 (uri (pypi-uri "toolz" version))
14342 (sha256
14343 (base32
14344 "1j9i7fdjnx9dz35fdj5gvgxx6585ja9sxgaiv65if77nlxz0m7wj"))))
14345 (build-system python-build-system)
14346 ;; FIXME: tests cannot be computed: "Can't perform this operation for
14347 ;; unregistered loader type"
14348 (arguments '(#:tests? #f))
14349 (home-page "https://github.com/pytoolz/toolz/")
14350 (synopsis "List processing tools and functional utilities")
14351 (description
14352 "This package provides a set of utility functions for iterators,
14353functions, and dictionaries.")
14354 (license license:bsd-3)))
14355
14356(define-public python2-toolz
14357 (package-with-python2 python-toolz))
14358
14359(define-public python-cytoolz
14360 (package
14361 (name "python-cytoolz")
14362 (version "0.9.0.1")
14363 (source
14364 (origin
14365 (method url-fetch)
14366 (uri (pypi-uri "cytoolz" version))
14367 (sha256
14368 (base32
14369 "1r80p88hm3f3r4zpixzr047y5hw4bzy41m4xywnhycda83x0dk44"))))
14370 (build-system python-build-system)
14371 ;; FIXME: tests fail with "module 'cytoolz.curried' has no attribute
14372 ;; 'exceptions'"
14373 (arguments '(#:tests? #f))
14374 (propagated-inputs
14375 `(("python-toolz" ,python-toolz)))
14376 (native-inputs
14377 `(("python-cython" ,python-cython)))
14378 (home-page "https://github.com/pytoolz/cytoolz")
14379 (synopsis "High performance functional utilities")
14380 (description
14381 "The cytoolz package implements the same API as provided by toolz. The
14382main differences are that @code{cytoolz} is faster and cytoolz offers a C API
14383that is accessible to other projects developed in Cython.")
14384 (license license:bsd-3)))
14385
14386(define-public python-sortedcontainers
14387 (package
14388 (name "python-sortedcontainers")
14389 (version "2.0.4")
14390 (source
14391 (origin
14392 (method url-fetch)
14393 (uri (pypi-uri "sortedcontainers" version))
14394 (sha256
14395 (base32
14396 "10hrk2k0hbf9x78vd3f0lj277m1yzfhzzxr0hja718liwb398wk0"))))
14397 (build-system python-build-system)
14398 (native-inputs
14399 `(("python-tox" ,python-tox)))
14400 (home-page "http://www.grantjenks.com/docs/sortedcontainers/")
14401 (synopsis "Sorted List, Sorted Dict, Sorted Set")
14402 (description
14403 "This package provides a sorted collections library, written in
14404pure-Python.")
14405 (license license:asl2.0)))
14406
14407(define-public python-cloudpickle
14408 (package
14409 (name "python-cloudpickle")
14410 (version "0.6.1")
14411 (source
14412 (origin
14413 (method url-fetch)
14414 (uri (pypi-uri "cloudpickle" version))
14415 (sha256
14416 (base32
14417 "1wdw89mlm7fqa3fm3ymskx05jrys66n8m1z1a8s0mss0799ahsgi"))))
14418 (build-system python-build-system)
14419 ;; FIXME: there are 5 errors in 122 tests:
14420 ;; ERROR: test_function_pickle_compat_0_4_0 (tests.cloudpickle_test.CloudPickleTest)
14421 ;; ERROR: test_function_pickle_compat_0_4_1 (tests.cloudpickle_test.CloudPickleTest)
14422 ;; ERROR: test_function_pickle_compat_0_4_0 (tests.cloudpickle_test.Protocol2CloudPickleTest)
14423 ;; ERROR: test_function_pickle_compat_0_4_1 (tests.cloudpickle_test.Protocol2CloudPickleTest)
14424 ;; ERROR: test_temp_file (tests.cloudpickle_file_test.CloudPickleFileTests)
14425 ;; TypeError: cannot serialize '_io.BufferedRandom' object
14426 (arguments '(#:tests? #f))
14427 (native-inputs
14428 `(("python-pytest" ,python-pytest)
14429 ("python-mock" ,python-mock)
14430 ("python-tornado" ,python-tornado)))
14431 (home-page "https://github.com/cloudpipe/cloudpickle")
14432 (synopsis "Extended pickling support for Python objects")
14433 (description
14434 "Cloudpickle makes it possible to serialize Python constructs not
14435supported by the default pickle module from the Python standard library. It
14436is especially useful for cluster computing where Python expressions are
14437shipped over the network to execute on remote hosts, possibly close to the
14438data.")
14439 (license license:bsd-3)))
14440
14441(define-public python2-cloudpickle
14442 (package-with-python2 python-cloudpickle))
14443
14444(define-public python-locket
14445 (package
14446 (name "python-locket")
14447 (version "0.2.0")
14448 (source
14449 (origin
14450 (method url-fetch)
14451 (uri (pypi-uri "locket" version))
14452 (sha256
14453 (base32
14454 "1d4z2zngrpqkrfhnd4yhysh66kjn4mblys2l06sh5dix2p0n7vhz"))))
14455 (build-system python-build-system)
14456 (home-page "https://github.com/mwilliamson/locket.py")
14457 (synopsis "File-based locks for Python")
14458 (description
14459 "Locket implements a lock that can be used by multiple processes provided
14460they use the same path.")
14461 (license license:bsd-2)))
14462
14463(define-public python2-locket
14464 (package-with-python2 python-locket))
14465
14466(define-public python-blosc
14467 (package
14468 (name "python-blosc")
14469 (version "1.5.1")
14470 (source
14471 (origin
14472 (method url-fetch)
14473 (uri (pypi-uri "blosc" version))
14474 (sha256
14475 (base32
14476 "1cm91c6r431yla2mbs4895bgiianjf30dfz14vvv99dslygd65jw"))))
14477 (build-system python-build-system)
14478 ;; FIXME: all tests pass, but then this error is printed:
14479 ;; TypeError: calling <function run at 0x7ffff2568d90> returned None, not a test
14480 (arguments '(#:tests? #f))
14481 (propagated-inputs
14482 `(("python-numpy" ,python-numpy)))
14483 (home-page "https://github.com/blosc/python-blosc")
14484 (synopsis "Python wrapper for the Blosc data compressor library")
14485 (description "Blosc is a high performance compressor optimized for binary
14486data. It has been designed to transmit data to the processor cache faster
14487than the traditional, non-compressed, direct memory fetch approach via a
14488@code{memcpy()} system call.
14489
14490Blosc works well for compressing numerical arrays that contains data with
14491relatively low entropy, like sparse data, time series, grids with
14492regular-spaced values, etc.
14493
14494This Python package wraps the Blosc library.")
14495 (license license:bsd-3)))
14496
14497(define-public python2-blosc
14498 (package-with-python2 python-blosc))
14499
14500(define-public python-partd
14501 (package
14502 (name "python-partd")
14503 (version "0.3.9")
14504 (source
14505 (origin
14506 (method url-fetch)
14507 (uri (pypi-uri "partd" version))
14508 (sha256
14509 (base32
14510 "0sz6rwlnl4fqq220pyz863cnv0gjdxl4m7lscl71ishl5z0xkmhz"))))
14511 (build-system python-build-system)
14512 (propagated-inputs
14513 `(("python-blosc" ,python-blosc)
14514 ("python-locket" ,python-locket)
14515 ("python-numpy" ,python-numpy)
14516 ("python-pandas" ,python-pandas)
14517 ("python-pyzmq" ,python-pyzmq)
14518 ("python-toolz" ,python-toolz)))
14519 (home-page "https://github.com/dask/partd/")
14520 (synopsis "Appendable key-value storage")
14521 (description "Partd stores key-value pairs. Values are raw bytes. We
14522append on old values. Partd excels at shuffling operations.")
14523 (license license:bsd-3)))
14524
14525(define-public python2-partd
14526 (package-with-python2 python-partd))
14527
14528(define-public python-dask
14529 (package
14530 (name "python-dask")
14531 (version "1.0.0")
14532 (source
14533 (origin
14534 (method url-fetch)
14535 (uri (pypi-uri "dask" version))
14536 (sha256
14537 (base32
14538 "1xwz8h020ipwav2p5gcq9pskya1cvzd6hjyvd06dvr3w5lxlmym1"))))
14539 (build-system python-build-system)
14540 ;; A single test out of 5000+ fails. This test is marked as xfail when
14541 ;; pytest-xdist is used.
14542 (arguments
14543 `(#:phases
14544 (modify-phases %standard-phases
14545 (add-after 'unpack 'disable-broken-test
14546 (lambda _
14547 (substitute* "dask/tests/test_threaded.py"
14548 (("def test_interrupt\\(\\)" m)
14549 (string-append "@pytest.mark.skip(reason=\"Disabled by Guix\")\n"
14550 m)))
14551 (when (which "python2")
14552 ;; This test fails with recent Pandas:
14553 ;; <https://github.com/dask/dask/issues/3794>.
14554 (substitute* "dask/dataframe/tests/test_dataframe.py"
14555 (("def test_info\\(\\)" m)
14556 (string-append "@pytest.mark.skip(reason=\"Disabled by Guix\")\n"
14557 m))))
14558 #t))
14559 (replace 'check
14560 (lambda _ (invoke "pytest" "-vv"))))))
14561 (propagated-inputs
14562 `(("python-cloudpickle" ,python-cloudpickle)
14563 ("python-numpy" ,python-numpy)
14564 ("python-pandas" ,python-pandas)
14565 ("python-partd" ,python-partd)
14566 ("python-toolz" ,python-toolz)
14567 ("python-pyyaml" ,python-pyyaml)))
14568 (native-inputs
14569 `(("python-pytest" ,python-pytest)
14570 ("python-pytest-runner" ,python-pytest-runner)))
14571 (home-page "https://github.com/dask/dask/")
14572 (synopsis "Parallel computing with task scheduling")
14573 (description
14574 "Dask is a flexible parallel computing library for analytics. It
14575consists of two components: dynamic task scheduling optimized for computation,
14576and large data collections like parallel arrays, dataframes, and lists that
14577extend common interfaces like NumPy, Pandas, or Python iterators to
14578larger-than-memory or distributed environments. These parallel collections
14579run on top of the dynamic task schedulers. ")
14580 (license license:bsd-3)))
14581
14582(define-public python2-dask
14583 (package-with-python2 python-dask))
14584
14585(define-public python-ilinkedlist
14586 (package
14587 (name "python-ilinkedlist")
14588 (version "0.4.0")
14589 (source
14590 (origin
14591 (method url-fetch)
14592 (uri (pypi-uri "ilinkedlist" version))
14593 (sha256
14594 (base32
14595 "0nrw4sr3afldrp7073hvc0rgdz282s0l819jdmj1i6nn05v33h0l"))))
14596 (build-system python-build-system)
14597 (native-inputs `(("python-pytest" ,python-pytest)))
14598 (inputs `(("python" ,python)))
14599 (home-page "https://github.com/luther9/ilinkedlist-py")
14600 (synopsis "Immutable linked list library")
14601 (description
14602 "This is a implementation of immutable linked lists for Python. It
14603contains @code{nil} (the empty linked list) and a @code{Pair} class for nodes.
14604Since a linked list is treated as immutable, it is hashable, and its length
14605can be retrieved in constant time. Some of the terminology is inspired by
14606LISP. It is possible to create an improper list by creating a @code{Pair}
14607with a non-list @code{cdr}.")
14608 (license license:gpl3+)))
14609
14610(define-public python-readlike
14611 (package
14612 (name "python-readlike")
14613 (version "0.1.3")
14614 (source
14615 (origin
14616 (method url-fetch)
14617 (uri (pypi-uri "readlike" version))
14618 (sha256
14619 (base32 "027w8fvi50ksl57q0a7kb5zvmq8jxaawnviib1jdqw0p3igvm1j4"))))
14620 (build-system python-build-system)
14621 (home-page "https://github.com/jangler/readlike")
14622 (synopsis "GNU Readline-like line editing module")
14623 (description
14624 "This Python module provides line editing functions similar to the default
14625Emacs-style ones of GNU Readline. Unlike the Python standard library's
14626@code{readline} package, this one allows access to those capabilties in settings
14627outside of a standard command-line interface. It is especially well-suited to
14628interfacing with Urwid, due to a shared syntax for describing key inputs.
14629
14630Currently, all stateless Readline commands are implemented. Yanking and history
14631are not supported.")
14632 (license license:expat)))
14633
14634(define-public python2-readlike
14635 (package-with-python2 python-readlike))
14636
14637(define-public python-reparser
14638 (package
14639 (name "python-reparser")
14640 (version "1.4.3")
14641 (source
14642 (origin
14643 (method url-fetch)
14644 (uri (pypi-uri "ReParser" version))
14645 (sha256
14646 (base32 "0nniqb69xr0fv7ydlmrr877wyyjb61nlayka7xr08vlxl9caz776"))))
14647 (build-system python-build-system)
14648 (home-page "https://github.com/xmikos/reparser")
14649 (synopsis "Simple lexer/parser for inline markup based on regular expressions")
14650 (description
14651 "This Python library provides a simple lexer/parser for inline markup based
14652on regular expressions.")
14653 (license license:expat)))
14654
14655(define-public python2-reparser
14656 (let ((reparser (package-with-python2
14657 (strip-python2-variant python-reparser))))
14658 (package (inherit reparser)
14659 (propagated-inputs
14660 `(("python2-enum34" ,python2-enum34)
14661 ,@(package-propagated-inputs reparser))))))
14662
14663(define-public python-precis-i18n
14664 (package
14665 (name "python-precis-i18n")
14666 (version "1.0.0")
14667 (source
14668 (origin
14669 (method url-fetch)
14670 (uri (pypi-uri "precis_i18n" version))
14671 (sha256
14672 (base32
14673 "0gjhvwd8aifx94rl1ag08vlmndyx2q3fkyqb0c4i46x3p2bc2yi2"))))
14674 (build-system python-build-system)
14675 (home-page "https://github.com/byllyfish/precis_i18n")
14676 (synopsis "Implementation of the PRECIS framework")
14677 (description
14678 "This module implements the PRECIS Framework as described in RFC 8264,
14679RFC 8265 and RFC 8266.")
14680 (license license:expat)))
14681
d0446c4b
RW
14682(define-public python-absl-py
14683 (package
14684 (name "python-absl-py")
14685 (version "0.6.1")
14686 (source
14687 (origin
14688 (method url-fetch)
14689 (uri (pypi-uri "absl-py" version))
14690 (sha256
14691 (base32
14692 "1mp9lk0b2qa37b7y6ak4lvf6ifw2ylyy6bkf9ik77md3j4xrwlc7"))))
14693 (build-system python-build-system)
14694 (propagated-inputs
14695 `(("python-six" ,python-six)))
14696 (home-page "https://github.com/abseil/abseil-py")
14697 (synopsis "Abseil Python common libraries")
14698 (description
14699 "This package provides the Abseil Python Common Libraries, a collection
14700of Python libraries for building Python applications.")
14701 (license license:asl2.0)))
14702
81bed4e9
RW
14703(define-public python-astor
14704 (package
14705 (name "python-astor")
14706 (version "0.7.1")
14707 (source
14708 (origin
14709 (method url-fetch)
14710 (uri (pypi-uri "astor" version))
14711 (sha256
14712 (base32
14713 "13gv6f2xz9i564byp21gcpc0l3w4cs23k1wbcam8kky2ls3hvhwm"))))
14714 (build-system python-build-system)
14715 ;; FIXME: There are two errors and two test failures.
14716 (arguments `(#:tests? #f))
14717 (home-page "https://github.com/berkerpeksag/astor")
14718 (synopsis "Read/rewrite/write Python ASTs")
14719 (description "Astor is designed to allow easy manipulation of Python
14720source via the AST.")
14721 (license license:bsd-3)))
14722
22e623ae
RW
14723(define-public python-grpcio
14724 (package
14725 (name "python-grpcio")
14726 (version "1.17.1")
14727 (source
14728 (origin
14729 (method url-fetch)
14730 (uri (pypi-uri "grpcio" version))
14731 (sha256
14732 (base32
14733 "0qb9y6j83nxa6d4kc60i8yfgdm7a8ms7b54kncjzf5y7nsxp8rzx"))))
14734 (build-system python-build-system)
14735 (propagated-inputs
14736 `(("python-six" ,python-six)))
14737 (home-page "https://grpc.io")
14738 (synopsis "HTTP/2-based RPC framework")
14739 (description "This package provides a Python library for communicating
14740with the HTTP/2-based RPC framework gRPC.")
14741 (license license:asl2.0)))
14742
79869f80
RW
14743(define-public python-astunparse
14744 (package
14745 (name "python-astunparse")
14746 (version "1.6.1")
14747 (source
14748 (origin
14749 (method url-fetch)
14750 (uri (pypi-uri "astunparse" version))
14751 (sha256
14752 (base32
14753 "1jhidwyrqn17avqh9xnnm3wd7q7aahaq009cba67g86y6gxicyyj"))))
14754 (build-system python-build-system)
14755 (arguments '(#:tests? #f)) ; there are none
14756 (propagated-inputs
14757 `(("python-six" ,python-six)
14758 ("python-wheel" ,python-wheel)))
14759 (home-page "https://github.com/simonpercivall/astunparse")
14760 (synopsis "AST unparser for Python")
14761 (description "This package provides an AST unparser for Python. It is a
14762factored out version of @code{unparse} found in the Python source
14763distribution.")
14764 (license license:bsd-3)))
14765
2884aac0
RW
14766(define-public python-gast
14767 (package
14768 (name "python-gast")
14769 (version "0.2.0")
14770 (source
14771 (origin
14772 (method url-fetch)
14773 (uri (pypi-uri "gast" version))
14774 (sha256
14775 (base32
14776 "0c296xm1vz9x4w4inmdl0k8mnc0i9arw94si2i7pglpc461r0s3h"))))
14777 (build-system python-build-system)
14778 (propagated-inputs
14779 `(("python-astunparse" ,python-astunparse)))
14780 (home-page "https://pypi.org/project/gast/")
14781 (synopsis "Generic Python AST that abstracts the underlying Python version")
14782 (description
14783 "GAST provides a compatibility layer between the AST of various Python
14784versions, as produced by @code{ast.parse} from the standard @code{ast}
14785module.")
14786 (license license:bsd-3)))
14787
44d10b1f
RW
14788(define-public python-wikidata
14789 (package
14790 (name "python-wikidata")
14791 (version "0.6.1")
14792 (source
14793 (origin
14794 (method url-fetch)
14795 (uri (pypi-uri "Wikidata" version))
14796 (sha256
14797 (base32
14798 "08nlnydddfp1jj0cdmshvld1irzngbp3dij928wqsg9ziklm6mw9"))))
14799 (build-system python-build-system)
14800 (propagated-inputs
14801 `(("python-babel" ,python-babel)))
14802 (home-page "https://github.com/dahlia/wikidata")
14803 (synopsis "Wikidata client library")
14804 (description
14805 "This package provides a Python interface to
14806@url{https://www.wikidata.org/, Wikidata}.")
14807 (properties '((upstream-name . "Wikidata")))
14808 (license license:gpl3+)))
14809
14810(define-public python-doctest-ignore-unicode
14811 (package
14812 (name "python-doctest-ignore-unicode")
14813 (version "0.1.2")
14814 (source
14815 (origin
14816 (method url-fetch)
14817 (uri (pypi-uri "doctest-ignore-unicode" version))
14818 (sha256
14819 (base32
14820 "1m9aa4qnyj21lbq4sbvmv1vcz7zksss4rz37ddf2hxv4hk8b547w"))))
14821 (build-system python-build-system)
14822 (native-inputs
14823 `(("python-nose" ,python-nose)))
14824 (home-page "https://github.com/gnublade/doctest-ignore-unicode")
14825 (synopsis "Ignore Unicode literal prefixes in doctests")
14826 (description
14827 "This package adds support for a flag to ignore Unicode literal prefixes
14828in doctests.")
14829 (license license:asl2.0)))
14830
14831(define-public python-attr
14832 (package
14833 (name "python-attr")
14834 (version "0.3.1")
14835 (source
14836 (origin
14837 (method url-fetch)
14838 (uri (pypi-uri "attr" version))
14839 (sha256
14840 (base32
14841 "0pbpskvxp5hzdvcaf766ljwpckshir8sf7z6jqji6zyib20594ch"))))
14842 (build-system python-build-system)
14843 (home-page "https://github.com/denis-ryzhkov/attr")
14844 (synopsis "Decorator for attributes of target function or class")
14845 (description "Simple decorator to set attributes of target function or
14846class in a @acronym{DRY, Don't Repeat Yourself} way.")
14847 (license license:expat)))