gnu: python-vobject: Update to 0.9.5.
[jackhill/guix/guix.git] / gnu / packages / python.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
3 ;;; Copyright © 2013, 2014, 2015, 2016, 2017 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 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 Ben Woodcroft <donttrustben@gmail.com>
16 ;;; Copyright © 2015, 2016 Erik Edrosa <erik.edrosa@gmail.com>
17 ;;; Copyright © 2015, 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
18 ;;; Copyright © 2015 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 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 Troy Sankey <sankeytms@gmail.com>
26 ;;; Copyright © 2016, 2017 ng0 <contact.ng0@cryptolab.net>
27 ;;; Copyright © 2016 Dylan Jeffers <sapientech@sapientech@openmailbox.org>
28 ;;; Copyright © 2016 David Craven <david@craven.ch>
29 ;;; Copyright © 2016, 2017 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 Alex Vong <alexvong1995@gmail.com>
33 ;;; Copyright © 2016, 2017 Arun Isaac <arunisaac@systemreboot.net>
34 ;;; Copyright © 2016, 2017 Julien Lepiller <julien@lepiller.eu>
35 ;;; Copyright © 2016, 2017 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 Adriano Peluso <catonano@gmail.com>
40 ;;; Copyright © 2017 Ben Sturmfels <ben@sturm.com.au>
41 ;;; Copyright © 2017 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 Kei Kebreau <kei@openmailbox.org>
45 ;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
46 ;;;
47 ;;; This file is part of GNU Guix.
48 ;;;
49 ;;; GNU Guix is free software; you can redistribute it and/or modify it
50 ;;; under the terms of the GNU General Public License as published by
51 ;;; the Free Software Foundation; either version 3 of the License, or (at
52 ;;; your option) any later version.
53 ;;;
54 ;;; GNU Guix is distributed in the hope that it will be useful, but
55 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
56 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
57 ;;; GNU General Public License for more details.
58 ;;;
59 ;;; You should have received a copy of the GNU General Public License
60 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
61
62 (define-module (gnu packages python)
63 #:use-module ((guix licenses) #:prefix license:)
64 #:use-module (gnu packages)
65 #:use-module (gnu packages algebra)
66 #:use-module (gnu packages adns)
67 #:use-module (gnu packages attr)
68 #:use-module (gnu packages backup)
69 #:use-module (gnu packages bash)
70 #:use-module (gnu packages compression)
71 #:use-module (gnu packages crypto)
72 #:use-module (gnu packages databases)
73 #:use-module (gnu packages django)
74 #:use-module (gnu packages file)
75 #:use-module (gnu packages fontutils)
76 #:use-module (gnu packages gcc)
77 #:use-module (gnu packages ghostscript)
78 #:use-module (gnu packages gl)
79 #:use-module (gnu packages glib)
80 #:use-module (gnu packages graphviz)
81 #:use-module (gnu packages gstreamer)
82 #:use-module (gnu packages gtk)
83 #:use-module (gnu packages icu4c)
84 #:use-module (gnu packages image)
85 #:use-module (gnu packages imagemagick)
86 #:use-module (gnu packages libevent)
87 #:use-module (gnu packages libffi)
88 #:use-module (gnu packages linux)
89 #:use-module (gnu packages man)
90 #:use-module (gnu packages maths)
91 #:use-module (gnu packages multiprecision)
92 #:use-module (gnu packages networking)
93 #:use-module (gnu packages ncurses)
94 #:use-module (gnu packages openstack)
95 #:use-module (gnu packages password-utils)
96 #:use-module (gnu packages pcre)
97 #:use-module (gnu packages perl)
98 #:use-module (gnu packages pkg-config)
99 #:use-module (gnu packages protobuf)
100 #:use-module (gnu packages qt)
101 #:use-module (gnu packages readline)
102 #:use-module (gnu packages sdl)
103 #:use-module (gnu packages shells)
104 #:use-module (gnu packages ssh)
105 #:use-module (gnu packages statistics)
106 #:use-module (gnu packages tex)
107 #:use-module (gnu packages texinfo)
108 #:use-module (gnu packages tls)
109 #:use-module (gnu packages version-control)
110 #:use-module (gnu packages video)
111 #:use-module (gnu packages web)
112 #:use-module (gnu packages base)
113 #:use-module (gnu packages xml)
114 #:use-module (gnu packages xorg)
115 #:use-module (gnu packages xdisorg)
116 #:use-module (gnu packages tcl)
117 #:use-module (gnu packages bdw-gc)
118 #:use-module (guix packages)
119 #:use-module (guix download)
120 #:use-module (guix git-download)
121 #:use-module (guix utils)
122 #:use-module (guix build-system gnu)
123 #:use-module (guix build-system cmake)
124 #:use-module (guix build-system python)
125 #:use-module (guix build-system trivial)
126 #:use-module (srfi srfi-1))
127
128 (define-public python-2.7
129 (package
130 (name "python")
131 (version "2.7.13")
132 (source
133 (origin
134 (method url-fetch)
135 (uri (string-append "https://www.python.org/ftp/python/"
136 version "/Python-" version ".tar.xz"))
137 (sha256
138 (base32
139 "0cgpk3zk0fgpji59pb4zy9nzljr70qzgv1vpz5hq5xw2d2c47m9m"))
140 (patches (search-patches "python-2.7-search-paths.patch"
141 "python-2-deterministic-build-info.patch"
142 "python-2.7-site-prefixes.patch"
143 "python-2.7-source-date-epoch.patch"
144 "python-2.7-getentropy-on-old-kernels.patch"))
145 (modules '((guix build utils)))
146 ;; suboptimal to delete failing tests here, but if we delete them in the
147 ;; arguments then we need to make sure to strip out that phase when it
148 ;; gets inherited by python and python-minimal.
149 (snippet
150 '(begin
151 (for-each delete-file
152 '("Lib/test/test_compileall.py"
153 "Lib/test/test_ctypes.py" ; fails on mips64el
154 "Lib/test/test_distutils.py"
155 "Lib/test/test_import.py"
156 "Lib/test/test_shutil.py"
157 "Lib/test/test_socket.py"
158 "Lib/test/test_subprocess.py"))
159 #t))))
160 (outputs '("out"
161 "tk")) ;tkinter; adds 50 MiB to the closure
162 (build-system gnu-build-system)
163 (arguments
164 `(;; 356 tests OK.
165 ;; 6 tests failed:
166 ;; test_compileall test_distutils test_import test_shutil test_socket
167 ;; test_subprocess
168 ;; 39 tests skipped:
169 ;; test_aepack test_al test_applesingle test_bsddb test_bsddb185
170 ;; test_bsddb3 test_cd test_cl test_codecmaps_cn test_codecmaps_hk
171 ;; test_codecmaps_jp test_codecmaps_kr test_codecmaps_tw test_curses
172 ;; test_dl test_gdb test_gl test_imageop test_imgfile test_ioctl
173 ;; test_kqueue test_linuxaudiodev test_macos test_macostools
174 ;; test_msilib test_ossaudiodev test_scriptpackages test_smtpnet
175 ;; test_socketserver test_startfile test_sunaudiodev test_timeout
176 ;; test_tk test_ttk_guionly test_urllib2net test_urllibnet
177 ;; test_winreg test_winsound test_zipfile64
178 ;; 4 skips unexpected on linux2:
179 ;; test_bsddb test_bsddb3 test_gdb test_ioctl
180 #:test-target "test"
181 #:configure-flags
182 (list "--enable-shared" ;allow embedding
183 "--with-system-ffi" ;build ctypes
184 "--with-ensurepip=install" ;install pip and setuptools
185 "--enable-unicode=ucs4"
186 (string-append "LDFLAGS=-Wl,-rpath="
187 (assoc-ref %outputs "out") "/lib"))
188
189 #:modules ((ice-9 ftw) (ice-9 match)
190 (guix build utils) (guix build gnu-build-system))
191 #:phases
192 (modify-phases %standard-phases
193 (add-before
194 'configure 'patch-lib-shells
195 (lambda _
196 ;; Filter for existing files, since some may not exist in all
197 ;; versions of python that are built with this recipe.
198 (substitute* (filter file-exists?
199 '("Lib/subprocess.py"
200 "Lib/popen2.py"
201 "Lib/distutils/tests/test_spawn.py"
202 "Lib/test/test_subprocess.py"))
203 (("/bin/sh") (which "sh")))
204
205 ;; Use zero as the timestamp in .pyc files so that builds are
206 ;; deterministic. TODO: Remove it when this variable is set in
207 ;; gnu-build-system.scm.
208 (setenv "SOURCE_DATE_EPOCH" "1")
209 #t))
210 (add-before 'configure 'do-not-record-configure-flags
211 (lambda* (#:key configure-flags #:allow-other-keys)
212 ;; Remove configure flags from the installed '_sysconfigdata.py'
213 ;; and 'Makefile' so we don't end up keeping references to the
214 ;; build tools.
215 ;;
216 ;; Preserve at least '--with-system-ffi' since otherwise the
217 ;; thing tries to build libffi, fails, and we end up with a
218 ;; Python that lacks ctypes.
219 (substitute* "configure"
220 (("^CONFIG_ARGS=.*$")
221 (format #f "CONFIG_ARGS='~a'\n"
222 (if (member "--with-system-ffi" configure-flags)
223 "--with-system-ffi"
224 ""))))
225 #t))
226 (add-before
227 'check 'pre-check
228 (lambda _
229 ;; 'Lib/test/test_site.py' needs a valid $HOME
230 (setenv "HOME" (getcwd))
231 #t))
232 (add-after
233 'unpack 'set-source-file-times-to-1980
234 ;; XXX One of the tests uses a ZIP library to pack up some of the
235 ;; source tree, and fails with "ZIP does not support timestamps
236 ;; before 1980". Work around this by setting the file times in the
237 ;; source tree to sometime in early 1980.
238 (lambda _
239 (let ((circa-1980 (* 10 366 24 60 60)))
240 (ftw "." (lambda (file stat flag)
241 (utime file circa-1980 circa-1980)
242 #t))
243 #t)))
244 (add-after 'install 'remove-tests
245 ;; Remove 25 MiB of unneeded unit tests. Keep test_support.*
246 ;; because these files are used by some libraries out there.
247 (lambda* (#:key outputs #:allow-other-keys)
248 (let ((out (assoc-ref outputs "out")))
249 (match (scandir (string-append out "/lib")
250 (lambda (name)
251 (string-prefix? "python" name)))
252 ((pythonX.Y)
253 (let ((testdir (string-append out "/lib/" pythonX.Y
254 "/test")))
255 (with-directory-excursion testdir
256 (for-each delete-file-recursively
257 (scandir testdir
258 (match-lambda
259 ((or "." "..") #f)
260 (file
261 (not
262 (string-prefix? "test_support."
263 file))))))
264 (call-with-output-file "__init__.py" (const #t))
265 #t)))))))
266 (add-before 'strip 'make-libraries-writable
267 (lambda* (#:key outputs #:allow-other-keys)
268 ;; Make .so files writable so they can be stripped.
269 (let ((out (assoc-ref outputs "out")))
270 (for-each (lambda (file)
271 (chmod file #o755))
272 (find-files (string-append out "/lib")
273 "\\.so"))
274 #t)))
275 (add-after 'install 'move-tk-inter
276 (lambda* (#:key outputs #:allow-other-keys)
277 ;; When Tkinter support is built move it to a separate output so
278 ;; that the main output doesn't contain a reference to Tcl/Tk.
279 (let ((out (assoc-ref outputs "out"))
280 (tk (assoc-ref outputs "tk")))
281 (when tk
282 (match (find-files out "tkinter.*\\.so")
283 ((tkinter.so)
284 ;; The .so is in OUT/lib/pythonX.Y/lib-dynload, but we
285 ;; want it under TK/lib/pythonX.Y/site-packages.
286 (let* ((len (string-length out))
287 (target (string-append
288 tk "/"
289 (string-drop
290 (dirname (dirname tkinter.so))
291 len)
292 "/site-packages")))
293 (install-file tkinter.so target)
294 (delete-file tkinter.so)))))
295 #t))))))
296 (inputs
297 `(("bzip2" ,bzip2)
298 ("gdbm" ,gdbm)
299 ("libffi" ,libffi) ; for ctypes
300 ("sqlite" ,sqlite) ; for sqlite extension
301 ("openssl" ,openssl)
302 ("readline" ,readline)
303 ("zlib" ,zlib)
304 ("tcl" ,tcl)
305 ("tk" ,tk))) ; for tkinter
306 (native-inputs
307 `(("pkg-config" ,pkg-config)))
308 (native-search-paths
309 (list (search-path-specification
310 (variable "PYTHONPATH")
311 (files '("lib/python2.7/site-packages")))))
312 (home-page "https://www.python.org")
313 (synopsis "High-level, dynamically-typed programming language")
314 (description
315 "Python is a remarkably powerful dynamic programming language that
316 is used in a wide variety of application domains. Some of its key
317 distinguishing features include: clear, readable syntax; strong
318 introspection capabilities; intuitive object orientation; natural
319 expression of procedural code; full modularity, supporting hierarchical
320 packages; exception-based error handling; and very high level dynamic
321 data types.")
322 (license license:psfl)))
323
324 ;; Current 2.x version.
325 (define-public python-2 python-2.7)
326
327 (define-public python-3.5
328 (package (inherit python-2)
329 (version "3.5.3")
330 (source (origin
331 (method url-fetch)
332 (uri (string-append "https://www.python.org/ftp/python/"
333 version "/Python-" version ".tar.xz"))
334 (patches (search-patches
335 "python-fix-tests.patch"
336 "python-3.5-fix-tests.patch"
337 "python-3.5-getentropy-on-old-kernels.patch"
338 "python-3-deterministic-build-info.patch"
339 "python-3-search-paths.patch"))
340 (patch-flags '("-p0"))
341 (sha256
342 (base32
343 "1c6v1n9nz4mlx9mw1125fxpmbrgniqdbbx9hnqx44maqazb2mzpf"))
344 (snippet
345 '(delete-file
346 "Lib/ctypes/test/test_win32.py")))) ; fails on aarch64
347 (arguments (substitute-keyword-arguments (package-arguments python-2)
348 ((#:tests? _) #t)))
349 (native-search-paths
350 (list (search-path-specification
351 (variable "PYTHONPATH")
352 (files (list (string-append "lib/python"
353 (version-major+minor version)
354 "/site-packages"))))))))
355
356 ;; Current 3.x version.
357 (define-public python-3 python-3.5)
358
359 ;; Current major version.
360 (define-public python python-3)
361
362 ;; Minimal variants of Python, mostly used to break the cycle between Tk and
363 ;; Python (Tk -> libxcb -> Python.)
364
365 (define-public python2-minimal
366 (package (inherit python-2)
367 (name "python-minimal")
368 (outputs '("out"))
369
370 ;; Keep zlib, which is used by 'pip' (via the 'zipimport' module), which
371 ;; is invoked upon 'make install'. 'pip' also expects 'ctypes' and thus
372 ;; libffi.
373 (inputs `(("libffi" ,libffi)
374 ("zlib" ,zlib)))))
375
376 (define-public python-minimal
377 (package (inherit python)
378 (name "python-minimal")
379 (outputs '("out"))
380
381 ;; Build fails due to missing ctypes without libffi.
382 ;; OpenSSL is a mandatory dependency of Python 3.x, for urllib;
383 ;; zlib is required by 'zipimport', used by pip.
384 (inputs `(("libffi" ,libffi)
385 ("openssl" ,openssl)
386 ("zlib" ,zlib)))))
387
388 (define* (wrap-python3 python
389 #:optional
390 (name (string-append (package-name python) "-wrapper")))
391 (package (inherit python)
392 (name name)
393 (source #f)
394 (build-system trivial-build-system)
395 (outputs '("out"))
396 (inputs `(("bash" ,bash)))
397 (propagated-inputs `(("python" ,python)))
398 (arguments
399 `(#:modules ((guix build utils))
400 #:builder
401 (begin
402 (use-modules (guix build utils))
403 (let ((bin (string-append (assoc-ref %outputs "out") "/bin"))
404 (python (string-append (assoc-ref %build-inputs "python") "/bin/")))
405 (mkdir-p bin)
406 (for-each
407 (lambda (old new)
408 (symlink (string-append python old)
409 (string-append bin "/" new)))
410 `("python3" ,"pydoc3" ,"idle3" ,"pip3")
411 `("python" ,"pydoc" ,"idle" ,"pip"))
412 ;; python-config outputs search paths based upon its location,
413 ;; use a bash wrapper to avoid changing its outputs.
414 (let ((bash (string-append (assoc-ref %build-inputs "bash")
415 "/bin/bash"))
416 (old (string-append python "python3-config"))
417 (new (string-append bin "/python-config")))
418 (with-output-to-file new
419 (lambda ()
420 (format #t "#!~a~%" bash)
421 (format #t "exec \"~a\" \"$@\"~%" old)
422 (chmod new #o755)
423 #t)))))))
424 (synopsis "Wrapper for the Python 3 commands")
425 (description
426 "This package provides wrappers for the commands of Python@tie{}3.x such
427 that they can be invoked under their usual name---e.g., @command{python}
428 instead of @command{python3}.")))
429
430 (define-public python-wrapper (wrap-python3 python))
431 (define-public python-minimal-wrapper (wrap-python3 python-minimal))
432
433 (define-public python-psutil
434 (package
435 (name "python-psutil")
436 (version "4.3.0")
437 (source
438 (origin
439 (method url-fetch)
440 (uri (pypi-uri "psutil" version))
441 (sha256
442 (base32
443 "1w4r09fvn6kd80m5mx4ws1wz100brkaq6hzzpwrns8cgjzjpl6c6"))))
444 (build-system python-build-system)
445 (arguments
446 ;; FIXME: some tests does not return and times out.
447 '(#:tests? #f))
448 (home-page "https://www.github.com/giampaolo/psutil")
449 (synopsis "Library for retrieving information on running processes")
450 (description
451 "psutil (Python system and process utilities) is a library for retrieving
452 information on running processes and system utilization (CPU, memory, disks,
453 network) in Python. It is useful mainly for system monitoring, profiling and
454 limiting process resources and management of running processes. It implements
455 many functionalities offered by command line tools such as: ps, top, lsof,
456 netstat, ifconfig, who, df, kill, free, nice, ionice, iostat, iotop, uptime,
457 pidof, tty, taskset, pmap.")
458 (license license:bsd-3)))
459
460 (define-public python2-psutil
461 (package-with-python2 python-psutil))
462
463 (define-public python-passlib
464 (package
465 (name "python-passlib")
466 (version "1.7.1")
467 (source
468 (origin
469 (method url-fetch)
470 (uri (pypi-uri "passlib" version))
471 (sha256
472 (base32
473 "1q2khqpj9rlcgdmkypjdq1kswvhjf72bq0zk2cv669cc2dj8z51x"))))
474 (build-system python-build-system)
475 (native-inputs
476 `(("python-nose" ,python-nose)))
477 (propagated-inputs
478 `(("python-py-bcrypt" ,python-py-bcrypt)))
479 (arguments
480 `(#:phases
481 (alist-cons-before
482 'check 'set-PYTHON_EGG_CACHE
483 ;; some tests require access to "$HOME/.cython"
484 (lambda* _ (setenv "PYTHON_EGG_CACHE" "/tmp"))
485 %standard-phases)))
486 (home-page "https://bitbucket.org/ecollins/passlib")
487 (synopsis
488 "Comprehensive password hashing framework")
489 (description
490 "Passlib is a password hashing library for Python 2 & 3, which provides
491 cross-platform implementations of over 30 password hashing algorithms, as well
492 as a framework for managing existing password hashes. It's designed to be
493 useful for a wide range of tasks, from verifying a hash found in /etc/shadow,
494 to providing full-strength password hashing for multi-user application.")
495 (license license:bsd-3)))
496
497 (define-public python2-passlib
498 (package-with-python2 python-passlib))
499
500 (define-public python-py-bcrypt
501 (package
502 (name "python-py-bcrypt")
503 (version "0.4")
504 (source
505 (origin
506 (method url-fetch)
507 (uri (string-append
508 "https://pypi.python.org/packages/source/p/py-bcrypt/py-bcrypt-"
509 version
510 ".tar.gz"))
511 (sha256
512 (base32
513 "0y6smdggwi5s72v6p1nn53dg6w05hna3d264cq6kas0lap73p8az"))))
514 (build-system python-build-system)
515 (home-page "https://code.google.com/p/py-bcrypt")
516 (synopsis
517 "Bcrypt password hashing and key derivation")
518 (description
519 "A python wrapper of OpenBSD's Blowfish password hashing code. This
520 system hashes passwords using a version of Bruce Schneier's Blowfish block
521 cipher with modifications designed to raise the cost of off-line password
522 cracking and frustrate fast hardware implementation. The computation cost of
523 the algorithm is parametised, so it can be increased as computers get faster.
524 The intent is to make a compromise of a password database less likely to
525 result in an attacker gaining knowledge of the plaintext passwords (e.g. using
526 John the Ripper).")
527 ;; "sha2.c" is under BSD-3;
528 ;; "blowfish.c" and "bcrypt.c" are under BSD-4;
529 ;; the rest is under ISC.
530 (license (list license:isc license:bsd-3 license:bsd-4))))
531
532 (define-public python2-py-bcrypt
533 (package-with-python2 python-py-bcrypt))
534
535
536 (define-public python-paramiko
537 (package
538 (name "python-paramiko")
539 (version "2.1.2")
540 (source
541 (origin
542 (method url-fetch)
543 (uri (pypi-uri "paramiko" version))
544 (sha256
545 (base32
546 "04734n0wy3hxk6rij4fr29in5jmr70nxpc7pqi2ksbjysfz4kbjz"))))
547 (build-system python-build-system)
548 (arguments
549 '(#:phases
550 (modify-phases %standard-phases
551 (replace 'check
552 (lambda _
553 (zero? (system* "python" "test.py")))))))
554 (propagated-inputs
555 `(("python-pyasn1" ,python-pyasn1)
556 ("python-cryptography" ,python-cryptography)))
557 (home-page "http://www.paramiko.org/")
558 (synopsis "SSHv2 protocol library")
559 (description "Paramiko is a python implementation of the SSHv2 protocol,
560 providing both client and server functionality. While it leverages a Python C
561 extension for low level cryptography (PyCrypto), Paramiko itself is a pure
562 Python interface around SSH networking concepts.")
563 (license license:lgpl2.1+)))
564
565 (define-public python2-paramiko
566 (package-with-python2 python-paramiko))
567
568
569 (define-public python-httplib2
570 (package
571 (name "python-httplib2")
572 (version "0.9.2")
573 (source
574 (origin
575 (method url-fetch)
576 (uri (pypi-uri "httplib2" version))
577 (sha256
578 (base32
579 "126rsryvw9vhbf3qmsfw9lf4l4xm2srmgs439lgma4cpag4s3ay3"))))
580 (build-system python-build-system)
581 (home-page "https://github.com/jcgregorio/httplib2")
582 (synopsis "Comprehensive HTTP client library")
583 (description
584 "A comprehensive HTTP client library supporting many features left out of
585 other HTTP libraries.")
586 (license license:expat)))
587
588 (define-public python2-httplib2
589 (package-with-python2 python-httplib2))
590
591 (define-public python-ecdsa
592 (package
593 (name "python-ecdsa")
594 (version "0.13")
595 (source
596 (origin
597 (method url-fetch)
598 (uri (string-append
599 "https://pypi.python.org/packages/source/e/ecdsa/ecdsa-"
600 version
601 ".tar.gz"))
602 (sha256
603 (base32
604 "1yj31j0asmrx4an9xvsaj2icdmzy6pw0glfpqrrkrphwdpi1xkv4"))))
605 (build-system python-build-system)
606 (inputs
607 `(("openssl" ,openssl)))
608 (home-page
609 "https://github.com/warner/python-ecdsa")
610 (synopsis
611 "ECDSA cryptographic signature library (pure python)")
612 (description
613 "This is an easy-to-use implementation of ECDSA cryptography (Elliptic
614 Curve Digital Signature Algorithm), implemented purely in Python. With this
615 library, you can quickly create keypairs (signing key and verifying key), sign
616 messages, and verify the signatures. The keys and signatures are very short,
617 making them easy to handle and incorporate into other protocols.")
618 (license license:expat)))
619
620 (define-public python2-ecdsa
621 (package-with-python2 python-ecdsa))
622
623 (define-public python-ccm
624 (package
625 (name "python-ccm")
626 (version "2.1.6")
627 (source
628 (origin
629 (method url-fetch)
630 (uri (pypi-uri "ccm" version))
631 (sha256
632 (base32
633 "177dfxsmk3k4cih6fh6v8d91bh4nqx7ns6pc07w7m7i3cvdx3c8n"))))
634 (build-system python-build-system)
635 (propagated-inputs
636 `(("python-pyyaml" ,python-pyyaml)
637 ;; Not listed in setup.py, but used in ccmlib/node.py for full
638 ;; functionality
639 ("python-psutil" ,python-psutil)
640 ("python-six" ,python-six)))
641 (home-page "https://github.com/pcmanus/ccm")
642 (synopsis "Cassandra Cluster Manager for Apache Cassandra clusters on
643 localhost")
644 (description "Cassandra Cluster Manager is a development tool for testing
645 local Cassandra clusters. It creates, launches and removes Cassandra clusters
646 on localhost.")
647 (license license:asl2.0)))
648
649 (define-public python2-ccm
650 (package-with-python2 python-ccm))
651
652 (define-public python-pytz
653 (package
654 (name "python-pytz")
655 (version "2016.10")
656 (source
657 (origin
658 (method url-fetch)
659 (uri (pypi-uri "pytz" version ".tar.bz2"))
660 (sha256
661 (base32
662 "0az099cyp6p5xbsvfcdacj4hvxncbwm2ayn3h55mcp07zb2b45kh"))))
663 (build-system python-build-system)
664 (arguments `(#:tests? #f)) ; no test target
665 (home-page "http://pythonhosted.org/pytz")
666 (synopsis "Python timezone library")
667 (description
668 "This library allows accurate and cross platform timezone calculations
669 using Python 2.4 or higher and provides access to the Olson timezone database.")
670 (license license:expat)))
671
672 (define-public python2-pytz
673 (package-with-python2 python-pytz))
674
675
676 (define-public python-babel
677 (package
678 (name "python-babel")
679 (version "2.3.4")
680 (source
681 (origin
682 (method url-fetch)
683 (uri (pypi-uri "Babel" version))
684 (sha256
685 (base32
686 "0x98qqqw35xllpcama013a9788ly84z8dm1w2wwfpxh2710c8df5"))))
687 (build-system python-build-system)
688 (propagated-inputs
689 `(("python-pytz" ,python-pytz)))
690 (arguments `(#:tests? #f)) ; no test target
691 (home-page "http://babel.pocoo.org/")
692 (synopsis
693 "Tools for internationalizing Python applications")
694 (description
695 "Babel is composed of two major parts:
696 - tools to build and work with gettext message catalogs
697 - a Python interface to the CLDR (Common Locale Data Repository), providing
698 access to various locale display names, localized number and date formatting,
699 etc. ")
700 (license license:bsd-3)))
701
702 (define-public python2-babel
703 (package-with-python2 python-babel))
704
705 (define-public python2-backport-ssl-match-hostname
706 (package
707 (name "python2-backport-ssl-match-hostname")
708 (version "3.5.0.1")
709 (source
710 (origin
711 (method url-fetch)
712 (uri (string-append
713 "https://pypi.python.org/packages/source/b/"
714 "backports.ssl_match_hostname/backports.ssl_match_hostname-"
715 version ".tar.gz"))
716 (sha256
717 (base32
718 "1wndipik52cyqy0677zdgp90i435pmvwd89cz98lm7ri0y3xjajh"))))
719 (build-system python-build-system)
720 (arguments
721 `(#:python ,python-2
722 #:tests? #f)) ; no test target
723 (home-page "https://bitbucket.org/brandon/backports.ssl_match_hostname")
724 (synopsis "Backport of ssl.match_hostname() function from Python 3.5")
725 (description
726 "This backport brings the ssl.match_hostname() function to users of
727 earlier versions of Python. The function checks the hostname in the
728 certificate returned by the server to which a connection has been established,
729 and verifies that it matches the intended target hostname.")
730 (license license:psfl)))
731
732 (define-public python-hdf4
733 (package
734 (name "python-hdf4")
735 (version "0.9")
736 (source
737 (origin
738 (method url-fetch)
739 (uri (pypi-uri name version))
740 (sha256
741 (base32
742 "1hjiyrxvxk9817qyqky3nar4y3fs4z8wxz0n884zzb5wi6skrjks"))))
743 (build-system python-build-system)
744 (native-inputs `(("nose" ,python-nose)))
745 (propagated-inputs `(("numpy" ,python-numpy)))
746 (inputs
747 `(("hdf4" ,hdf4)
748 ("libjpeg" ,libjpeg)
749 ("zlib" ,zlib)))
750 (arguments
751 `(#:phases
752 (modify-phases %standard-phases
753 (replace 'check
754 (lambda _
755 ;; The 'runexamples' script sets PYTHONPATH to CWD, then goes
756 ;; on to import numpy. Somehow this works on their CI system.
757 ;; Let's just manage PYTHONPATH here instead.
758 (substitute* "runexamples.sh"
759 (("export PYTHONPATH=.*") ""))
760 (setenv "PYTHONPATH"
761 (string-append (getcwd) ":"
762 (getenv "PYTHONPATH")))
763 (and (zero? (system* "./runexamples.sh"))
764 (zero? (system* "nosetests" "-v"))))))))
765 (home-page "https://github.com/fhs/python-hdf4")
766 (synopsis "Python interface to the NCSA HDF4 library")
767 (description
768 "Python-HDF4 is a python wrapper around the NCSA HDF version 4 library,
769 which implements the SD (Scientific Dataset), VS (Vdata) and V (Vgroup) API’s.
770 NetCDF files can also be read and modified. Python-HDF4 is a fork of
771 @url{http://hdfeos.org/software/pyhdf.php,pyhdf}.")
772 (license license:expat)))
773
774 (define-public python2-hdf4
775 (package-with-python2 python-hdf4))
776
777 (define-public python-h5py
778 (package
779 (name "python-h5py")
780 (version "2.6.0")
781 (source
782 (origin
783 (method url-fetch)
784 (uri (pypi-uri "h5py" version))
785 (sha256
786 (base32
787 "0df46dg7i7xfking9lp221bfm8dbl974yvlrbi1w7r6m61ac7bxj"))))
788 (build-system python-build-system)
789 (arguments
790 `(#:tests? #f ; no test target
791 #:phases
792 (modify-phases %standard-phases
793 (add-after 'unpack 'fix-hdf5-paths
794 (lambda* (#:key inputs #:allow-other-keys)
795 (let ((prefix (assoc-ref inputs "hdf5")))
796 (substitute* "setup_build.py"
797 (("\\['/opt/local/lib', '/usr/local/lib'\\]")
798 (string-append "['" prefix "/lib" "']"))
799 (("'/opt/local/include', '/usr/local/include'")
800 (string-append "'" prefix "/include" "'")))
801 (substitute* "setup_configure.py"
802 (("\\['/usr/local/lib', '/opt/local/lib'\\]")
803 (string-append "['" prefix "/lib" "']")))
804 #t))))))
805 (propagated-inputs
806 `(("python-six" ,python-six)
807 ("python-numpy" ,python-numpy)))
808 (inputs
809 `(("hdf5" ,hdf5)))
810 (native-inputs
811 `(("python-cython" ,python-cython)
812 ("python-pkgconfig" ,python-pkgconfig)))
813 (home-page "http://www.h5py.org/")
814 (synopsis "Read and write HDF5 files from Python")
815 (description
816 "The h5py package provides both a high- and low-level interface to the
817 HDF5 library from Python. The low-level interface is intended to be a
818 complete wrapping of the HDF5 API, while the high-level component supports
819 access to HDF5 files, datasets and groups using established Python and NumPy
820 concepts.")
821 (license license:bsd-3)))
822
823 (define-public python2-h5py
824 (package-with-python2 python-h5py))
825
826 (define-public python-netcdf4
827 (package
828 (name "python-netcdf4")
829 (version "1.2.7")
830 (source
831 (origin
832 (method url-fetch)
833 (uri (pypi-uri "netCDF4" version))
834 (sha256
835 (base32
836 "1fllizmnpw0zkzzm4j9pgamarlzfn3kmv9zrm0w65q1y31h9ni0c"))))
837 (build-system python-build-system)
838 (native-inputs
839 `(("python-cython" ,python-cython)))
840 (propagated-inputs
841 `(("python-numpy" ,python-numpy)))
842 (inputs
843 `(("netcdf" ,netcdf)
844 ("hdf4" ,hdf4)
845 ("hdf5" ,hdf5)))
846 (arguments
847 '(#:phases
848 (modify-phases %standard-phases
849 (replace 'check
850 (lambda _
851 (setenv "NO_NET" "1") ; disable opendap tests
852 (with-directory-excursion "test"
853 (setenv "PYTHONPATH" ; find and add the library we just built
854 (string-append
855 (car (find-files "../build" "lib.*"
856 #:directories? #:t
857 #:fail-on-error? #:t))
858 ":" (getenv "PYTHONPATH")))
859 (zero? (system* "python" "run_all.py"))))))))
860 (home-page
861 "https://github.com/Unidata/netcdf4-python")
862 (synopsis "Python/numpy interface to the netCDF library")
863 (description "Netcdf4-python is a Python interface to the netCDF C
864 library. netCDF version 4 has many features not found in earlier
865 versions of the library and is implemented on top of HDF5. This module
866 can read and write files in both the new netCDF 4 and the old netCDF 3
867 format, and can create files that are readable by HDF5 clients. The
868 API is modelled after @code{Scientific.IO.NetCDF}, and should be familiar
869 to users of that module.")
870 ;; The software is mainly ISC, but includes some files covered
871 ;; by the Expat license.
872 (license (list license:isc license:expat))))
873
874 (define-public python2-netcdf4
875 (package-with-python2 python-netcdf4))
876
877 (define-public python-lockfile
878 (package
879 (name "python-lockfile")
880 (version "0.12.2")
881 (source
882 (origin
883 (method url-fetch)
884 (uri (string-append "https://pypi.python.org/packages/source/l/lockfile/"
885 "lockfile-" version ".tar.gz"))
886 (sha256
887 (base32
888 "16gpx5hm73ah5n1079ng0vy381hl802v606npkx4x8nb0gg05vba"))))
889 (build-system python-build-system)
890 (arguments '(#:test-target "check"))
891 (native-inputs
892 `(("python-pbr" ,python-pbr)))
893 (home-page "https://launchpad.net/pylockfile")
894 (synopsis "Platform-independent file locking module")
895 (description
896 "The lockfile package exports a LockFile class which provides a simple
897 API for locking files.")
898 (license license:expat)))
899
900 (define-public python2-lockfile
901 (package-with-python2 python-lockfile))
902
903 (define-public python-mock
904 (package
905 (name "python-mock")
906 (version "1.0.1")
907 (source
908 (origin
909 (method url-fetch)
910 (uri (pypi-uri "mock" version))
911 (sha256
912 (base32
913 "0kzlsbki6q0awf89rc287f3aj8x431lrajf160a70z0ikhnxsfdq"))))
914 (build-system python-build-system)
915 (arguments '(#:test-target "check"))
916 (home-page "https://github.com/testing-cabal/mock")
917 (synopsis "Python mocking and patching library for testing")
918 (description
919 "Mock is a library for testing in Python. It allows you to replace parts
920 of your system under test with mock objects and make assertions about how they
921 have been used.")
922 (license license:expat)))
923
924 (define-public python2-mock
925 (package-with-python2 python-mock))
926
927 ;;; Some packages (notably, certbot and python-acme) rely on this newer version
928 ;;; of python-mock. However, a large number of packages fail to build with
929 ;;; mock@2, so we add a new variable for now. Also, there may be a dependency
930 ;;; cycle between mock and six, so we avoid creating python2-mock@2 for now.
931 (define-public python-mock-2
932 (package
933 (inherit python-mock)
934 (version "2.0.0")
935 (source
936 (origin
937 (method url-fetch)
938 (uri (pypi-uri "mock" version))
939 (sha256
940 (base32
941 "1flbpksir5sqrvq2z0dp8sl4bzbadg21sj4d42w3klpdfvgvcn5i"))))
942 (propagated-inputs
943 `(("python-pbr" ,python-pbr-minimal)
944 ,@(package-propagated-inputs python-mock)))))
945
946 (define-public python-setuptools
947 (package
948 (name "python-setuptools")
949 (version "31.0.0")
950 (source
951 (origin
952 (method url-fetch)
953 (uri (pypi-uri "setuptools" version))
954 (sha256
955 (base32
956 "0ypybh4hx3bv4vhg2dc74xpj1g56ggnaffm87k4abhwjwq6wq608"))
957 (modules '((guix build utils)))
958 (snippet
959 '(begin
960 ;; Remove included binaries which are used to build self-extracting
961 ;; installers for Windows.
962 ;; TODO: Find some way to build them ourself so we can include them.
963 (for-each delete-file (find-files "setuptools" "^(cli|gui).*\\.exe$"))
964 #t))))
965 (build-system python-build-system)
966 ;; FIXME: Tests require pytest, which itself relies on setuptools.
967 ;; One could bootstrap with an internal untested setuptools.
968 (arguments
969 `(#:tests? #f))
970 (home-page "https://pypi.python.org/pypi/setuptools")
971 (synopsis
972 "Library designed to facilitate packaging Python projects")
973 (description
974 "Setuptools is a fully-featured, stable library designed to facilitate
975 packaging Python projects, where packaging includes:
976 Python package and module definitions,
977 distribution package metadata,
978 test hooks,
979 project installation,
980 platform-specific details,
981 Python 3 support.")
982 ;; TODO: setuptools now bundles the following libraries:
983 ;; packaging, pyparsing, six and appdirs. How to unbundle?
984 (license (list license:psfl ; setuptools itself
985 license:expat ; six, appdirs, pyparsing
986 license:asl2.0 ; packaging is dual ASL2/BSD-2
987 license:bsd-2))))
988
989 (define-public python2-setuptools
990 (package-with-python2 python-setuptools))
991
992 (define-public python-uniseg
993 (package
994 (name "python-uniseg")
995 (version "0.7.1")
996 (source
997 (origin
998 (method url-fetch)
999 (uri (string-append "https://bitbucket.org/emptypage/uniseg-python/"
1000 "get/rel-" version ".tar.gz"))
1001 (file-name (string-append name "-" version ".tar.gz"))
1002 (sha256
1003 (base32
1004 "1df4gddnj2a0v8z35wb2ra5vvh1f1qyxs8fgd25c8g64031mna6x"))))
1005 (build-system python-build-system)
1006 (arguments
1007 '(#:tests? #f)) ; The test suite requires network access.
1008 (home-page
1009 "https://bitbucket.org/emptypage/uniseg-python")
1010 (synopsis
1011 "Python library to determine Unicode text segmentations")
1012 (description
1013 "Uniseg is a Python package used to determine Unicode text segmentations.
1014 Supported segmentations include:
1015 @enumerate
1016 @item @dfn{Code point} (any value in the Unicode codespace)
1017 @item @dfn{Grapheme cluster} (user-perceived character made of a single or
1018 multiple Unicode code points, e.g. \"G\" + acute-accent)
1019 @item Word break
1020 @item Sentence break
1021 @item Line break
1022 @end enumerate")
1023 (license license:expat)))
1024
1025 (define-public python2-uniseg
1026 (package-with-python2 python-uniseg))
1027
1028 ;;; Pycrypto is abandoned upstream:
1029 ;;;
1030 ;;; https://github.com/dlitz/pycrypto/issues/173
1031 ;;;
1032 ;;; TODO Remove this package from GNU Guix.
1033 (define-public python-pycrypto
1034 (package
1035 (name "python-pycrypto")
1036 (version "2.6.1")
1037 (source
1038 (origin
1039 (method url-fetch)
1040 (uri (pypi-uri "pycrypto" version))
1041 (patches (search-patches "python-pycrypto-CVE-2013-7459.patch"))
1042 (sha256
1043 (base32
1044 "0g0ayql5b9mkjam8hym6zyg6bv77lbh66rv1fyvgqb17kfc1xkpj"))))
1045 (build-system python-build-system)
1046 (inputs
1047 `(("python" ,python)
1048 ("gmp" ,gmp)))
1049 (arguments
1050 `(#:phases
1051 (alist-cons-before
1052 'build 'set-build-env
1053 ;; pycrypto runs an autoconf configure script behind the scenes
1054 (lambda _
1055 (setenv "CONFIG_SHELL" (which "bash")))
1056 %standard-phases)))
1057 (home-page "http://www.pycrypto.org/")
1058 (synopsis "Cryptographic modules for Python")
1059 (description
1060 "Pycrypto is a collection of both secure hash functions (such as SHA256
1061 and RIPEMD160), and various encryption algorithms (AES, DES, RSA, ElGamal,
1062 etc.). The package is structured to make adding new modules easy.")
1063 (license license:public-domain)))
1064
1065 (define-public python2-pycrypto
1066 (let ((pycrypto (package-with-python2 python-pycrypto)))
1067 (package (inherit pycrypto)
1068 (inputs
1069 `(("python" ,python-2)
1070 ,@(alist-delete
1071 "python"
1072 (package-inputs pycrypto)))))))
1073
1074 (define-public python-eventlet
1075 (package
1076 (name "python-eventlet")
1077 (version "0.20.1")
1078 (source
1079 (origin
1080 (method url-fetch)
1081 (uri (pypi-uri "eventlet" version))
1082 (sha256
1083 (base32
1084 "0f3q55mq4n021wb7qa53pz3ix6i2py64sap66vsaqm2scjw83m9s"))))
1085 (build-system python-build-system)
1086 (propagated-inputs
1087 `(("python-greenlet" ,python-greenlet)))
1088 (arguments
1089 ;; TODO: Requires unpackaged 'enum-compat'.
1090 '(#:tests? #f))
1091 (home-page "http://eventlet.net")
1092 (synopsis "Concurrent networking library for Python")
1093 (description
1094 "Eventlet is a concurrent networking library for Python that
1095 allows you to change how you run your code, not how you write it.
1096 It uses @code{epoll} or @code{libevent} for highly scalable non-blocking I/O.
1097 Coroutines ensure that the developer uses a blocking style of programming
1098 that is similar to threading, but provide the benefits of non-blocking I/O.
1099 The event dispatch is implicit, which means you can easily use @code{Eventlet}
1100 from the Python interpreter, or as a small part of a larger application.")
1101 (license license:expat)))
1102
1103 (define-public python2-eventlet
1104 (let ((base (package-with-python2
1105 (strip-python2-variant python-eventlet))))
1106 (package (inherit base)
1107 (propagated-inputs
1108 `(("python2-enum34" ,python2-enum34)
1109 ,@(package-propagated-inputs base))))))
1110
1111 (define-public python-keyring
1112 (package
1113 (name "python-keyring")
1114 (version "8.7")
1115 (source
1116 (origin
1117 (method url-fetch)
1118 (uri (pypi-uri "keyring" version))
1119 (sha256
1120 (base32
1121 "0482rmi2x6p78wl2kz8qzyq21xz1sbbfwnv5x7dggar4vkwxhzfx"))))
1122 (build-system python-build-system)
1123 (native-inputs
1124 `(("python-setuptools-scm" ,python-setuptools-scm)))
1125 (propagated-inputs
1126 `(("python-pycrypto" ,python-pycrypto)))
1127 (arguments
1128 `(#:tests? #f)) ;TODO: tests require pytest
1129 (home-page "https://github.com/jaraco/keyring")
1130 (synopsis "Store and access your passwords safely")
1131 (description
1132 "The Python keyring lib provides a easy way to access the system keyring
1133 service from python. It can be used in any application that needs safe
1134 password storage.")
1135 ;; "MIT" and PSF dual license
1136 (license license:x11)))
1137
1138 (define-public python2-keyring
1139 (package-with-python2 python-keyring))
1140
1141 (define-public python-six
1142 (package
1143 (name "python-six")
1144 (version "1.10.0")
1145 (source
1146 (origin
1147 (method url-fetch)
1148 (uri (pypi-uri "six" version))
1149 (sha256
1150 (base32
1151 "0snmb8xffb3vsma0z67i0h0w2g2dy0p3gsgh9gi4i0kgc5l8spqh"))))
1152 (build-system python-build-system)
1153 (native-inputs
1154 `(("python-py" ,python-py)
1155 ("python-pytest" ,python-pytest)))
1156 (home-page "http://pypi.python.org/pypi/six/")
1157 (synopsis "Python 2 and 3 compatibility utilities")
1158 (description
1159 "Six is a Python 2 and 3 compatibility library. It provides utility
1160 functions for smoothing over the differences between the Python versions with
1161 the goal of writing Python code that is compatible on both Python versions.
1162 Six supports every Python version since 2.5. It is contained in only one
1163 Python file, so it can be easily copied into your project.")
1164 (license license:x11)))
1165
1166 (define-public python2-six
1167 (package-with-python2 python-six))
1168
1169 (define-public python-dateutil
1170 (package
1171 (name "python-dateutil")
1172 (version "2.6.0")
1173 (source
1174 (origin
1175 (method url-fetch)
1176 (uri (pypi-uri "python-dateutil" version))
1177 (sha256
1178 (base32
1179 "1lhq0hxjc3cfha101q02ld5ijlpfyjn2w1yh7wvpiy367pgzi8k2"))))
1180 (build-system python-build-system)
1181 (propagated-inputs
1182 `(("python-six" ,python-six)))
1183 (home-page "https://dateutil.readthedocs.io/en/stable/")
1184 (synopsis "Extensions to the standard datetime module")
1185 (description
1186 "The dateutil module provides powerful extensions to the standard
1187 datetime module, available in Python 2.3+.")
1188 (license license:bsd-3)))
1189
1190 (define-public python2-dateutil
1191 (package-with-python2 python-dateutil))
1192
1193 (define-public python-parsedatetime
1194 (package
1195 (name "python-parsedatetime")
1196 (version "2.3")
1197 (source
1198 (origin
1199 (method url-fetch)
1200 (uri (pypi-uri "parsedatetime" version))
1201 (sha256
1202 (base32
1203 "1vkrmd398s11h1zn3zaqqsiqhj9lwy1ikcg6irx2lrgjzjg3rjll"))))
1204 (build-system python-build-system)
1205 (native-inputs
1206 `(("python-nose" ,python-nose)
1207 ("python-pyicu" ,python-pyicu)
1208 ("python-pytest" ,python-pytest)
1209 ("python-pytest-runner" ,python-pytest-runner)))
1210 (propagated-inputs
1211 `(("python-future" ,python-future)))
1212 (home-page "https://github.com/bear/parsedatetime/")
1213 (synopsis
1214 "Parse human-readable date/time text")
1215 (description
1216 "Parse human-readable date/time text.")
1217 (license license:asl2.0)))
1218
1219 (define-public python2-parsedatetime
1220 (package-with-python2 python-parsedatetime))
1221
1222 (define-public python-pandas
1223 (package
1224 (name "python-pandas")
1225 (version "0.19.2")
1226 (source
1227 (origin
1228 (method url-fetch)
1229 (uri (pypi-uri "pandas" version))
1230 (sha256
1231 (base32 "0540cnbwy2hc4hv2sxfs8i47xi91qzvzxfn80dl785ibiicly3vg"))
1232 (patches
1233 (search-patches "python-pandas-skip-failing-tests.patch"))))
1234 (build-system python-build-system)
1235 (propagated-inputs
1236 `(("python-numpy" ,python-numpy)
1237 ("python-pytz" ,python-pytz)
1238 ("python-dateutil" ,python-dateutil)))
1239 (native-inputs
1240 `(("python-nose" ,python-nose)
1241 ("python-cython" ,python-cython)))
1242 (home-page "http://pandas.pydata.org")
1243 (synopsis "Data structures for data analysis, time series, and statistics")
1244 (description
1245 "Pandas is a Python package providing fast, flexible, and expressive data
1246 structures designed to make working with structured (tabular,
1247 multidimensional, potentially heterogeneous) and time series data both easy
1248 and intuitive. It aims to be the fundamental high-level building block for
1249 doing practical, real world data analysis in Python.")
1250 (license license:bsd-3)))
1251
1252 (define-public python2-pandas
1253 (package-with-python2 python-pandas))
1254
1255 (define-public python-tzlocal
1256 (package
1257 (name "python-tzlocal")
1258 (version "1.2.2")
1259 (source
1260 (origin
1261 (method url-fetch)
1262 (uri (pypi-uri "tzlocal" version))
1263 (sha256
1264 (base32
1265 "0paj7vlsb0np8b5sp4bv64wxv7qk2piyp7xg29pkhdjwsbls9fnb"))))
1266 (build-system python-build-system)
1267 (propagated-inputs
1268 `(("python-pytz" ,python-pytz)))
1269 (home-page "https://github.com/regebro/tzlocal")
1270 (synopsis
1271 "Local timezone information for Python")
1272 (description
1273 "Tzlocal returns a tzinfo object with the local timezone information.
1274 This module attempts to fix a glaring hole in pytz, that there is no way to
1275 get the local timezone information, unless you know the zoneinfo name, and
1276 under several distributions that's hard or impossible to figure out.")
1277 (license license:cc0)))
1278
1279 (define-public python2-pysqlite
1280 (package
1281 (name "python2-pysqlite")
1282 (version "2.8.3")
1283 (source
1284 (origin
1285 (method url-fetch)
1286 (uri (pypi-uri "pysqlite" version))
1287 (sha256
1288 (base32
1289 "1424gwq9sil2ffmnizk60q36vydkv8rxs6m7xs987kz8cdc37lqp"))))
1290 (build-system python-build-system)
1291 (inputs
1292 `(("sqlite" ,sqlite)))
1293 (arguments
1294 `(#:python ,python-2 ; incompatible with Python 3
1295 #:tests? #f)) ; no test target
1296 (home-page "https://github.com/ghaering/pysqlite")
1297 (synopsis "SQLite bindings for Python")
1298 (description
1299 "Pysqlite provides SQLite bindings for Python that comply to the
1300 Database API 2.0T.")
1301 (license license:zlib)))
1302
1303
1304 (define-public python2-mechanize
1305 (package
1306 (name "python2-mechanize")
1307 (version "0.2.5")
1308 (source
1309 (origin
1310 (method url-fetch)
1311 (uri (string-append "https://pypi.python.org/packages/source/m/mechanize/mechanize-"
1312 version ".tar.gz"))
1313 (sha256
1314 (base32
1315 "0rj7r166i1dyrq0ihm5rijfmvhs8a04im28lv05c0c3v206v4rrf"))))
1316 (build-system python-build-system)
1317 (arguments
1318 `(#:python ,python-2 ; apparently incompatible with Python 3
1319 #:tests? #f))
1320 ;; test fails with message
1321 ;; AttributeError: 'module' object has no attribute 'test_pullparser'
1322 ;; (python-3.3.2) or
1323 ;; AttributeError: 'module' object has no attribute 'test_urllib2_localnet'
1324 ;; (python-2.7.5).
1325 ;; The source code is from March 2011 and probably not up-to-date
1326 ;; with respect to python unit tests.
1327 (home-page "http://wwwsearch.sourceforge.net/mechanize/")
1328 (synopsis
1329 "Stateful programmatic web browsing in Python")
1330 (description
1331 "Mechanize implements stateful programmatic web browsing in Python,
1332 after Andy Lester’s Perl module WWW::Mechanize.")
1333 (license (license:non-copyleft
1334 "file://COPYING"
1335 "See COPYING in the distribution."))))
1336
1337
1338 (define-public python-simplejson
1339 (package
1340 (name "python-simplejson")
1341 (version "3.10.0")
1342 (source
1343 (origin
1344 (method url-fetch)
1345 (uri (pypi-uri "simplejson" version))
1346 (sha256
1347 (base32
1348 "1qhwsykjlb85igb4cfl6v6gkprzbbg8gyqdd7zscc8w3x0ifcfwm"))))
1349 (build-system python-build-system)
1350 (home-page "http://simplejson.readthedocs.org/en/latest/")
1351 (synopsis
1352 "Json library for Python")
1353 (description
1354 "JSON (JavaScript Object Notation) is a subset of JavaScript
1355 syntax (ECMA-262 3rd edition) used as a lightweight data interchange
1356 format.
1357
1358 Simplejson exposes an API familiar to users of the standard library marshal
1359 and pickle modules. It is the externally maintained version of the json
1360 library contained in Python 2.6, but maintains compatibility with Python 2.5
1361 and (currently) has significant performance advantages, even without using
1362 the optional C extension for speedups. Simplejson is also supported on
1363 Python 3.3+.")
1364 (license license:x11)))
1365
1366 (define-public python2-simplejson
1367 (package-with-python2 python-simplejson))
1368
1369
1370 (define-public python-pyicu
1371 (package
1372 (name "python-pyicu")
1373 (version "1.9.5")
1374 (source
1375 (origin
1376 (method url-fetch)
1377 (uri (pypi-uri "PyICU" version))
1378 (sha256
1379 (base32
1380 "16rmxy9y0qhqqna2v49i7nzwm09as699rbyvh4raw7w602w55c3k"))))
1381 (build-system python-build-system)
1382 (arguments
1383 '(#:phases
1384 (modify-phases %standard-phases
1385 (add-before 'check 'delete-failing-test
1386 (lambda _
1387 ;; XXX: These tests require locales that are unavailable
1388 ;; in the build environment.
1389 (delete-file "test/test_DateTimeParserGenerator.py")
1390 #t)))))
1391 (inputs
1392 `(("icu4c" ,icu4c)))
1393 (home-page "http://pyicu.osafoundation.org/")
1394 (synopsis "Python extension wrapping the ICU C++ API")
1395 (description
1396 "PyICU is a python extension wrapping the ICU C++ API.")
1397 (license license:x11)))
1398
1399 (define-public python2-pyicu
1400 (package-with-python2 python-pyicu))
1401
1402 (define-public python2-dogtail
1403 ;; Python 2 only, as it leads to "TabError: inconsistent use of tabs and
1404 ;; spaces in indentation" with Python 3.
1405 (package
1406 (name "python2-dogtail")
1407 (version "0.9.9")
1408 (source (origin
1409 (method url-fetch)
1410 (uri (pypi-uri "dogtail" version))
1411 (sha256
1412 (base32
1413 "0p5wfssvzr9w0bvhllzbbd8fnp4cca2qxcpcsc33dchrmh5n552x"))))
1414 (build-system python-build-system)
1415 (arguments `(#:python ,python-2
1416 #:tests? #f)) ; invalid command "test"
1417 ;; Currently no offical homepage.
1418 (home-page "https://pypi.python.org/pypi/dogtail/")
1419 (synopsis "GUI test tool and automation framework written in Python")
1420 (description
1421 "Dogtail is a GUI test tool and automation framework written in Python.
1422 It uses Accessibility (a11y) technologies to communicate with desktop
1423 applications. dogtail scripts are written in Python and executed like any
1424 other Python program.")
1425 (license license:gpl2+)))
1426
1427 (define-public python2-empy
1428 (package
1429 (name "python2-empy")
1430 (version "3.3")
1431 (source (origin
1432 (method url-fetch)
1433 (uri (string-append "http://www.alcyone.com/software/empy/empy-"
1434 version ".tar.gz"))
1435 (sha256
1436 (base32
1437 "01g8mmkfnvjdmlhsihwyx56lrg7r5m5d2fg6mnxsvy6g0dnl69f6"))))
1438 (build-system python-build-system)
1439 (arguments
1440 `(#:python ,python-2
1441 #:phases (alist-replace
1442 'check
1443 (lambda _
1444 (zero? (system* "./test.sh")))
1445 %standard-phases)))
1446 (home-page "http://www.alcyone.com/software/empy/")
1447 (synopsis "Templating system for Python")
1448 (description
1449 "EmPy is a system for embedding Python expressions and statements in
1450 template text; it takes an EmPy source file, processes it, and produces
1451 output. This is accomplished via expansions, which are special signals to the
1452 EmPy system and are set off by a special prefix (by default the at sign, @@).
1453 EmPy can expand arbitrary Python expressions and statements in this way, as
1454 well as a variety of special forms. Textual data not explicitly delimited in
1455 this way is sent unaffected to the output, allowing Python to be used in
1456 effect as a markup language. Also supported are callbacks via hooks,
1457 recording and playback via diversions, and dynamic, chainable filters. The
1458 system is highly configurable via command line options and embedded
1459 commands.")
1460 (license license:lgpl2.1+)))
1461
1462 (define-public python2-element-tree
1463 (package
1464 (name "python2-element-tree")
1465 (version "1.2.6")
1466 (source (origin
1467 (method url-fetch)
1468 (uri (string-append
1469 "http://effbot.org/media/downloads/elementtree-"
1470 version "-20050316.tar.gz"))
1471 (sha256
1472 (base32
1473 "016bphqnlg0l4vslahhw4r0aanw95bpypy65r1i1acyb2wj5z7dj"))))
1474 (build-system python-build-system)
1475 (arguments
1476 `(#:python ,python-2 ; seems to be part of Python 3
1477 #:tests? #f)) ; no 'test' sub-command
1478 (synopsis "Toolkit for XML processing in Python")
1479 (description
1480 "ElementTree is a Python library supporting lightweight XML processing.")
1481 (home-page "http://effbot.org/zone/element-index.htm")
1482 (license (license:x11-style
1483 "http://docs.python.org/2/license.html"
1484 "Like \"CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2\"."))))
1485
1486 (define-public python2-pybugz
1487 (package
1488 (name "python2-pybugz")
1489 (version "0.6.11")
1490 (source (origin
1491 (method url-fetch)
1492 (uri (string-append
1493 "http://bits.liquidx.net/projects/pybugz/pybugz-"
1494 version ".tar.gz"))
1495 (sha256
1496 (base32
1497 "17ni00p08gp5lkxlrrcnvi3x09fmajnlbz4da03qcgl9q21ym4jd"))
1498 (patches (search-patches "pybugz-stty.patch"
1499 "pybugz-encode-error.patch"))))
1500 (build-system python-build-system)
1501 (arguments
1502 `(#:python ,python-2 ; SyntaxError with Python 3
1503 #:tests? #f)) ; no 'test' sub-command
1504 (propagated-inputs
1505 `(("element-tree" ,python2-element-tree)))
1506 (synopsis "Python and command-line interface to Bugzilla")
1507 (description
1508 "PyBugz is a Python library and command-line tool to query the Bugzilla
1509 bug tracking system. It is meant as an aid to speed up interaction with the
1510 bug tracker.")
1511 (home-page "http://www.liquidx.net/pybugz/")
1512 (license license:gpl2)))
1513
1514 (define-public python-enum34
1515 (package
1516 (name "python-enum34")
1517 (version "1.1.6")
1518 (source
1519 (origin
1520 (method url-fetch)
1521 (uri (pypi-uri "enum34" version))
1522 (sha256
1523 (base32
1524 "1cgm5ng2gcfrkrm3hc22brl6chdmv67b9zvva9sfs7gn7dwc9n4a"))))
1525 (build-system python-build-system)
1526 (home-page "https://pypi.python.org/pypi/enum34")
1527 (synopsis "Backported Python 3.4 Enum")
1528 (description
1529 "Enum34 is the new Python stdlib enum module available in Python 3.4
1530 backported for previous versions of Python from 2.4 to 3.3.")
1531 (license license:bsd-3)))
1532
1533 (define-public python2-enum34
1534 (package-with-python2 python-enum34))
1535
1536 (define-public python-parse-type
1537 (package
1538 (name "python-parse-type")
1539 (version "0.3.4")
1540 (source
1541 (origin
1542 (method url-fetch)
1543 (uri (string-append "https://pypi.python.org/packages/source/p/"
1544 "parse_type/parse_type-" version ".tar.gz"))
1545 (sha256
1546 (base32
1547 "0iv1c34npr4iynwpgv1vkjx9rjd18a85ir8c01gc5f7wp8iv7l1x"))))
1548 (build-system python-build-system)
1549 (arguments
1550 `(#:phases
1551 (modify-phases %standard-phases
1552 (add-after 'unpack 'patch-tests
1553 (lambda _
1554 (substitute* "tests/test_parse_type_parse.py"
1555 ;; Newer Python versions don't have the problem this test tests.
1556 (("self[.]assertRaises[(]parse.TooManyFields, p.parse, ''[)]")
1557 ""))
1558 #t)))))
1559 (propagated-inputs
1560 `(("python-six" ,python-six)
1561 ("python-parse" ,python-parse)))
1562 (native-inputs
1563 `(("python-pytest" ,python-pytest)
1564 ("python-pytest-runner" ,python-pytest-runner)))
1565 (home-page "https://github.com/jenisys/parse_type")
1566 (synopsis "Extended parse module")
1567 (description
1568 "Parse_type extends the python parse module.")
1569 (properties
1570 `((python2-variant . ,(delay python2-parse-type))))
1571 (license license:bsd-3)))
1572
1573 (define-public python2-parse-type
1574 (let ((base (package-with-python2
1575 (strip-python2-variant python-parse-type))))
1576 (package (inherit base)
1577 (propagated-inputs
1578 `(("python2-enum34" ,python2-enum34)
1579 ,@(package-propagated-inputs base))))))
1580
1581 (define-public python-parse
1582 (package
1583 (name "python-parse")
1584 (version "1.6.6")
1585 (source
1586 (origin
1587 (method url-fetch)
1588 (uri (pypi-uri "parse" version))
1589 (sha256
1590 (base32
1591 "0y31i3mwgv35qn0kzzjn9q8jqfdqmbi6sr6yfvn8rq4lqjm5lhvi"))
1592 (patches (search-patches "python-parse-too-many-fields.patch"))))
1593 (build-system python-build-system)
1594 (arguments
1595 `(#:phases
1596 (modify-phases %standard-phases
1597 (replace 'check
1598 (lambda _ (zero? (system* "python" "test_parse.py")))))))
1599 (home-page "https://github.com/r1chardj0n3s/parse")
1600 (synopsis "Parse strings")
1601 (description
1602 "Parse strings using a specification based on the Python format()
1603 syntax.")
1604 (license license:x11)))
1605
1606 (define-public python-polib
1607 (package
1608 (name "python-polib")
1609 (version "1.0.8")
1610 (source (origin
1611 (method url-fetch)
1612 (uri (pypi-uri "polib" version))
1613 (sha256
1614 (base32
1615 "1pq2hbm3m2q0cjdszk8mc4qa1vl3wcblh5nfyirlfnzb2pcy7zss"))))
1616 (build-system python-build-system)
1617 (home-page "https://bitbucket.org/izi/polib/wiki/Home")
1618 (synopsis "Manipulate, create and modify gettext files")
1619 (description "Polib can manipulate any gettext format (po, pot and mo)
1620 files. It can be used to create po files from scratch or to modify
1621 existing ones.")
1622 (license license:expat)))
1623
1624 (define-public python2-polib
1625 (let ((base (package-with-python2 (strip-python2-variant python-polib))))
1626 (package
1627 (inherit base)
1628 (arguments `(,@(package-arguments base)
1629 ;; Tests don't work with python2.
1630 #:tests? #f)))))
1631
1632 (define-public scons
1633 (package
1634 (name "scons")
1635 (version "2.5.1")
1636 (source (origin
1637 (method url-fetch)
1638 (uri (string-append "mirror://sourceforge/scons/scons/" version
1639 "/scons-" version ".tar.gz"))
1640 (sha256
1641 (base32
1642 "1wji1z9jdkhnmm99apx6fhld9cs52rr56aigniyrcsmlwy52298b"))))
1643 (build-system python-build-system)
1644 (arguments
1645 ;; With Python 3.x, fails to build with a syntax error.
1646 `(#:python ,python-2
1647 #:use-setuptools? #f ; still relies on distutils
1648 #:tests? #f)) ; no 'python setup.py test' command
1649 (home-page "http://scons.org/")
1650 (synopsis "Software construction tool written in Python")
1651 (description
1652 "SCons is a software construction tool. Think of SCons as an improved,
1653 cross-platform substitute for the classic Make utility with integrated
1654 functionality similar to autoconf/automake and compiler caches such as ccache.
1655 In short, SCons is an easier, more reliable and faster way to build
1656 software.")
1657 (license license:x11)))
1658
1659 (define-public python-extras
1660 (package
1661 (name "python-extras")
1662 (version "0.0.3")
1663 (source
1664 (origin
1665 (method url-fetch)
1666 (uri (string-append
1667 "https://pypi.python.org/packages/source/e/extras/extras-"
1668 version ".tar.gz"))
1669 (sha256
1670 (base32
1671 "1h7zx4dfyclalg0fqnfjijpn0f793a9mx8sy3b27gd31nr6dhq3s"))))
1672 (build-system python-build-system)
1673 (arguments
1674 ;; error in setup.cfg: command 'test' has no such option 'buffer'
1675 '(#:tests? #f))
1676 (home-page "https://github.com/testing-cabal/extras")
1677 (synopsis "Useful extensions to the Python standard library")
1678 (description
1679 "Extras is a set of extensions to the Python standard library.")
1680 (license license:expat)))
1681
1682 (define-public python2-extras
1683 (package-with-python2 python-extras))
1684
1685 (define-public python-mimeparse
1686 (package
1687 (name "python-mimeparse")
1688 (version "0.1.4")
1689 (source
1690 (origin
1691 (method url-fetch)
1692 (uri (string-append
1693 "https://pypi.python.org/packages/source/p/python-mimeparse/python-mimeparse-"
1694 version ".tar.gz"))
1695 (sha256
1696 (base32
1697 "1hyxg09kaj02ri0rmwjqi86wk4nd1akvv7n0dx77azz76wga4s9w"))))
1698 (build-system python-build-system)
1699 (arguments
1700 '(#:tests? #f)) ; no setup.py test command
1701 (home-page
1702 "https://github.com/dbtsai/python-mimeparse")
1703 (synopsis "Python library for parsing MIME types")
1704 (description
1705 "Mimeparse provides basic functions for parsing MIME type names and
1706 matching them against a list of media-ranges.")
1707 (license license:expat)))
1708
1709 (define-public python2-mimeparse
1710 (package-with-python2 python-mimeparse))
1711
1712 (define-public python-nose
1713 (package
1714 (name "python-nose")
1715 (version "1.3.7")
1716 (source
1717 (origin
1718 (method url-fetch)
1719 (uri (pypi-uri "nose" version))
1720 (sha256
1721 (base32
1722 "164a43k7k2wsqqk1s6vavcdamvss4mz0vd6pwzv2h9n8rgwzxgzi"))))
1723 (build-system python-build-system)
1724 (arguments
1725 '(#:tests? #f)) ; FIXME: test suite fails
1726 (home-page "http://readthedocs.org/docs/nose/")
1727 (synopsis "Python testing library")
1728 (description
1729 "Nose extends the unittest library to make testing easier.")
1730 (license license:lgpl2.0+)))
1731
1732 (define-public python2-nose
1733 (package-with-python2 python-nose))
1734
1735 (define-public python-nose2
1736 (package
1737 (name "python-nose2")
1738 (version "0.6.5")
1739 (source
1740 (origin
1741 (method url-fetch)
1742 (uri (pypi-uri "nose2" version))
1743 (sha256
1744 (base32
1745 "1x4zjq1zlyrh8b9ba0cmafd3w94pxhid408kibyjd3s6h1lap6s7"))))
1746 (build-system python-build-system)
1747 (arguments `(#:tests? #f)) ; 'module' object has no attribute 'collector'
1748 (propagated-inputs
1749 `(("python-cov-core" ,python-cov-core)
1750 ("python-pytest-cov" ,python-pytest-cov)
1751 ("python-six" ,python-six)))
1752 (home-page "https://github.com/nose-devs/nose2")
1753 (synopsis "Next generation of nicer testing for Python")
1754 (description
1755 "Nose2 is the next generation of nicer testing for Python, based on the
1756 plugins branch of unittest2. Nose2 aims to improve on nose by providing a
1757 better plugin api, being easier for users to configure, and simplifying internal
1758 interfaces and processes.")
1759 (license license:bsd-2)))
1760
1761 (define-public python2-nose2
1762 (package-with-python2 python-nose2))
1763
1764 (define-public python-unittest2
1765 (package
1766 (name "python-unittest2")
1767 (version "0.5.1")
1768 (source
1769 (origin
1770 (method url-fetch)
1771 (uri (string-append
1772 "https://pypi.python.org/packages/source/u/unittest2py3k/unittest2py3k-"
1773 version ".tar.gz"))
1774 (sha256
1775 (base32
1776 "00yl6lskygcrddx5zspkhr0ibgvpknl4678kkm6s626539grq93q"))))
1777 (build-system python-build-system)
1778 (home-page "http://pypi.python.org/pypi/unittest2")
1779 (synopsis "Python unit testing library")
1780 (description
1781 "Unittest2 is a replacement for the unittest module in the Python
1782 standard library.")
1783 (license license:psfl)))
1784
1785 (define-public python2-unittest2
1786 (package (inherit python-unittest2)
1787 (name "python2-unittest2")
1788 (version "0.5.1")
1789 (source
1790 (origin
1791 (method url-fetch)
1792 (uri (string-append
1793 "https://pypi.python.org/packages/source/u/unittest2/unittest2-"
1794 version ".tar.gz"))
1795 (sha256
1796 (base32
1797 "0wbs4i4x3x7klr3v35ss6p9mcqz883i1xgcpkhvl7n2lyv6yhpda"))))
1798 (arguments
1799 `(#:python ,python-2
1800 #:tests? #f)))) ; no setup.py test command
1801
1802 (define-public python-pafy
1803 (package
1804 (name "python-pafy")
1805 (version "0.5.3.1")
1806 (source
1807 (origin
1808 (method url-fetch)
1809 (uri (pypi-uri "pafy" version))
1810 (sha256
1811 (base32
1812 "1a7dxi95m1043rxx1r5x3ngb66nwlq6aqcasyqqjzmmmjps4zrim"))))
1813 (build-system python-build-system)
1814 (arguments
1815 `(#:tests? #f)) ; Currently pafy can not find itself in the tests
1816 (propagated-inputs
1817 ;; Youtube-dl is a python package which is imported in the file
1818 ;; "backend_youtube_dl.py", therefore it needs to be propagated.
1819 `(("youtube-dl" ,youtube-dl)))
1820 (home-page "https://np1.github.io/pafy/")
1821 (synopsis "Retrieve YouTube content and metadata")
1822 (description
1823 "@code{pafy} is a python library to retrieve YouTube content and metadata.")
1824 (license license:lgpl3+)))
1825
1826 (define-public python-py
1827 (package
1828 (name "python-py")
1829 (version "1.4.32")
1830 (source
1831 (origin
1832 (method url-fetch)
1833 (uri (pypi-uri "py" version))
1834 (sha256
1835 (base32
1836 "19s1pql9pq85h1qzsdwgyb8a3k1qgkvh33b02m8kfqhizz8rzf64"))))
1837 (build-system python-build-system)
1838 (arguments
1839 ;; FIXME: "ImportError: 'test' module incorrectly imported from
1840 ;; '/gnu/store/...-python-pytest-mimimal-3.0.5/lib/python3.5/site-packages'.
1841 ;; Expected '/tmp/guix-build-python-py-1.4.31.drv-0/py-1.4.31/py'.
1842 ;; Is this module globally installed?"
1843 '(#:tests? #f))
1844 (home-page "http://pylib.readthedocs.org/")
1845 (synopsis "Python library for parsing, I/O, instrospection, and logging")
1846 (description
1847 "Py is a Python library for file name parsing, .ini file parsing, I/O,
1848 code introspection, and logging.")
1849 (license license:expat)))
1850
1851 (define-public python2-py
1852 (package-with-python2 python-py))
1853
1854 (define-public python-pytest
1855 (package
1856 (name "python-pytest")
1857 (version "2.7.3")
1858 (source
1859 (origin
1860 (method url-fetch)
1861 (uri (string-append
1862 "https://pypi.python.org/packages/source/p/pytest/pytest-"
1863 version ".tar.gz"))
1864 (sha256
1865 (base32
1866 "1z4yi986f9n0p8qmzmn21m21m8j1x78hk3505f89baqm6pdw7afm"))
1867 (modules '((guix build utils)))
1868 (snippet
1869 ;; One of the tests involves the /usr directory, so it fails.
1870 '(substitute* "testing/test_argcomplete.py"
1871 (("def test_remove_dir_prefix\\(self\\):")
1872 "@pytest.mark.xfail\n def test_remove_dir_prefix(self):")))))
1873 (build-system python-build-system)
1874 (propagated-inputs
1875 `(("python-py" ,python-py)))
1876 (native-inputs
1877 `(("python-nose" ,python-nose)
1878 ("python-mock" ,python-mock)))
1879 (home-page "http://pytest.org")
1880 (synopsis "Python testing library")
1881 (description
1882 "Pytest is a testing tool that provides auto-discovery of test modules
1883 and functions, detailed info on failing assert statements, modular fixtures,
1884 and many external plugins.")
1885 (license license:expat)))
1886
1887 (define-public python2-pytest
1888 (package-with-python2 python-pytest))
1889
1890 ;; Some packages require a newer pytest.
1891 (define-public python-pytest-3.0
1892 (package
1893 (inherit python-pytest)
1894 (name "python-pytest")
1895 (version "3.0.7")
1896 (source (origin
1897 (method url-fetch)
1898 (uri (pypi-uri "pytest" version))
1899 (sha256
1900 (base32
1901 "1asc4b2nd2a4f0g3r12y97rslq5wliji7b73wwkvdrm5s7mrc1mp"))))
1902 (arguments
1903 `(#:phases
1904 (modify-phases %standard-phases
1905 (add-before 'check 'disable-invalid-test
1906 (lambda _
1907 (substitute* "testing/test_argcomplete.py"
1908 (("def test_remove_dir_prefix" line)
1909 (string-append "@pytest.mark.skip"
1910 "(reason=\"Assumes that /usr exists.\")\n "
1911 line)))
1912 #t)))))
1913 (native-inputs
1914 `(("python-nose" ,python-nose)
1915 ("python-mock" ,python-mock)
1916 ("python-hypothesis" ,python-hypothesis)))
1917 (properties `((python2-variant . ,(delay python2-pytest-3.0))))))
1918
1919 (define-public python2-pytest-3.0
1920 (let ((base (package-with-python2
1921 (strip-python2-variant python-pytest-3.0))))
1922 (package (inherit base)
1923 (native-inputs
1924 `(("python2-enum34" ,python2-enum34)
1925 ,@(package-native-inputs base))))))
1926
1927 (define-public python-pytest-cov
1928 (package
1929 (name "python-pytest-cov")
1930 (version "2.4.0")
1931 (source
1932 (origin
1933 (method url-fetch)
1934 (uri (pypi-uri "pytest-cov" version))
1935 (sha256
1936 (base32
1937 "03c2qc42r4bczyw93gd7n0qi1h1jfhw7fnbhi33c3vp1hs81gm2k"))))
1938 (build-system python-build-system)
1939 (arguments
1940 `(#:phases
1941 (modify-phases %standard-phases
1942 (replace 'check
1943 (lambda _
1944 ;; options taken from tox.ini
1945 ;; TODO: make "--restructuredtext" tests pass. They currently fail
1946 ;; with "Duplicate implicit target name"
1947 (zero? (system* "python" "./setup.py" "check"
1948 "--strict" "--metadata")))))))
1949 (propagated-inputs
1950 `(("python-coverage" ,python-coverage)
1951 ("python-pytest" ,python-pytest)))
1952 (home-page "https://github.com/pytest-dev/pytest-cov")
1953 (synopsis "Pytest plugin for measuring coverage")
1954 (description
1955 "Pytest-cov produces coverage reports. It supports centralised testing and
1956 distributed testing in both @code{load} and @code{each} modes. It also
1957 supports coverage of subprocesses.")
1958 (license license:expat)))
1959
1960 (define-public python2-pytest-cov
1961 (package-with-python2 python-pytest-cov))
1962
1963 (define-public python-pytest-runner
1964 (package
1965 (name "python-pytest-runner")
1966 (version "2.11.1")
1967 (source
1968 (origin
1969 (method url-fetch)
1970 (uri (pypi-uri "pytest-runner" version))
1971 (sha256
1972 (base32
1973 "1cw978kqqcq916b9gfns1qjqvg33c5ail5jhw9054dsynkm32flq"))))
1974 (build-system python-build-system)
1975 (arguments
1976 `(#:phases
1977 (modify-phases %standard-phases
1978 ;; The fancy way of setting the version with setuptools_scm does not
1979 ;; seem to work here.
1980 (add-after 'unpack 'set-version
1981 (lambda _
1982 (substitute* "docs/conf.py"
1983 (("version = setuptools_scm\\.get_version\\(root='\\.\\.')")
1984 (string-append "version = \"" ,version "\"")))
1985 #t)))))
1986 (native-inputs
1987 `(("python-pytest" ,python-pytest)
1988 ("python-setuptools-scm" ,python-setuptools-scm)))
1989 (home-page "https://github.com/pytest-dev/pytest-runner")
1990 (synopsis "Invoke py.test as a distutils command")
1991 (description
1992 "This package provides a @command{pytest-runner} command that
1993 @file{setup.py} files can use to run tests.")
1994 (license license:expat)))
1995
1996 (define-public python2-pytest-runner
1997 (package-with-python2 python-pytest-runner))
1998
1999 (define-public python-pytest-mock
2000 (package
2001 (name "python-pytest-mock")
2002 (version "1.2")
2003 (source
2004 (origin
2005 (method url-fetch)
2006 (uri (pypi-uri "pytest-mock" version ".zip"))
2007 (sha256
2008 (base32
2009 "03zxar5drzm7ksqyrwypjaza3cri6wqvpr6iam92djvg6znp32gp"))))
2010 (build-system python-build-system)
2011 (native-inputs
2012 `(("unzip" ,unzip)))
2013 (propagated-inputs
2014 `(("python-pytest" ,python-pytest)))
2015 (home-page "https://github.com/pytest-dev/pytest-mock/")
2016 (synopsis "Thin-wrapper around the mock package for easier use with py.test")
2017 (description
2018 "This plugin installs a @code{mocker} fixture which is a thin-wrapper
2019 around the patching API provided by the @code{mock} package, but with the
2020 benefit of not having to worry about undoing patches at the end of a test.
2021 The mocker fixture has the same API as @code{mock.patch}, supporting the
2022 same arguments.")
2023 (properties `((python2-variant . ,(delay python2-pytest-mock))))
2024 (license license:expat)))
2025
2026 (define-public python2-pytest-mock
2027 (let ((base (package-with-python2
2028 (strip-python2-variant python-pytest-mock))))
2029 (package (inherit base)
2030 (propagated-inputs
2031 `(("python2-mock" ,python2-mock)
2032 ,@(package-propagated-inputs base))))))
2033
2034 (define-public python-pytest-xdist
2035 (package
2036 (name "python-pytest-xdist")
2037 (version "1.14")
2038 (source
2039 (origin
2040 (method url-fetch)
2041 (uri (pypi-uri "pytest-xdist" version ".zip"))
2042 (sha256
2043 (base32
2044 "08rn2l39ds60xshs4js787l84pfckksqklfq2wq9x8ig2aci2pja"))
2045 (modules '((guix build utils)))
2046 (snippet
2047 '(begin
2048 ;; Remove pre-compiled .pyc files from source.
2049 (for-each delete-file-recursively
2050 (find-files "." "__pycache__" #:directories? #t))
2051 (for-each delete-file (find-files "." "\\.pyc$"))
2052 #t))))
2053 (build-system python-build-system)
2054 (arguments
2055 '(#:tests? #f)) ;FIXME: Some tests are failing.
2056 ;; #:phases
2057 ;; (modify-phases %standard-phases
2058 ;; (delete 'check)
2059 ;; (add-after 'install 'check
2060 ;; (lambda* (#:key inputs outputs #:allow-other-keys)
2061 ;; (add-installed-pythonpath inputs outputs)
2062 ;; (zero? (system* "py.test" "-v")))))
2063 (native-inputs
2064 `(("unzip" ,unzip)
2065 ("python-setuptools-scm" ,python-setuptools-scm)))
2066 (propagated-inputs
2067 `(("python-execnet" ,python-execnet)
2068 ("python-pytest" ,python-pytest)
2069 ("python-py" ,python-py)))
2070 (home-page
2071 "https://github.com/pytest-dev/pytest-xdist")
2072 (synopsis
2073 "Plugin for py.test with distributed testing and loop-on-failing modes")
2074 (description
2075 "The pytest-xdist plugin extends py.test with some unique test execution
2076 modes: parallelization, running tests in boxed subprocesses, the ability
2077 to run tests repeatedly when failed, and the ability to run tests on multiple
2078 Python interpreters or platforms. It uses rsync to copy the existing
2079 program code to a remote location, executes there, and then syncs the
2080 result back.")
2081 (license license:expat)))
2082
2083 (define-public python2-pytest-xdist
2084 (package-with-python2 python-pytest-xdist))
2085
2086 (define-public python-scripttest
2087 (package
2088 (name "python-scripttest")
2089 (version "1.3")
2090 (source
2091 (origin
2092 (method url-fetch)
2093 (uri (string-append
2094 "https://pypi.python.org/packages/source/s/scripttest/scripttest-"
2095 version ".tar.gz"))
2096 (sha256
2097 (base32
2098 "0f4w84k8ck82syys7yg9maz93mqzc8p5ymis941x034v44jzq74m"))))
2099 (build-system python-build-system)
2100 (native-inputs
2101 `(("python-pytest" ,python-pytest)))
2102 (home-page "http://pythonpaste.org/scripttest/")
2103 (synopsis "Python library to test command-line scripts")
2104 (description "Scripttest is a Python helper library for testing
2105 interactive command-line applications. With it you can run a script in a
2106 subprocess and see the output as well as any file modifications.")
2107 (license license:expat)))
2108
2109 (define-public python2-scripttest
2110 (package-with-python2 python-scripttest))
2111
2112 (define-public python-testtools
2113 (package
2114 (name "python-testtools")
2115 (version "1.4.0")
2116 (source
2117 (origin
2118 (method url-fetch)
2119 (uri (pypi-uri "testtools" version))
2120 (sha256
2121 (base32
2122 "1vw8yljnd75d396hhw6s2hrf4cclzy845ifd5am0lxsl235z3i8c"))))
2123 (build-system python-build-system)
2124 (arguments
2125 `(#:phases
2126 (modify-phases %standard-phases
2127 (add-after 'unpack 'fix-module-imports
2128 (lambda _
2129 (substitute* "setup.py"
2130 (("'unittest2>=0.8.0',") ""))
2131 (substitute* '("testtools/testcase.py"
2132 "testtools/testsuite.py"
2133 "testtools/run.py"
2134 "testtools/tests/test_run.py"
2135 "testtools/tests/test_testsuite.py"
2136 "testtools/tests/test_deferredruntest.py")
2137 ;; unittest2 is a backport of Python2.7 features to Python 2.4.
2138 (("import unittest2 as unittest") "import unittest")
2139 (("import unittest2") "import unittest as unittest2")
2140 (("from unittest2 import") "from unittest import"))
2141 (substitute* "testtools/tests/test_testresult.py"
2142 ;; NUL in source code is not allowed (raises ValueError).
2143 (("\\x00\\x04") "\\x04"))
2144 #t)))))
2145 (propagated-inputs
2146 `(("python-mimeparse" ,python-mimeparse)
2147 ("python-extras" ,python-extras)))
2148 (home-page "https://github.com/testing-cabal/testtools")
2149 (synopsis
2150 "Extensions to the Python standard library unit testing framework")
2151 (description
2152 "Testtools extends the Python standard library unit testing framework to
2153 provide matchers, more debugging information, and cross-Python
2154 compatibility.")
2155 (license license:psfl)))
2156
2157 (define-public python2-testtools
2158 (package-with-python2 python-testtools))
2159
2160 (define-public python-testscenarios
2161 (package
2162 (name "python-testscenarios")
2163 (version "0.4")
2164 (source
2165 (origin
2166 (method url-fetch)
2167 (uri (string-append
2168 "https://pypi.python.org/packages/source/t/testscenarios/testscenarios-"
2169 version ".tar.gz"))
2170 (sha256
2171 (base32
2172 "1671jvrvqlmbnc42j7pc5y6vc37q44aiwrq0zic652pxyy2fxvjg"))))
2173 (build-system python-build-system)
2174 (propagated-inputs
2175 `(("python-testtools" ,python-testtools)))
2176 (home-page "https://launchpad.net/testscenarios")
2177 (synopsis "Pyunit extension for dependency injection")
2178 (description
2179 "Testscenarios provides clean dependency injection for Python unittest
2180 style tests.")
2181 (license (list license:bsd-3 license:asl2.0)))) ; at the user's option
2182
2183 (define-public python2-testscenarios
2184 (package-with-python2 python-testscenarios))
2185
2186 (define-public python-testresources
2187 (package
2188 (name "python-testresources")
2189 (version "0.2.7")
2190 (source
2191 (origin
2192 (method url-fetch)
2193 (uri (string-append
2194 "https://pypi.python.org/packages/source/t/testresources/testresources-"
2195 version ".tar.gz"))
2196 (sha256
2197 (base32
2198 "0cbj3plbllyz42c4b5xxgwaa7mml54lakslrn4kkhinxhdri22md"))))
2199 (build-system python-build-system)
2200 (home-page "https://launchpad.net/testresources")
2201 (synopsis
2202 "Pyunit extension for managing test resources")
2203 (description
2204 "Testresources is an extension to Python's unittest to allow declarative
2205 use of resources by test cases.")
2206 (license (list license:bsd-3 license:asl2.0)))) ; at the user's option
2207
2208 (define-public python2-testresources
2209 (package-with-python2 python-testresources))
2210
2211 (define-public python-subunit
2212 (package
2213 (name "python-subunit")
2214 (version "0.0.21")
2215 (source
2216 (origin
2217 (method url-fetch)
2218 (uri (string-append
2219 "https://pypi.python.org/packages/source/p/python-subunit/python-subunit-"
2220 version ".tar.gz"))
2221 (sha256
2222 (base32
2223 "1nkw9wfbvizmpajbj3in8ns07g7lwkiv8hip14jjlwk3cacls6jv"))))
2224 (build-system python-build-system)
2225 (propagated-inputs
2226 `(("python-extras" ,python-extras)
2227 ("python-mimeparse" ,python-mimeparse)))
2228 (native-inputs
2229 `(("python-testscenarios" ,python-testscenarios)))
2230 (home-page "http://launchpad.net/subunit")
2231 (synopsis "Python implementation of the subunit protocol")
2232 (description
2233 "Python-subunit is a Python implementation of the subunit test streaming
2234 protocol.")
2235 (license (list license:bsd-3 license:asl2.0)))) ; at the user's option
2236
2237 (define-public python2-subunit
2238 (package-with-python2 python-subunit))
2239
2240 ;; Recent versions of python-fixtures and python-testrepository need
2241 ;; python-pbr for packaging, which itself needs these two packages for
2242 ;; testing.
2243 ;; To fix this circular dependency, we use a build of python-pbr, based on the
2244 ;; same source, just without any test dependencies and with tests disabled.
2245 ;; python-pbr-minmal is then used to package python-fixtures and
2246 ;; python-testrepository.
2247 ;; Strictly speaking we currently could remove the test-requirements from the
2248 ;; normal python-pbr package (and save this package) since test are disabled
2249 ;; there anyway. But this may change in future.
2250 (define python-pbr-minimal
2251 (package
2252 (name "python-pbr-minimal")
2253 (version "1.10.0")
2254 (source
2255 (origin
2256 (method url-fetch)
2257 (uri (pypi-uri "pbr" version))
2258 (sha256
2259 (base32
2260 "177kd9kbv1hvf2ban7l3x9ymzbi1md4hkaymwbgnz7ihf312hr0q"))
2261 (patches (search-patches "python-pbr-fix-man-page-support.patch"))))
2262 (build-system python-build-system)
2263 (arguments
2264 `(#:tests? #f))
2265 (home-page "http://docs.openstack.org/developer/pbr/")
2266 (synopsis "Minimal build of python-pbr used for bootstrapping")
2267 (description
2268 "Used only for bootstrapping python2-pbr, you should not need this.")
2269 (license license:asl2.0)))
2270
2271 (define python2-pbr-minimal
2272 (package-with-python2 python-pbr-minimal))
2273
2274 (define-public python-pbr
2275 (package
2276 (inherit python-pbr-minimal)
2277 (name "python-pbr")
2278 (arguments
2279 `(#:tests? #f)) ;; Most tests seem to use the Internet.
2280 (propagated-inputs
2281 `(("git" ,git))) ;; pbr actually uses the "git" binary.
2282 (native-inputs
2283 `(("python-fixtures" ,python-fixtures)
2284 ;; discover, coverage, hacking, subunit
2285 ("python-mock" ,python-mock)
2286 ("python-six" ,python-six)
2287 ("python-sphinx" ,python-sphinx)
2288 ("python-testrepository" ,python-testrepository)
2289 ("python-testresources" ,python-testresources)
2290 ("python-testscenarios" ,python-testscenarios)
2291 ("python-testtools" ,python-testtools)
2292 ("python-virtualenv" ,python-virtualenv)))
2293 (synopsis "Enhance the default behavior of Python’s setuptools")
2294 (description
2295 "Python Build Reasonableness (PBR) is a library that injects some useful
2296 and sensible default behaviors into your setuptools run. It will set
2297 versions, process requirements files and generate AUTHORS and ChangeLog file
2298 from git information.
2299 ")))
2300
2301 (define-public python2-pbr
2302 (package-with-python2 python-pbr))
2303
2304 (define-public python-fixtures
2305 (package
2306 (name "python-fixtures")
2307 (version "1.4.0")
2308 (source
2309 (origin
2310 (method url-fetch)
2311 (uri (pypi-uri "fixtures" version))
2312 (sha256
2313 (base32
2314 "0djxvdwm8s60dbfn7bhf40x6g818p3b3mlwijm1c3bqg7msn271y"))))
2315 (build-system python-build-system)
2316 (arguments
2317 '(#:phases
2318 (modify-phases %standard-phases
2319 (replace 'check
2320 (lambda _
2321 (zero? (system* "python" "-m" "testtools.run"
2322 "fixtures.test_suite")))))))
2323 (propagated-inputs
2324 `(("python-six" ,python-six)))
2325 (native-inputs
2326 `(("python-mock" ,python-mock)
2327 ("python-pbr-minimal" ,python-pbr-minimal)
2328 ("python-testtools" ,python-testtools)))
2329 (home-page "https://launchpad.net/python-fixtures")
2330 (synopsis "Python test fixture library")
2331 (description
2332 "Fixtures provides a way to create reusable state, useful when writing
2333 Python tests.")
2334 (license (list license:bsd-3 license:asl2.0)))) ; at user's option
2335
2336 (define-public python2-fixtures
2337 (package-with-python2 python-fixtures))
2338
2339 (define-public python-testrepository
2340 (package
2341 (name "python-testrepository")
2342 (version "0.0.20")
2343 (source
2344 (origin
2345 (method url-fetch)
2346 (uri (string-append
2347 "https://pypi.python.org/packages/source/t/testrepository/testrepository-"
2348 version ".tar.gz"))
2349 (sha256
2350 (base32
2351 "1ssqb07c277010i6gzzkbdd46gd9mrj0bi0i8vn560n2k2y4j93m"))))
2352 (build-system python-build-system)
2353 (arguments
2354 ;; FIXME: Many tests are failing.
2355 '(#:tests? #f))
2356 (propagated-inputs
2357 `(("python-fixtures" ,python-fixtures)
2358 ("python-subunit" ,python-subunit)
2359 ("python-testtools" ,python-testtools)))
2360 (native-inputs
2361 `(("python-pbr-minimal" ,python-pbr-minimal) ;; same as for building fixture
2362 ("python-mimeparse" ,python-mimeparse)))
2363 (home-page "https://launchpad.net/testrepository")
2364 (synopsis "Database for Python test results")
2365 (description "Testrepository provides a database of test results which can
2366 be used as part of a developer's workflow to check things such as what tests
2367 have failed since the last commit or what tests are currently failing.")
2368 (license (list license:bsd-3 license:asl2.0)))) ; at user's option
2369
2370 (define-public python2-testrepository
2371 (package-with-python2 python-testrepository))
2372
2373 (define-public python-coverage
2374 (package
2375 (name "python-coverage")
2376 (version "4.1")
2377 (source
2378 (origin
2379 (method url-fetch)
2380 (uri (pypi-uri "coverage" version))
2381 (sha256
2382 (base32
2383 "01rbr4br4lsk0lwn8fb96zwd2xr4f0mg1w7iq3j11i8f5ig2nqs1"))))
2384 (build-system python-build-system)
2385 (arguments
2386 ;; FIXME: 95 tests failed, 539 passed, 6 skipped, 2 errors.
2387 '(#:tests? #f))
2388 (home-page "http://nedbatchelder.com/code/coverage")
2389 (synopsis "Code coverage measurement for Python")
2390 (description
2391 "Coverage measures code coverage, typically during test execution. It
2392 uses the code analysis tools and tracing hooks provided in the Python standard
2393 library to determine which lines are executable, and which have been
2394 executed.")
2395 (license license:bsd-3)))
2396
2397 (define-public python2-coverage
2398 (package-with-python2 python-coverage))
2399
2400 (define-public python-cov-core
2401 (package
2402 (name "python-cov-core")
2403 (version "1.15.0")
2404 (source
2405 (origin
2406 (method url-fetch)
2407 (uri (pypi-uri "cov-core" version))
2408 (sha256
2409 (base32
2410 "0k3np9ymh06yv1ib96sb6wfsxjkqhmik8qfsn119vnhga9ywc52a"))))
2411 (build-system python-build-system)
2412 (propagated-inputs
2413 `(("python-coverage" ,python-coverage)))
2414 (home-page "https://github.com/schlamar/cov-core")
2415 (synopsis "Coverage plugin core for pytest-cov, nose-cov and nose2-cov")
2416 (description
2417 "This is a library package for use by @code{pytest-cov}, @code{nose-cov}
2418 and @code{nose2-cov}. It is useful for developing coverage plugins for these
2419 testing frameworks.")
2420 (license license:expat)))
2421
2422 (define-public python2-cov-core
2423 (package-with-python2 python-cov-core))
2424
2425 (define-public python-discover
2426 (package
2427 (name "python-discover")
2428 (version "0.4.0")
2429 (source
2430 (origin
2431 (method url-fetch)
2432 (uri (string-append
2433 "https://pypi.python.org/packages/source/d/discover/discover-"
2434 version ".tar.gz"))
2435 (sha256
2436 (base32
2437 "0y8d0zwiqar51kxj8lzmkvwc3b8kazb04gk5zcb4nzg5k68zmhq5"))))
2438 (build-system python-build-system)
2439 (home-page "http://pypi.python.org/pypi/discover/")
2440 (synopsis
2441 "Python test discovery for unittest")
2442 (description
2443 "Discover provides test discovery for unittest, a feature that has been
2444 backported from Python 2.7 for Python 2.4+.")
2445 (license license:bsd-3)))
2446
2447 (define-public python2-discover
2448 (package-with-python2 python-discover))
2449
2450 (define-public behave
2451 (package
2452 (name "behave")
2453 (version "1.2.5")
2454 (source (origin
2455 (method url-fetch)
2456 (uri (pypi-uri "behave" version ".tar.bz2"))
2457 (sha256
2458 (base32
2459 "1iypp6z46r19n4xmgx6m1lwmlpfjh8vapq8izigrqlaarvp2y64c"))))
2460 (build-system python-build-system)
2461 (propagated-inputs
2462 `(("python-six" ,python-six)
2463 ("python-parse" ,python-parse)
2464 ("python-parse-type" ,python-parse-type)))
2465 (arguments `(#:tests? #f)) ;TODO: tests require nose>=1.3 and
2466 ;PyHamcrest>=1.8
2467 (home-page "https://github.com/behave/behave")
2468 (synopsis "Python behavior-driven development")
2469 (description
2470 "Behave is a tool for behavior-driven development in python.
2471 Behavior-driven development (or BDD) is an agile software development
2472 technique that encourages collaboration between developers, QA and
2473 non-technical or business participants in a software project. Behave uses
2474 tests written in a natural language style, backed up by Python code.")
2475 (license license:x11)))
2476
2477 (define-public python-exif-read
2478 (package
2479 (name "python-exif-read")
2480 (version "2.1.2")
2481 (source (origin
2482 (method url-fetch)
2483 (uri (pypi-uri "ExifRead" version))
2484 (sha256
2485 (base32
2486 "1b90jf6m9vxh9nanhpyvqdq7hmfx5iggw1l8kq10jrs6xgr49qkr"))))
2487 (build-system python-build-system)
2488 (arguments `(#:tests? #f)) ; no tests
2489 (home-page "https://github.com/ianare/exif-py")
2490 (synopsis "Python library to extract EXIF data from image files")
2491 (description
2492 "ExifRead is a Python library to extract EXIF data from tiff and jpeg
2493 files.")
2494 (license license:bsd-3)))
2495
2496 (define-public python2-exif-read
2497 (package-with-python2 python-exif-read))
2498
2499 (define-public python-pyld
2500 (package
2501 (name "python-pyld")
2502 (version "0.7.1")
2503 (source (origin
2504 (method url-fetch)
2505 (uri (pypi-uri "PyLD" version))
2506 (sha256
2507 (base32
2508 "1m0fs6897vxfkf7awah5i66i7b7smm5fnywf1w50fpzyfbfhr156"))))
2509 (build-system python-build-system)
2510 (arguments `(#:tests? #f)) ; no tests
2511 (home-page "https://github.com/digitalbazaar/pyld")
2512 (synopsis "Python implementation of the JSON-LD specification")
2513 (description
2514 "PyLD is an implementation of the JSON-LD specification.")
2515 (license license:bsd-3)))
2516
2517 (define-public python2-pyld
2518 (package-with-python2 python-pyld))
2519
2520 (define-public python-certifi
2521 (package
2522 (name "python-certifi")
2523 (version "2017.1.23")
2524 (source (origin
2525 (method url-fetch)
2526 (uri (pypi-uri "certifi" version))
2527 (sha256
2528 (base32
2529 "1klrzl3hgvcf2mjk00g0k3kk1p2z27vzwnxivwar4vhjmjvpz1w1"))))
2530 (build-system python-build-system)
2531 (home-page "https://certifi.io/")
2532 (synopsis "Python CA certificate bundle")
2533 (description
2534 "Certifi is a Python library that contains a CA certificate bundle, which
2535 is used by the Requests library to verify HTTPS requests.")
2536 (license license:asl2.0)))
2537
2538 (define-public python2-certifi
2539 (package-with-python2 python-certifi))
2540
2541 (define-public python-click
2542 (package
2543 (name "python-click")
2544 (version "6.7")
2545 (source
2546 (origin
2547 (method url-fetch)
2548 (uri (pypi-uri "click" version))
2549 (sha256
2550 (base32
2551 "02qkfpykbq35id8glfgwc38yc430427yd05z1wc5cnld8zgicmgi"))))
2552 (build-system python-build-system)
2553 (arguments
2554 `(#:phases
2555 (modify-phases %standard-phases
2556 (add-after 'unpack 'fix-paths
2557 (lambda* (#:key inputs #:allow-other-keys)
2558 (let ((glibc (assoc-ref inputs ,(if (%current-target-system)
2559 "cross-libc" "libc"))))
2560 (substitute* "click/_unicodefun.py"
2561 (("'locale'")
2562 (string-append "'" glibc "/bin/locale'"))))
2563 #t))
2564 (replace 'check
2565 (lambda _
2566 (zero? (system* "make" "test")))))))
2567 (native-inputs
2568 `(("python-pytest" ,python-pytest)))
2569 (home-page "http://click.pocoo.org")
2570 (synopsis "Command line library for Python")
2571 (description
2572 "Click is a Python package for creating command line interfaces in a
2573 composable way with as little code as necessary. Its name stands for
2574 \"Command Line Interface Creation Kit\". It's highly configurable but comes
2575 with sensible defaults out of the box.")
2576 (license license:bsd-3)))
2577
2578 (define-public python2-click
2579 (package-with-python2 python-click))
2580
2581 (define-public python-wheel
2582 (package
2583 (name "python-wheel")
2584 (version "0.30.0a0")
2585 (source
2586 (origin
2587 (method url-fetch)
2588 (uri (pypi-uri "wheel" version))
2589 (sha256
2590 (base32
2591 "1nm6mn8isny0hr86rhbfrpfj867c0phf001xgsd69xfp9ady1wwq"))))
2592 (build-system python-build-system)
2593 (native-inputs
2594 `(("python-jsonschema" ,python-jsonschema)
2595 ("python-pytest-cov" ,python-pytest-cov)))
2596 (home-page "https://bitbucket.org/pypa/wheel/")
2597 (synopsis "Format for built Python packages")
2598 (description
2599 "A wheel is a ZIP-format archive with a specially formatted filename and
2600 the @code{.whl} extension. It is designed to contain all the files for a PEP
2601 376 compatible install in a way that is very close to the on-disk format. Many
2602 packages will be properly installed with only the @code{Unpack} step and the
2603 unpacked archive preserves enough information to @code{Spread} (copy data and
2604 scripts to their final locations) at any later time. Wheel files can be
2605 installed with a newer @code{pip} or with wheel's own command line utility.")
2606 (license license:expat)
2607 (properties `((python2-variant . ,(delay python2-wheel))))))
2608
2609 (define-public python2-wheel
2610 (let ((wheel (package-with-python2
2611 (strip-python2-variant python-wheel))))
2612 (package (inherit wheel)
2613 (native-inputs `(("python2-functools32" ,python2-functools32)
2614 ,@(package-native-inputs wheel))))))
2615
2616
2617 (define-public python-requests
2618 (package
2619 (name "python-requests")
2620 (version "2.13.0")
2621 (source (origin
2622 (method url-fetch)
2623 (uri (pypi-uri "requests" version))
2624 (sha256
2625 (base32
2626 "1s0wg4any4dsv5l3hqjxqk2zgb7pdbqhy9rhc8kh3aigfq4ws8jp"))))
2627 ;; TODO: unbundle urllib3 and chardet.
2628 (build-system python-build-system)
2629 (arguments
2630 ;; FIXME: Some tests require network access.
2631 '(#:tests? #f))
2632 (home-page "http://python-requests.org/")
2633 (synopsis "Python HTTP library")
2634 (description
2635 "Requests is a Python HTTP client library. It aims to be easier to use
2636 than Python’s urllib2 library.")
2637 (license license:asl2.0)))
2638
2639 ;; Some software requires an older version of Requests, notably Docker
2640 ;; Compose.
2641 (define-public python-requests-2.7
2642 (package (inherit python-requests)
2643 (version "2.7.0")
2644 (source (origin
2645 (method url-fetch)
2646 (uri (pypi-uri "requests" version))
2647 (sha256
2648 (base32
2649 "0gdr9dxm24amxpbyqpbh3lbwxc2i42hnqv50sigx568qssv3v2ir"))))))
2650
2651 (define-public python2-requests
2652 (package-with-python2 python-requests))
2653
2654 (define-public python-vcversioner
2655 (package
2656 (name "python-vcversioner")
2657 (version "2.16.0.0")
2658 (source
2659 (origin
2660 (method url-fetch)
2661 (uri (pypi-uri "vcversioner" version))
2662 (sha256
2663 (base32
2664 "16z10sm78jd7ca3jbkgc3q5i8a8q7y1h21q1li21yy3rlhbhrrns"))))
2665 (build-system python-build-system)
2666 (synopsis "Python library for version number discovery")
2667 (description "Vcversioner is a Python library that inspects tagging
2668 information in a variety of version control systems in order to discover
2669 version numbers.")
2670 (home-page "https://github.com/habnabit/vcversioner")
2671 (license license:isc)))
2672
2673 (define-public python2-vcversioner
2674 (package-with-python2 python-vcversioner))
2675
2676 (define-public python-jsonschema
2677 (package
2678 (name "python-jsonschema")
2679 (version "2.5.1")
2680 (source (origin
2681 (method url-fetch)
2682 (uri
2683 (string-append
2684 "https://pypi.python.org/packages/source/j/jsonschema/jsonschema-"
2685 version ".tar.gz"))
2686 (sha256
2687 (base32
2688 "0hddbqjm4jq63y8jf44nswina1crjs16l9snb6m3vvgyg31klrrn"))))
2689 (build-system python-build-system)
2690 (arguments
2691 '(#:phases
2692 (modify-phases %standard-phases
2693 (replace 'check (lambda _ (zero? (system* "nosetests")))))))
2694 (native-inputs
2695 `(("python-nose" ,python-nose)
2696 ("python-vcversioner" ,python-vcversioner)))
2697 (home-page "https://github.com/Julian/jsonschema")
2698 (synopsis "Implementation of JSON Schema for Python")
2699 (description
2700 "Jsonschema is an implementation of JSON Schema for Python.")
2701 (license license:expat)
2702 (properties `((python2-variant . ,(delay python2-jsonschema))))))
2703
2704 (define-public python2-jsonschema
2705 (let ((jsonschema (package-with-python2
2706 (strip-python2-variant python-jsonschema))))
2707 (package (inherit jsonschema)
2708 (native-inputs
2709 `(("python2-mock" ,python2-mock)
2710 ,@(package-native-inputs jsonschema)))
2711 (propagated-inputs
2712 `(("python2-functools32" ,python2-functools32))))))
2713
2714 (define-public python-kitchen
2715 (package
2716 (name "python-kitchen")
2717 (version "1.2.4")
2718 (source
2719 (origin
2720 (method url-fetch)
2721 (uri (pypi-uri "kitchen" version))
2722 (sha256
2723 (base32
2724 "0ggv3p4x8jvmmzhp0xm00h6pvh1g0gmycw71rjwagnrj8n23vxrq"))))
2725 (build-system python-build-system)
2726 (propagated-inputs
2727 `(("python-chardet" ,python-chardet)))
2728 (home-page "https://github.com/fedora-infra/kitchen")
2729 (synopsis "Python API for snippets")
2730 (description "@code{kitchen} module provides a python API for all sorts of
2731 little useful snippets of code that everybody ends up writing for their projects
2732 but never seem big enough to build an independent release. Use kitchen and stop
2733 cutting and pasting that code over and over.")
2734 (license (list license:lgpl2.1+
2735 ;; subprocess.py, test_subprocess.py,
2736 ;; kitchen/pycompat25/defaultdict.py:
2737 license:psfl))))
2738
2739 (define-public python2-kitchen
2740 (package-with-python2 python-kitchen))
2741
2742 (define-public python-unidecode
2743 (package
2744 (name "python-unidecode")
2745 (version "0.04.20")
2746 (source (origin
2747 (method url-fetch)
2748 (uri (pypi-uri "Unidecode" version))
2749 (sha256
2750 (base32
2751 "1q00i8gpsq3d9r0q8wk4b290fxl0kqlsdk7iadvli45in6s1hi7d"))))
2752 (build-system python-build-system)
2753 (home-page "https://pypi.python.org/pypi/Unidecode")
2754 (synopsis "ASCII transliterations of Unicode text")
2755 (description
2756 "Unidecode provides ASCII transliterations of Unicode text. Unidecode is
2757 useful when integrating with legacy code that doesn't support Unicode, or for
2758 ease of entry of non-Roman names on a US keyboard, or when constructing ASCII
2759 machine identifiers from human-readable Unicode strings that should still be
2760 somewhat intelligeble.")
2761 (license license:gpl2+)))
2762
2763 (define-public python2-unidecode
2764 (package-with-python2 python-unidecode))
2765
2766 (define-public python-pyjwt
2767 (package
2768 (name "python-pyjwt")
2769 (version "1.4.0")
2770 (source
2771 (origin
2772 (method url-fetch)
2773 (uri (pypi-uri "PyJWT" version))
2774 (sha256
2775 (base32
2776 "1556v2jppd8mjkkj66pxb5rcazm35jq81r233mdl8hfmz9n3icp1"))))
2777 (build-system python-build-system)
2778 (native-inputs
2779 `(("python-pytest" ,python-pytest)
2780 ("python-pytest-cov" ,python-pytest-cov)
2781 ("python-pytest-runner" ,python-pytest-runner)))
2782 (home-page "https://github.com/progrium/pyjwt")
2783 (synopsis "JSON Web Token implementation in Python")
2784 (description
2785 "PyJWT is a JSON Web Token implementation written in Python.")
2786 (license license:expat)))
2787
2788 (define-public python2-pyjwt
2789 (package-with-python2 python-pyjwt))
2790
2791 (define-public python-pykka
2792 (package
2793 (name "python-pykka")
2794 (version "1.2.1")
2795 (source
2796 (origin
2797 (method url-fetch)
2798 (uri (pypi-uri "Pykka" version))
2799 (sha256
2800 (base32
2801 "049w3r0mdnnw7xv19jiq7rvls9k7xs73x05b4qs5d6z4vvmgyiz8"))))
2802 (build-system python-build-system)
2803 (native-inputs
2804 `(("python-mock" ,python-mock)
2805 ("python-nose" ,python-nose)
2806 ("python-gevent" ,python-gevent)
2807 ("python-eventlet" ,python-eventlet)))
2808 (home-page "https://www.pykka.org/")
2809 (synopsis "Pykka is a Python implementation of the actor model")
2810 (description
2811 "Pykka is a Python implementation of the actor model.
2812 The actor model introduces some simple rules to control the sharing
2813 of state and cooperation between execution units, which makes it
2814 easier to build concurrent applications.")
2815 (license license:asl2.0)))
2816
2817 (define-public python2-pykka
2818 (package-with-python2 python-pykka))
2819
2820 (define-public python-oauthlib
2821 (package
2822 (name "python-oauthlib")
2823 (version "1.0.3")
2824 (source (origin
2825 (method url-fetch)
2826 (uri (pypi-uri "oauthlib" version))
2827 (sha256
2828 (base32
2829 "1bfrj70vdjxjw74khbyh6f0dksv7p5rh2346jnlrffyacd3gwjzg"))))
2830 (build-system python-build-system)
2831 (native-inputs
2832 `(("python-nose" ,python-nose)
2833 ("python-mock" ,python-mock)
2834 ("python-cryptography" ,python-cryptography)
2835 ("python-pyjwt" ,python-pyjwt)
2836 ("python-blinker" ,python-blinker)))
2837 (home-page "https://github.com/idan/oauthlib")
2838 (synopsis "OAuth implementation for Python")
2839 (description
2840 "Oauthlib is a generic, spec-compliant, thorough implementation of the
2841 OAuth request-signing logic.")
2842 (license license:bsd-3)
2843 (properties `((python2-variant . ,(delay python2-oauthlib))))))
2844
2845 (define-public python2-oauthlib
2846 (let ((base (package-with-python2 (strip-python2-variant python-oauthlib))))
2847 (package
2848 (inherit base)
2849 (native-inputs `(("python2-unittest2" ,python2-unittest2)
2850 ,@(package-native-inputs base))))))
2851
2852 (define-public python-itsdangerous
2853 (package
2854 (name "python-itsdangerous")
2855 (version "0.24")
2856 (source
2857 (origin
2858 (method url-fetch)
2859 (uri (string-append
2860 "https://pypi.python.org/packages/source/i/itsdangerous/itsdangerous-"
2861 version ".tar.gz"))
2862 (sha256
2863 (base32
2864 "06856q6x675ly542ig0plbqcyab6ksfzijlyf1hzhgg3sgwgrcyb"))))
2865 (build-system python-build-system)
2866 (home-page "https://github.com/mitsuhiko/itsdangerous")
2867 (synopsis "Python library for passing data to/from untrusted environments")
2868 (description
2869 "Itsdangerous provides various helpers to pass trusted data to untrusted
2870 environments and back.")
2871 (license license:bsd-3)))
2872
2873 (define-public python2-itsdangerous
2874 (package-with-python2 python-itsdangerous))
2875
2876 (define-public python-pyyaml
2877 (package
2878 (name "python-pyyaml")
2879 (version "3.12")
2880 (source
2881 (origin
2882 (method url-fetch)
2883 (uri (pypi-uri "PyYAML" version))
2884 (sha256
2885 (base32
2886 "1aqjl8dk9amd4zr99n8v2qxzgmr2hdvqfma4zh7a41rj6336c9sr"))))
2887 (build-system python-build-system)
2888 (inputs
2889 `(("libyaml" ,libyaml)))
2890 (home-page "http://pyyaml.org/wiki/PyYAML")
2891 (synopsis "YAML parser and emitter for Python")
2892 (description
2893 "PyYAML is a YAML parser and emitter for Python. PyYAML features a
2894 complete YAML 1.1 parser, Unicode support, pickle support, capable extension
2895 API, and sensible error messages. PyYAML supports standard YAML tags and
2896 provides Python-specific tags that allow to represent an arbitrary Python
2897 object.")
2898 (license license:expat)))
2899
2900 (define-public python2-pyyaml
2901 (package-with-python2 python-pyyaml))
2902
2903 (define-public python-virtualenv
2904 (package
2905 (name "python-virtualenv")
2906 (version "15.0.3")
2907 (source
2908 (origin
2909 (method url-fetch)
2910 (uri (pypi-uri "virtualenv" version))
2911 (sha256
2912 (base32
2913 "07cbajzk8l05k5zhlw0b9wbf2is65bl9v6zrn2a0iyn57w6pd73d"))))
2914 (build-system python-build-system)
2915 (arguments
2916 `(#:phases
2917 (modify-phases %standard-phases
2918 (replace 'check
2919 (lambda _
2920 ;; Disable failing test. See upstream bug report
2921 ;; https://github.com/pypa/virtualenv/issues/957
2922 (substitute* "tests/test_virtualenv.py"
2923 (("skipif.*") "skipif(True, reason=\"Guix\")\n"))
2924 (zero? (system* "py.test")))))))
2925 (native-inputs
2926 `(("python-mock" ,python-mock)
2927 ("python-pytest" ,python-pytest)))
2928 (home-page "https://virtualenv.pypa.io/")
2929 (synopsis "Virtual Python environment builder")
2930 (description
2931 "Virtualenv is a tool to create isolated Python environments.")
2932 (license license:expat)))
2933
2934 (define-public python2-virtualenv
2935 (package-with-python2 python-virtualenv))
2936
2937 (define-public python-markupsafe
2938 (package
2939 (name "python-markupsafe")
2940 (version "0.23")
2941 (source
2942 (origin
2943 (method url-fetch)
2944 (uri (string-append
2945 "https://pypi.python.org/packages/source/M/MarkupSafe/MarkupSafe-"
2946 version ".tar.gz"))
2947 (sha256
2948 (base32
2949 "1hvip33wva3fnmvfp9x5klqri7hpl1hkgqmjbss18nmrb7zimv54"))))
2950 (build-system python-build-system)
2951 (home-page "https://github.com/mitsuhiko/markupsafe")
2952 (synopsis "XML/HTML/XHTML markup safe string implementation for Python")
2953 (description
2954 "Markupsafe provides an XML/HTML/XHTML markup safe string implementation
2955 for Python.")
2956 (license license:bsd-3)))
2957
2958 (define-public python2-markupsafe
2959 (package-with-python2 python-markupsafe))
2960
2961 (define-public python-jinja2
2962 (package
2963 (name "python-jinja2")
2964 (version "2.8")
2965 (source
2966 (origin
2967 (method url-fetch)
2968 (uri (pypi-uri "Jinja2" version))
2969 (sha256
2970 (base32
2971 "1x0v41lp5m1pjix3l46zx02b7lqp2hflgpnxwkywxynvi3zz47xw"))))
2972 (build-system python-build-system)
2973 (propagated-inputs
2974 `(("python-markupsafe" ,python-markupsafe)))
2975 (home-page "http://jinja.pocoo.org/")
2976 (synopsis "Python template engine")
2977 (description
2978 "Jinja2 is a small but fast and easy to use stand-alone template engine
2979 written in pure Python.")
2980 (license license:bsd-3)))
2981
2982 (define-public python2-jinja2
2983 (package-with-python2 python-jinja2))
2984
2985 (define-public python-pystache
2986 (package
2987 (name "python-pystache")
2988 (version "0.5.4")
2989 (source (origin
2990 (method url-fetch)
2991 (uri (pypi-uri "pystache" version))
2992 (sha256
2993 (base32
2994 "0nmqsfmiw4arjxqkmf9z66ml950pcdjk6aq4gin4sywmzdjw5fzp"))))
2995 (build-system python-build-system)
2996 (arguments
2997 '(#:tests? #f)) ; FIXME: Python 3 tests are failing.
2998 (home-page "http://defunkt.io/pystache/")
2999 (synopsis "Python logic-less template engine")
3000 (description
3001 "Pystache is a Python implementation of the framework agnostic,
3002 logic-free templating system Mustache.")
3003 (license license:expat)
3004 (properties `((python2-variant . ,(delay python2-pystache))))))
3005
3006 (define-public python2-pystache
3007 (package (inherit (package-with-python2
3008 (strip-python2-variant python-pystache)))
3009 (arguments
3010 `(#:python ,python-2
3011 #:phases
3012 (modify-phases %standard-phases
3013 (replace 'check
3014 (lambda _
3015 (zero? (system* "python" "test_pystache.py")))))))))
3016
3017 (define-public python-joblib
3018 (package
3019 (name "python-joblib")
3020 (version "0.10.3")
3021 (source (origin
3022 (method url-fetch)
3023 (uri (pypi-uri "joblib" version))
3024 (sha256
3025 (base32
3026 "0787k919zlfmgymprz5bzv0v1df5bbirlf3awrghmjgvkrd9dci9"))
3027 (modules '((guix build utils)))
3028 (snippet
3029 '(begin
3030 ;; Remove pre-compiled .pyc files from source.
3031 (for-each delete-file-recursively
3032 (find-files "." "__pycache__" #:directories? #t))
3033 (for-each delete-file (find-files "." "\\.pyc$"))
3034 #t))))
3035 (build-system python-build-system)
3036 (arguments
3037 `(#:phases
3038 (modify-phases %standard-phases
3039 (add-before 'check 'disable-failing-tests
3040 (lambda _
3041 ;; This numpydoc tests fails for unknown reasons
3042 (delete-file "doc/sphinxext/numpydoc/tests/test_docscrape.py")
3043 ;; This numpydoc test depends on matplotlib, which is not a
3044 ;; required input.
3045 (delete-file "doc/sphinxext/numpydoc/tests/test_plot_directive.py")
3046 ;; These tests fail to execute sys.executable
3047 (substitute* "joblib/test/test_parallel.py"
3048 (("import nose" line)
3049 (string-append "from nose.plugins.skip import SkipTest\n" line))
3050 (("def test_nested_parallel_warnings" line)
3051 (string-append "@SkipTest\n" line))
3052 (("def test_parallel_with_interactively_defined_functions" line)
3053 (string-append "@SkipTest\n" line)))
3054 #t)))))
3055 ;; Provide nose to enable tests command
3056 (native-inputs
3057 `(("python-nose" ,python-nose)
3058 ("python-sphinx" ,python-sphinx)
3059 ("python-docutils" ,python-docutils)
3060 ("python-numpydoc" ,python-numpydoc)))
3061 (home-page "http://pythonhosted.org/joblib/")
3062 (synopsis "Using Python functions as pipeline jobs")
3063 (description
3064 "Joblib is a set of tools to provide lightweight pipelining in Python.
3065 In particular, joblib offers: transparent disk-caching of the output values
3066 and lazy re-evaluation (memoize pattern), easy simple parallel computing
3067 logging and tracing of the execution.")
3068 (license license:bsd-3)))
3069
3070 (define-public python2-joblib
3071 (package-with-python2 python-joblib))
3072
3073 (define-public python-docutils
3074 (package
3075 (name "python-docutils")
3076 (version "0.13.1")
3077 (source
3078 (origin
3079 (method url-fetch)
3080 (uri (pypi-uri "docutils" version))
3081 (sha256
3082 (base32
3083 "1gkma47i609jfs7dssxn4y9vsz06qi0l5q41nws0zgkpnrghz33i"))))
3084 (build-system python-build-system)
3085 (arguments
3086 '(#:tests? #f)) ; no setup.py test command
3087 (home-page "http://docutils.sourceforge.net/")
3088 (synopsis "Python Documentation Utilities")
3089 (description
3090 "Docutils is a modular system for processing documentation into useful
3091 formats, such as HTML, XML, and LaTeX. For input Docutils supports
3092 reStructuredText.")
3093 ;; Most of the source code is public domain, but some source files are
3094 ;; licensed under the PFSL, BSD 2-clause, and GPLv3+ licenses.
3095 (license (list license:public-domain license:psfl license:bsd-2 license:gpl3+))))
3096
3097 (define-public python2-docutils
3098 (package-with-python2 python-docutils))
3099
3100 (define-public python-pygments
3101 (package
3102 (name "python-pygments")
3103 (version "2.1.3")
3104 (source
3105 (origin
3106 (method url-fetch)
3107 (uri (pypi-uri "Pygments" version))
3108 (sha256
3109 (base32
3110 "10axnp2wpjnq9g8wg53fx0c70dfxqrz498jyz8mrdx9a3flwir48"))))
3111 (build-system python-build-system)
3112 (arguments
3113 ;; FIXME: Tests require sphinx, which depends on this.
3114 '(#:tests? #f))
3115 (home-page "http://pygments.org/")
3116 (synopsis "Syntax highlighting")
3117 (description
3118 "Pygments is a syntax highlighting package written in Python.")
3119 (license license:bsd-2)))
3120
3121 (define-public python2-pygments
3122 (package-with-python2 python-pygments))
3123
3124 (define-public python-sphinx
3125 (package
3126 (name "python-sphinx")
3127 (version "1.5.1")
3128 (source
3129 (origin
3130 (method url-fetch)
3131 (uri (pypi-uri "Sphinx" version))
3132 (sha256
3133 (base32
3134 "1i8p9idnli4gr0y4x67yakbdk5w6a0xjzhrg6bg51y9d1fi7fslf"))))
3135 (build-system python-build-system)
3136 (arguments
3137 `(#:phases
3138 (modify-phases %standard-phases
3139 (replace 'check
3140 (lambda _
3141 ;; Requires Internet access.
3142 (delete-file "tests/test_build_linkcheck.py")
3143 (zero? (system* "make" "test")))))))
3144 (propagated-inputs
3145 `(("python-imagesize" ,python-imagesize)
3146 ("python-sphinx-alabaster-theme"
3147 ,python-sphinx-alabaster-theme)
3148 ("python-babel" ,python-babel)
3149 ("python-snowballstemmer" ,python-snowballstemmer)
3150 ("python-docutils" ,python-docutils)
3151 ("python-jinja2" ,python-jinja2)
3152 ("python-pygments" ,python-pygments)
3153 ("python-requests" ,python-requests)
3154 ("python-six" ,python-six)))
3155 (native-inputs
3156 `(("graphviz" ,graphviz)
3157 ("python-html5lib" ,python-html5lib)
3158 ("python-mock" ,python-mock)
3159 ("python-nose" ,python-nose)))
3160 (home-page "http://sphinx-doc.org/")
3161 (synopsis "Python documentation generator")
3162 (description "Sphinx is a tool that makes it easy to create documentation
3163 for Python projects or other documents consisting of multiple reStructuredText
3164 sources.")
3165 (license license:bsd-3)
3166 (properties `((python2-variant . ,(delay python2-sphinx))))))
3167
3168 (define-public python-sphinx-1.5.3
3169 (package
3170 (inherit python-sphinx)
3171 (name "python-sphinx")
3172 (version "1.5.3")
3173 (source
3174 (origin
3175 (method url-fetch)
3176 (uri (pypi-uri "Sphinx" version))
3177 (sha256
3178 (base32
3179 "0kw1axswbvaavr8ggyf4qr6hnisnrzlbkkcdada69vk1x9xjassg"))))
3180 (native-inputs
3181 `(("python-pytest" ,python-pytest-3.0)
3182 ,@(package-native-inputs python-sphinx)))))
3183
3184 (define-public python2-sphinx
3185 (let ((base (package-with-python2 (strip-python2-variant python-sphinx))))
3186 (package
3187 (inherit base)
3188 (native-inputs `(("python2-mock" ,python2-mock)
3189 ("python2-enum34" ,python2-enum34)
3190 ,@(package-native-inputs base)))
3191 (propagated-inputs `(("python2-pytz" ,python2-pytz)
3192 ,@(package-propagated-inputs base))))))
3193
3194 (define-public python-sphinx-rtd-theme
3195 (package
3196 (name "python-sphinx-rtd-theme")
3197 (version "0.2.4")
3198 (source
3199 (origin
3200 (method url-fetch)
3201 (uri (pypi-uri "sphinx_rtd_theme" version))
3202 (sha256
3203 (base32
3204 "05rlhjzdyapr2w74jjs7mrm8hi69qskcr5vya9f9drpsys7lpxrd"))))
3205 (build-system python-build-system)
3206 (arguments '(#:tests? #f)) ; No tests.
3207 (propagated-inputs
3208 `(("python-sphinx" ,python-sphinx)))
3209 (home-page "https://github.com/snide/sphinx_rtd_theme/")
3210 (synopsis "ReadTheDocs.org theme for Sphinx")
3211 (description "A theme for Sphinx used by ReadTheDocs.org.")
3212 (license license:expat)))
3213
3214 (define-public python2-sphinx-rtd-theme
3215 (package-with-python2 python-sphinx-rtd-theme))
3216
3217 (define-public python-rst.linker
3218 (package
3219 (name "python-rst.linker")
3220 (version "1.7")
3221 (source
3222 (origin
3223 (method url-fetch)
3224 (uri (pypi-uri "rst.linker" version))
3225 (sha256
3226 (base32
3227 "0bh4lnj2p1nh0wf5pgxgfbrp27xhb1rinahkb5j7s3qprq6qn0sr"))))
3228 (build-system python-build-system)
3229 (propagated-inputs
3230 `(("python-dateutil" ,python-dateutil)
3231 ("python-six" ,python-six)))
3232 (native-inputs
3233 `(("python-setuptools-scm" ,python-setuptools-scm)))
3234 ;; Test would require path.py, which would introduce a cyclic dependence.
3235 (arguments `(#:tests? #f))
3236 ;; Note: As of version 1.7 the documentation is not worth building.
3237 (home-page "https://github.com/jaraco/rst.linker")
3238 (synopsis "Sphinx plugin to add links and timestamps")
3239 (description "rst.linker allows to automatically replace text by a
3240 reStructuredText external reference or timestamps. It's primary purpose is to
3241 augment the changelog, but it can be used for other documents, too.")
3242 (license license:expat)))
3243
3244 (define-public python2-rst.linker
3245 (package-with-python2 python-rst.linker))
3246
3247 (define-public python-feedgenerator
3248 (package
3249 (name "python-feedgenerator")
3250 (version "1.9")
3251 (source
3252 (origin
3253 (method url-fetch)
3254 (uri (pypi-uri "feedgenerator" version))
3255 (sha256
3256 (base32
3257 "01mirwkm7xfx539hmvj7g9da1j51gw5lsx74dr0glizskjm5vq2s"))
3258 (modules '((guix build utils)))
3259 (snippet
3260 '(begin
3261 ;; Remove pre-compiled .pyc files from source.
3262 (for-each delete-file-recursively
3263 (find-files "." "__pycache__" #:directories? #t))
3264 (for-each delete-file (find-files "." "\\.pyc$"))
3265 #t))))
3266 (build-system python-build-system)
3267 (propagated-inputs
3268 `(("python-pytz" ,python-pytz)
3269 ("python-six" ,python-six)))
3270 (home-page "https://github.com/getpelican/feedgenerator")
3271 (synopsis
3272 "Standalone version of Django's Atom/RSS feed generator")
3273 (description
3274 "Feedgenerator-py3k is a standalone version of Django's feedgenerator,
3275 which can produce feeds in RSS 2.0, RSS 0.91, and Atom formats.")
3276 (license license:bsd-3)))
3277
3278 (define-public python2-feedgenerator
3279 (package-with-python2 python-feedgenerator))
3280
3281 (define-public python-blinker
3282 (package
3283 (name "python-blinker")
3284 (version "1.4")
3285 (source
3286 (origin
3287 (method url-fetch)
3288 (uri (pypi-uri "blinker" version))
3289 (sha256
3290 (base32
3291 "1dpq0vb01p36jjwbhhd08ylvrnyvcc82yxx3mwjx6awrycjyw6j7"))))
3292 (build-system python-build-system)
3293 (home-page "http://pythonhosted.org/blinker/")
3294 (synopsis "Fast, simple object-to-object and broadcast signaling")
3295 (description
3296 "Blinker provides a fast dispatching system that allows any number of
3297 interested parties to subscribe to events, or \"signals\".")
3298 (license license:expat)))
3299
3300 (define-public python2-blinker
3301 (package-with-python2 python-blinker))
3302
3303 (define-public pelican
3304 (package
3305 (name "pelican")
3306 (version "3.6.3")
3307 (source
3308 (origin
3309 (method url-fetch)
3310 (uri (pypi-uri "pelican" version))
3311 (sha256
3312 (base32
3313 "1hn94rb4q3zmcq16in055xikal4dba5hfx3zznq7warllcgc9f8k"))))
3314 (build-system python-build-system)
3315 (propagated-inputs
3316 `(("python-feedgenerator" ,python-feedgenerator)
3317 ("python-jinja2" ,python-jinja2)
3318 ("python-pygments" ,python-pygments)
3319 ("python-docutils" ,python-docutils)
3320 ("python-pytz" ,python-pytz)
3321 ("python-blinker" ,python-blinker)
3322 ("python-unidecode" ,python-unidecode)
3323 ("python-six" ,python-six)
3324 ("python-dateutil" ,python-dateutil)))
3325 (home-page "http://getpelican.com/")
3326 (arguments
3327 `(;; XXX Requires a lot more packages to do unit tests :P
3328 #:tests? #f
3329 #:phases (modify-phases %standard-phases
3330 (add-before
3331 'install 'adjust-requires
3332 ;; Since feedgenerator is installed from git, it doesn't
3333 ;; conform to the version requirements.
3334 ;;
3335 ;; We *do have* "feedgenerator >= 1.6", but strip off the
3336 ;; version requirement so setuptools doesn't get confused.
3337 (lambda _
3338 (substitute* "setup.py"
3339 (("['\"]feedgenerator.*?['\"]")
3340 "'feedgenerator'")))))))
3341 (synopsis "Python-based static site publishing system")
3342 (description
3343 "Pelican is a tool to generate a static blog from reStructuredText,
3344 Markdown input files, and more. Pelican uses Jinja2 for templating
3345 and is very extensible.")
3346 (license license:agpl3+)))
3347
3348 (define-public python-scikit-learn
3349 (package
3350 (name "python-scikit-learn")
3351 (version "0.18.1")
3352 (source
3353 (origin
3354 (method url-fetch)
3355 (uri (string-append
3356 "https://github.com/scikit-learn/scikit-learn/archive/"
3357 version ".tar.gz"))
3358 (file-name (string-append name "-" version ".tar.gz"))
3359 (sha256
3360 (base32
3361 "1hwswckdmd27f7k1jvwdc0m4mqrgxl2s245yq1scq34v124bjqgq"))))
3362 (build-system python-build-system)
3363 (arguments
3364 `(#:phases
3365 (modify-phases %standard-phases
3366 (delete 'check)
3367 (add-after 'install 'check
3368 ;; Running tests from the source directory requires
3369 ;; an "inplace" build with paths relative to CWD.
3370 ;; http://scikit-learn.org/stable/developers/advanced_installation.html#testing
3371 ;; Use the installed version instead.
3372 (lambda* (#:key inputs outputs #:allow-other-keys)
3373 (add-installed-pythonpath inputs outputs)
3374 ;; some tests require access to "$HOME"
3375 (setenv "HOME" "/tmp")
3376 ;; Step out of the source directory just to be sure.
3377 (chdir "..")
3378 (zero? (system* "nosetests" "-v" "sklearn")))))))
3379 (inputs
3380 `(("openblas" ,openblas)))
3381 (native-inputs
3382 `(("python-nose" ,python-nose)
3383 ("python-cython" ,python-cython)))
3384 (propagated-inputs
3385 `(("python-numpy" ,python-numpy)
3386 ("python-scipy" ,python-scipy)))
3387 (home-page "http://scikit-learn.org/")
3388 (synopsis "Machine Learning in Python")
3389 (description
3390 "Scikit-learn provides simple and efficient tools for data
3391 mining and data analysis.")
3392 (license license:bsd-3)))
3393
3394 (define-public python2-scikit-learn
3395 (package-with-python2 python-scikit-learn))
3396
3397 (define-public python-scikit-image
3398 (package
3399 (name "python-scikit-image")
3400 (version "0.11.3")
3401 (source
3402 (origin
3403 (method url-fetch)
3404 (uri (string-append
3405 "https://pypi.python.org/packages/source/s/scikit-image/scikit-image-"
3406 version ".tar.gz"))
3407 (sha256
3408 (base32 "0jz416fqvpahqyffw8plmszzfj669w8wvf3y9clnr5lr6a7md3kn"))))
3409 (build-system python-build-system)
3410 (arguments
3411 ;; TODO: Some tests require running X11 server. Disable them?
3412 '(#:tests? #f))
3413 ;; See DEPENDS.txt for the list of build and run time requiremnts
3414 (propagated-inputs
3415 `(("python-matplotlib" ,python-matplotlib)
3416 ("python-networkx" ,python-networkx)
3417 ("python-scipy" ,python-scipy)
3418 ("python-pillow" ,python-pillow)))
3419 (native-inputs
3420 `(("python-numpy" ,python-numpy)
3421 ("python-cython" ,python-cython)
3422 ("python-six" ,python-six)))
3423 (home-page "http://scikit-image.org/")
3424 (synopsis "Image processing in Python")
3425 (description
3426 "Scikit-image is a collection of algorithms for image processing.")
3427 (license license:bsd-3)))
3428
3429 (define-public python2-scikit-image
3430 (package-with-python2 python-scikit-image))
3431
3432 (define-public python-redis
3433 (package
3434 (name "python-redis")
3435 (version "2.10.5")
3436 (source
3437 (origin
3438 (method url-fetch)
3439 (uri (pypi-uri "redis" version))
3440 (sha256
3441 (base32 "0csmrkxb29x7xs9b51zplwkkq2hwnbh9jns1g85dykn5rxmaxysx"))))
3442 (build-system python-build-system)
3443 ;; Tests require a running Redis server
3444 (arguments '(#:tests? #f))
3445 ;; As long as we are not running test, we do not need this input :-)
3446 ;;(native-inputs
3447 ;; `(("python-pytest" ,python-pytest)))
3448 (home-page "https://github.com/andymccurdy/redis-py")
3449 (synopsis "Redis Python client")
3450 (description
3451 "This package provides a Python interface to the Redis key-value store.")
3452 (license license:expat)))
3453
3454 (define-public python2-redis
3455 (package-with-python2 python-redis))
3456
3457 (define-public python-rq
3458 (package
3459 (name "python-rq")
3460 (version "0.7.1")
3461 (source
3462 (origin
3463 (method url-fetch)
3464 (uri (pypi-uri "rq" version))
3465 (sha256
3466 (base32 "0gaq5pnh0zy46r8jvygi0ifbvz3pq6i7xla78ijcgjw0x77qzsdh"))))
3467 (build-system python-build-system)
3468 (propagated-inputs
3469 `(("python-click" ,python-click)
3470 ("python-redis" ,python-redis)))
3471 (home-page "http://python-rq.org/")
3472 (synopsis "Simple job queues for Python")
3473 (description
3474 "RQ (Redis Queue) is a simple Python library for queueing jobs and
3475 processing them in the background with workers. It is backed by Redis and it
3476 is designed to have a low barrier to entry.")
3477 (license license:bsd-2)))
3478
3479 (define-public python2-rq
3480 (package-with-python2 python-rq))
3481
3482 (define-public python-cython
3483 (package
3484 (name "python-cython")
3485 (version "0.25.2")
3486 (source
3487 (origin
3488 (method url-fetch)
3489 (uri (pypi-uri "Cython" version))
3490 (patches (search-patches "python-cython-fix-tests-32bit.patch"))
3491 (sha256
3492 (base32
3493 "01h3lrf6d98j07iakifi81qjszh6faa37ibx7ylva1vsqbwx2hgi"))))
3494 (build-system python-build-system)
3495 ;; we need the full python package and not just the python-wrapper
3496 ;; because we need libpython3.3m.so
3497 (inputs
3498 `(("python" ,python)))
3499 (arguments
3500 `(#:phases
3501 (modify-phases %standard-phases
3502 (add-before 'check 'set-HOME
3503 ;; some tests require access to "$HOME/.cython"
3504 (lambda _ (setenv "HOME" "/tmp")))
3505 (replace 'check
3506 (lambda _ (zero? (system* "python" "runtests.py" "-vv")))))))
3507 (home-page "http://cython.org/")
3508 (synopsis "C extensions for Python")
3509 (description "Cython is an optimising static compiler for both the Python
3510 programming language and the extended Cython programming language. It makes
3511 writing C extensions for Python as easy as Python itself.")
3512 (license license:asl2.0)
3513 (properties `((python2-variant . ,(delay python2-cython))))))
3514
3515 (define-public python2-cython
3516 (package (inherit (package-with-python2
3517 (strip-python2-variant python-cython)))
3518 (name "python2-cython")
3519 (inputs
3520 `(("python-2" ,python-2))))) ; this is not automatically changed
3521
3522 ;; The RPython toolchain currently does not support Python 3.
3523 (define-public python2-rpython
3524 (package
3525 (name "python2-rpython")
3526 (version "0.1.4")
3527 (source
3528 (origin
3529 (method url-fetch)
3530 (uri (pypi-uri "rpython" version))
3531 (sha256
3532 (base32
3533 "07pps06fq4c4wmi5ii0sgh9zgwniz5y7frqhm28g3a154l163fxc"))))
3534 (build-system python-build-system)
3535 (arguments `(#:python ,python-2))
3536 (native-inputs
3537 `(("python2-pytest" ,python2-pytest))) ; needed for running tests
3538 (home-page "https://rpython.readthedocs.org")
3539 (synopsis "Framework for implementing interpreters and virtual machines")
3540 (description "RPython is a translation and support framework for
3541 producing implementations of dynamic languages, emphasizing a clean separation
3542 between language specification and implementation aspects.")
3543 (license license:expat)))
3544
3545 (define-public python-numpy
3546 (package
3547 (name "python-numpy")
3548 (version "1.12.0")
3549 (source
3550 (origin
3551 (method url-fetch)
3552 (uri (string-append
3553 "https://github.com/numpy/numpy/archive/v" version ".tar.gz"))
3554 (file-name (string-append name "-" version ".tar.gz"))
3555 (sha256
3556 (base32
3557 "025d4j4aakcp8w5i5diqh812cbbjgac7jszx1j56ivrbi1i8vv7d"))))
3558 (build-system python-build-system)
3559 (inputs
3560 `(("openblas" ,openblas)
3561 ("lapack" ,lapack)))
3562 (native-inputs
3563 `(("python-cython" ,python-cython)
3564 ("python-nose" ,python-nose)
3565 ("gfortran" ,gfortran)))
3566 (arguments
3567 `(#:phases
3568 (modify-phases %standard-phases
3569 (add-before 'build 'set-environment-variables
3570 (lambda* (#:key inputs #:allow-other-keys)
3571 (call-with-output-file "site.cfg"
3572 (lambda (port)
3573 (format port
3574 "[openblas]
3575 libraries = openblas
3576 library_dirs = ~a/lib
3577 include_dirs = ~a/include
3578
3579 # backslash-n to make emacs happy
3580 \n[lapack]
3581 lapack_libs = lapack
3582 library_dirs = ~a/lib
3583 include_dirs = ~a/include
3584 "
3585 (assoc-ref inputs "openblas")
3586 (assoc-ref inputs "openblas")
3587 (assoc-ref inputs "lapack")
3588 (assoc-ref inputs "lapack"))))
3589 ;; Use "gcc" executable, not "cc".
3590 (substitute* "numpy/distutils/system_info.py"
3591 (("c = distutils\\.ccompiler\\.new_compiler\\(\\)")
3592 "c = distutils.ccompiler.new_compiler(); c.set_executables(compiler='gcc',compiler_so='gcc',linker_exe='gcc',linker_so='gcc -shared')"))
3593 #t))
3594 ;; Tests can only be run after the library has been installed and not
3595 ;; within the source directory.
3596 (delete 'check)
3597 (add-after 'install 'check
3598 (lambda* (#:key outputs inputs #:allow-other-keys)
3599 ;; Make installed package available for running the tests
3600 (add-installed-pythonpath inputs outputs)
3601 (with-directory-excursion "/tmp"
3602 (zero? (system* "python" "-c"
3603 "import numpy; numpy.test(verbose=2)"))))))))
3604 (home-page "http://www.numpy.org/")
3605 (synopsis "Fundamental package for scientific computing with Python")
3606 (description "NumPy is the fundamental package for scientific computing
3607 with Python. It contains among other things: a powerful N-dimensional array
3608 object, sophisticated (broadcasting) functions, tools for integrating C/C++
3609 and Fortran code, useful linear algebra, Fourier transform, and random number
3610 capabilities.")
3611 (license license:bsd-3)))
3612
3613 (define-public python2-numpy
3614 (package-with-python2 python-numpy))
3615
3616 (define-public python-munch
3617 (package
3618 (name "python-munch")
3619 (version "2.0.4")
3620 (source
3621 (origin
3622 (method url-fetch)
3623 (uri (pypi-uri "munch" version))
3624 (sha256
3625 (base32
3626 "1cmqg91xnqx8gvnh4pmp0bfl1dfcm65d5p9mg73zz8pkjhx6h80l"))))
3627 (build-system python-build-system)
3628 (home-page "https://github.com/Infinidat/munch")
3629 (synopsis "Dot-accessible dictionary")
3630 (description "Munch is a dot-accessible dictionary similar to JavaScript
3631 objects.")
3632 (license license:expat)))
3633
3634 (define-public python2-munch
3635 (package-with-python2 python-munch))
3636
3637 (define-public python2-fastlmm
3638 (package
3639 (name "python2-fastlmm")
3640 (version "0.2.21")
3641 (source
3642 (origin
3643 (method url-fetch)
3644 (uri (pypi-uri "fastlmm" version ".zip"))
3645 (sha256
3646 (base32
3647 "1q8c34rpmwkfy3r4d5172pzdkpfryj561897z9r3x22gq7813x1m"))))
3648 (build-system python-build-system)
3649 (arguments
3650 `(#:python ,python-2)) ; only Python 2.7 is supported
3651 (propagated-inputs
3652 `(("python2-numpy" ,python2-numpy)
3653 ("python2-scipy" ,python2-scipy)
3654 ("python2-matplotlib" ,python2-matplotlib)
3655 ("python2-pandas" ,python2-pandas)
3656 ("python2-scikit-learn" ,python2-scikit-learn)
3657 ("python2-pysnptools" ,python2-pysnptools)))
3658 (native-inputs
3659 `(("unzip" ,unzip)
3660 ("python2-cython" ,python2-cython)
3661 ("python2-mock" ,python2-mock)
3662 ("python2-nose" ,python2-nose)))
3663 (home-page "http://research.microsoft.com/en-us/um/redmond/projects/mscompbio/fastlmm/")
3664 (synopsis "Perform genome-wide association studies on large data sets")
3665 (description
3666 "FaST-LMM, which stands for Factored Spectrally Transformed Linear Mixed
3667 Models, is a program for performing both single-SNP and SNP-set genome-wide
3668 association studies (GWAS) on extremely large data sets.")
3669 (license license:asl2.0)))
3670
3671 (define-public python-numpy-documentation
3672 (package
3673 (name "python-numpy-documentation")
3674 (version (package-version python-numpy))
3675 (source (package-source python-numpy))
3676 (build-system python-build-system)
3677 (native-inputs
3678 `(("python-matplotlib" ,python-matplotlib)
3679 ("python-numpy" ,python-numpy)
3680 ("pkg-config" ,pkg-config)
3681 ("python-sphinx" ,python-sphinx)
3682 ("python-numpydoc" ,python-numpydoc)
3683 ("texlive" ,texlive)
3684 ("texinfo" ,texinfo)
3685 ("perl" ,perl)
3686 ("scipy-sphinx-theme"
3687 ,(origin ; The build script expects scipy-sphinx-theme as a git submodule
3688 (method git-fetch)
3689 (uri (git-reference
3690 (url "https://github.com/scipy/scipy-sphinx-theme.git")
3691 (commit "c466764e2231ba132c09826b5b138fffa1cfcec3")))
3692 (sha256
3693 (base32
3694 "0q2y87clwlsgc7wvlsn9pzyssybcq10plwhq2w1ydykfsyyqbmkl"))))
3695 ,@(package-native-inputs python-numpy)))
3696 (arguments
3697 `(#:tests? #f ; we're only generating the documentation
3698 #:phases
3699 (modify-phases %standard-phases
3700 (delete 'build)
3701 (replace 'install
3702 (lambda* (#:key inputs outputs #:allow-other-keys)
3703 (let* ((data (string-append (assoc-ref outputs "out") "/share"))
3704 (doc (string-append
3705 data "/doc/" ,name "-"
3706 ,(package-version python-numpy)))
3707 (info-reader (string-append data "/info"))
3708 (html (string-append doc "/html"))
3709 (scipy-sphinx-theme "scipy-sphinx-theme")
3710 (sphinx-theme-checkout (assoc-ref inputs scipy-sphinx-theme))
3711 (pyver ,(string-append "PYVER=")))
3712 (with-directory-excursion "doc"
3713 (copy-recursively sphinx-theme-checkout scipy-sphinx-theme)
3714 (mkdir-p html)
3715 (system* "make" "html" pyver)
3716 (system* "make" "latex" "PAPER=a4" pyver)
3717 (system* "make" "-C" "build/latex"
3718 "all-pdf" "PAPER=a4" pyver)
3719 ;; FIXME: Generation of the info file fails.
3720 ;; (system* "make" "info" pyver)
3721 ;; (mkdir-p info)
3722 ;; (copy-file "build/texinfo/numpy.info"
3723 ;; (string-append info "/numpy.info"))
3724 (for-each (lambda (file)
3725 (copy-file (string-append "build/latex" file)
3726 (string-append doc file)))
3727 '("/numpy-ref.pdf" "/numpy-user.pdf"))
3728 (with-directory-excursion "build/html"
3729 (for-each (lambda (file)
3730 (let* ((dir (dirname file))
3731 (tgt-dir (string-append html "/" dir)))
3732 (unless (equal? "." dir)
3733 (mkdir-p tgt-dir))
3734 (install-file file html)))
3735 (find-files "." ".*")))))
3736 #t)))))
3737 (home-page (package-home-page python-numpy))
3738 (synopsis "Documentation for the python-numpy package")
3739 (description (package-description python-numpy))
3740 (license (package-license python-numpy))))
3741
3742 (define-public python2-numpy-documentation
3743 (let ((numpy-documentation (package-with-python2 python-numpy-documentation)))
3744 (package
3745 (inherit numpy-documentation)
3746 (native-inputs `(("python2-functools32" ,python2-functools32)
3747 ,@(package-native-inputs numpy-documentation))))))
3748
3749 (define-public python-pygit2
3750 (package
3751 (name "python-pygit2")
3752 (version "0.25.0")
3753 (source
3754 (origin
3755 (method url-fetch)
3756 (uri (pypi-uri "pygit2" version))
3757 (sha256
3758 (base32
3759 "0wf5rp0fvrw7j3j18dvwjq6xqlbm611wd55aphrfpps0v1gxh3ny"))
3760 (patches
3761 (search-patches "python-pygit2-disable-network-tests.patch"))))
3762 (build-system python-build-system)
3763 (propagated-inputs
3764 `(("python-six" ,python-six)
3765 ("python-cffi" ,python-cffi)
3766 ("libgit2" ,libgit2)
3767 ("python-tox" ,python-tox)))
3768 (home-page "https://github.com/libgit2/pygit2")
3769 (synopsis "Python bindings for libgit2")
3770 (description "Pygit2 is a set of Python bindings to the libgit2 shared
3771 library, libgit2 implements Git plumbing.")
3772 ;; GPL2.0 only, with linking exception.
3773 (license license:gpl2)))
3774
3775 (define-public python2-pygit2
3776 (package-with-python2 python-pygit2))
3777
3778 (define-public python-pyparsing
3779 (package
3780 (name "python-pyparsing")
3781 (version "2.0.3")
3782 (source
3783 (origin
3784 (method url-fetch)
3785 (uri (string-append "mirror://sourceforge/pyparsing/pyparsing"
3786 "/pyparsing-" version
3787 "/pyparsing-" version ".tar.gz"))
3788 (sha256
3789 (base32
3790 "0kw4py7gn45j93q8r7bzajfrjdc3xlsn2yzln41lf9zmrghjkrq6"))))
3791 (build-system python-build-system)
3792 (outputs '("out" "doc"))
3793 (arguments
3794 `(#:tests? #f ; no test target
3795 #:modules ((guix build python-build-system)
3796 (guix build utils))
3797 #:phases
3798 (alist-cons-after
3799 'install 'install-doc
3800 (lambda* (#:key outputs #:allow-other-keys)
3801 (let* ((doc (string-append (assoc-ref outputs "doc")
3802 "/share/doc/" ,name "-" ,version))
3803 (html-doc (string-append doc "/html"))
3804 (examples (string-append doc "/examples")))
3805 (mkdir-p html-doc)
3806 (mkdir-p examples)
3807 (for-each
3808 (lambda (dir tgt)
3809 (map (lambda (file)
3810 (install-file file tgt))
3811 (find-files dir ".*")))
3812 (list "docs" "htmldoc" "examples")
3813 (list doc html-doc examples))))
3814 %standard-phases)))
3815 (home-page "http://pyparsing.wikispaces.com")
3816 (synopsis "Python parsing class library")
3817 (description
3818 "The pyparsing module is an alternative approach to creating and
3819 executing simple grammars, vs. the traditional lex/yacc approach, or the use
3820 of regular expressions. The pyparsing module provides a library of classes
3821 that client code uses to construct the grammar directly in Python code.")
3822 (license license:expat)))
3823
3824 (define-public python2-pyparsing
3825 (package-with-python2 python-pyparsing))
3826
3827 (define-public python-numpydoc
3828 (package
3829 (name "python-numpydoc")
3830 (version "0.5")
3831 (source
3832 (origin
3833 (method url-fetch)
3834 (uri (string-append
3835 "https://pypi.python.org/packages/source/n/numpydoc/numpydoc-"
3836 version ".tar.gz"))
3837 (sha256
3838 (base32
3839 "0d4dnifaxkll50jx6czj05y8cb4ny60njd2wz299sj2jxfy51w4k"))
3840 (modules '((guix build utils)))
3841 (snippet
3842 '(begin
3843 ;; Drop a test requiring matplotlib, which we cannot add as an
3844 ;; input since it would create a circular dependency: Extend the
3845 ;; test for Python 3, where it is already dropped, to Python 2.
3846 (substitute* "numpydoc/tests/test_plot_directive.py"
3847 (("3") "2"))))))
3848 (build-system python-build-system)
3849 (propagated-inputs
3850 `(("python-sphinx" ,python-sphinx)))
3851 (native-inputs
3852 `(("python-nose" ,python-nose)))
3853 (home-page "https://pypi.python.org/pypi/numpydoc")
3854 (synopsis
3855 "Numpy's Sphinx extensions")
3856 (description
3857 "Sphinx extension to support docstrings in Numpy format.")
3858 (license license:bsd-2)))
3859
3860 (define-public python2-numpydoc
3861 (package-with-python2 python-numpydoc))
3862
3863 (define-public python-numexpr
3864 (package
3865 (name "python-numexpr")
3866 (version "2.6.1")
3867 (source
3868 (origin
3869 (method url-fetch)
3870 (uri (pypi-uri "numexpr" version))
3871 (sha256
3872 (base32
3873 "01lsja72m32z0i5p8rwxbfyzk4mplh72k2a140nwh8vv4wpyfbnv"))))
3874 (build-system python-build-system)
3875 (arguments `(#:tests? #f)) ; no tests included
3876 (propagated-inputs
3877 `(("python-numpy" ,python-numpy)))
3878 (home-page "https://github.com/pydata/numexpr")
3879 (synopsis "Fast numerical expression evaluator for NumPy")
3880 (description
3881 "Numexpr is a fast numerical expression evaluator for NumPy. With it,
3882 expressions that operate on arrays are accelerated and use less memory than
3883 doing the same calculation in Python. In addition, its multi-threaded
3884 capabilities can make use of all your cores, which may accelerate
3885 computations, most specially if they are not memory-bounded (e.g. those using
3886 transcendental functions).")
3887 (license license:expat)))
3888
3889 (define-public python2-numexpr
3890 (package-with-python2 python-numexpr))
3891
3892 (define-public python-cycler
3893 (package
3894 (name "python-cycler")
3895 (version "0.10.0")
3896 (source (origin
3897 (method url-fetch)
3898 (uri (pypi-uri "cycler" version))
3899 (sha256
3900 (base32
3901 "1n69n23fak1gjxlrbhqisi2b9pv3ckrfj98llx3p53953082syyd"))))
3902 (build-system python-build-system)
3903 (arguments
3904 ;; XXX: The current version requires 'coveralls' which we don't have.
3905 ;; Enable this for the next release which uses 'python-pytest'.
3906 '(#:tests? #f))
3907 (propagated-inputs
3908 `(("python-six" ,python-six)))
3909 (home-page "http://matplotlib.org/cycler/")
3910 (synopsis "Composable keyword argument iterator")
3911 (description
3912 "When using @code{matplotlib} and plotting more than one line, it is
3913 common to want to be able to want to be able to cycle over one or more artist
3914 styles; but the plotting logic can quickly become involved.
3915 To address this and enable easy cycling over arbitrary @code{kwargs}, the
3916 @code{Cycler} class was developed.")
3917 (license license:bsd-3)))
3918
3919 (define-public python2-cycler
3920 (package-with-python2 python-cycler))
3921
3922 (define-public python-colorspacious
3923 (package
3924 (name "python-colorspacious")
3925 (version "1.1.0")
3926 (source
3927 (origin
3928 (method url-fetch)
3929 (uri (string-append "https://github.com/njsmith/colorspacious/archive/v"
3930 version ".tar.gz"))
3931 (file-name (string-append name "-" version))
3932 (sha256
3933 (base32 "1vflh5jm32qb0skza2i8pjacv09w6gq84fqpp2nj77s0rbmzgr4k"))))
3934 (build-system python-build-system)
3935 (propagated-inputs
3936 `(("python-numpy" ,python-numpy)))
3937 (native-inputs
3938 `(("python-nose" ,python-nose)))
3939 (arguments
3940 `(#:phases
3941 (modify-phases %standard-phases
3942 (replace 'check
3943 (lambda _
3944 (zero? (system* "nosetests" "--all-modules" "-v" "colorspacious")))))))
3945 (home-page "https://github.com/njsmith/colorspacious")
3946 (synopsis "Python library for colorspace conversions")
3947 (description "@code{colorspacious} is a Python library that lets you
3948 convert between colorspaces like sRGB, XYZ, CIEL*a*b*, CIECAM02, CAM02-UCS, etc.")
3949 (license license:expat)))
3950
3951 (define-public python2-colorspacious
3952 (package-with-python2 python-colorspacious))
3953
3954 (define-public python-matplotlib
3955 (package
3956 (name "python-matplotlib")
3957 (version "2.0.0")
3958 (source
3959 (origin
3960 (method url-fetch)
3961 (uri (string-append
3962 "https://github.com/matplotlib/matplotlib/archive/v" version ".tar.gz"))
3963 (file-name (string-append name "-" version ".tar.gz"))
3964 (sha256
3965 (base32
3966 "0w3k5m5qb3wsd7yhvmg042xddvligklvcq2visk2c5wnph3hhsln"))))
3967 (build-system python-build-system)
3968 (propagated-inputs ; the following packages are all needed at run time
3969 `(("python-cycler" ,python-cycler)
3970 ("python-pyparsing" ,python-pyparsing)
3971 ("python-pygobject" ,python-pygobject)
3972 ("gobject-introspection" ,gobject-introspection)
3973 ("python-tkinter" ,python "tk")
3974 ("python-dateutil" ,python-dateutil)
3975 ("python-numpy" ,python-numpy)
3976 ("python-pillow" ,python-pillow)
3977 ("python-pytz" ,python-pytz)
3978 ("python-six" ,python-six)
3979 ;; The 'gtk+' package (and 'gdk-pixbuf', 'atk' and 'pango' propagated
3980 ;; from 'gtk+') provides the required 'typelib' files used by
3981 ;; 'gobject-introspection'. The location of these files is set with the
3982 ;; help of the environment variable GI_TYPELIB_PATH. At build time this
3983 ;; is done automatically by a 'native-search-path' procedure. However,
3984 ;; at run-time the user must set this variable as follows:
3985 ;;
3986 ;; export GI_TYPELIB_PATH=~/.guix-profile/lib/girepository-1.0
3987 ("gtk+" ,gtk+)
3988 ;; From version 1.4.0 'matplotlib' makes use of 'cairocffi' instead of
3989 ;; 'pycairo'. However, 'pygobject' makes use of a 'pycairo' 'context'
3990 ;; object. For this reason we need to import both libraries.
3991 ;; https://pythonhosted.org/cairocffi/cffi_api.html#converting-pycairo
3992 ("python-pycairo" ,python-pycairo)
3993 ("python-cairocffi" ,python-cairocffi)))
3994 (inputs
3995 `(("libpng" ,libpng)
3996 ("imagemagick" ,imagemagick)
3997 ("freetype" ,freetype)
3998 ("cairo" ,cairo)
3999 ("glib" ,glib)
4000 ;; FIXME: Add backends when available.
4001 ;("python-wxpython" ,python-wxpython)
4002 ("python-pyqt" ,python-pyqt)
4003 ("tcl" ,tcl)
4004 ("tk" ,tk)))
4005 (native-inputs
4006 `(("pkg-config" ,pkg-config)
4007 ("python-nose" ,python-nose)
4008 ("python-mock" ,python-mock)))
4009 (arguments
4010 `(#:phases
4011 (modify-phases %standard-phases
4012 (add-before 'build 'configure-environment
4013 (lambda* (#:key outputs inputs #:allow-other-keys)
4014 (let ((cairo (assoc-ref inputs "cairo"))
4015 (gtk+ (assoc-ref inputs "gtk+")))
4016 ;; Setting these directories in the 'basedirlist' of 'setup.cfg'
4017 ;; has not effect.
4018 (setenv "LD_LIBRARY_PATH"
4019 (string-append cairo "/lib:" gtk+ "/lib"))
4020 (setenv "HOME" (getcwd))
4021 (call-with-output-file "setup.cfg"
4022 (lambda (port)
4023 (format port "[directories]~%
4024 basedirlist = ~a,~a~%
4025 [rc_options]~%
4026 backend = TkAgg~%"
4027 (assoc-ref inputs "tcl")
4028 (assoc-ref inputs "tk")))))
4029 #t)))))
4030 (home-page "http://matplotlib.org")
4031 (synopsis "2D plotting library for Python")
4032 (description
4033 "Matplotlib is a Python 2D plotting library which produces publication
4034 quality figures in a variety of hardcopy formats and interactive environments
4035 across platforms. Matplotlib can be used in Python scripts, the python and
4036 ipython shell, web application servers, and six graphical user interface
4037 toolkits.")
4038 (license license:psfl)
4039 (properties `((python2-variant . ,(delay python2-matplotlib))))))
4040
4041 (define-public python2-matplotlib
4042 (let ((matplotlib (package-with-python2
4043 (strip-python2-variant python-matplotlib))))
4044 (package (inherit matplotlib)
4045 ;; Make sure to use special packages for Python 2 instead
4046 ;; of those automatically rewritten by package-with-python2.
4047 (propagated-inputs
4048 `(("python2-pycairo" ,python2-pycairo)
4049 ("python2-functools32" ,python2-functools32)
4050 ("python2-pygobject-2" ,python2-pygobject-2)
4051 ("python2-subprocess32" ,python2-subprocess32)
4052 ("python2-tkinter" ,python-2 "tk")
4053 ,@(fold alist-delete (package-propagated-inputs matplotlib)
4054 '("python-pycairo" "python-pygobject" "python-tkinter")))))))
4055
4056 (define-public python-matplotlib-documentation
4057 (package
4058 (name "python-matplotlib-documentation")
4059 (version (package-version python-matplotlib))
4060 (source (package-source python-matplotlib))
4061 (build-system python-build-system)
4062 (native-inputs
4063 `(("python-matplotlib" ,python-matplotlib)
4064 ("python-colorspacious" ,python-colorspacious)
4065 ("python-sphinx" ,python-sphinx)
4066 ("python-numpydoc" ,python-numpydoc)
4067 ("python-ipython" ,python-ipython)
4068 ("python-mock" ,python-mock)
4069 ("graphviz" ,graphviz)
4070 ("texlive" ,texlive)
4071 ("texinfo" ,texinfo)
4072 ,@(package-native-inputs python-matplotlib)))
4073 (arguments
4074 `(#:tests? #f ; we're only generating documentation
4075 #:phases
4076 (modify-phases %standard-phases
4077 (replace 'build
4078 (lambda _
4079 (chdir "doc")
4080 ;; Produce pdf in 'A4' format.
4081 (substitute* "conf.py"
4082 (("latex_paper_size = 'letter'") "")
4083 ;; latex_paper_size is deprecated -> set paper size using
4084 ;; latex_elements
4085 (("latex_elements\\['pointsize'\\] = '11pt'" match)
4086 ;; insert at a point where latex_elements{} is defined:
4087 (string-append match "\nlatex_elements['papersize'] = 'a4paper'")))
4088 (zero? (system* "python" "make.py" "html" "latex" "texinfo"))))
4089 (replace 'install
4090 (lambda* (#:key inputs outputs #:allow-other-keys)
4091 (let* ((data (string-append (assoc-ref outputs "out") "/share"))
4092 (doc (string-append data "/doc/python-matplotlib-" ,version))
4093 (info (string-append data "/info"))
4094 (html (string-append doc "/html")))
4095 (mkdir-p html)
4096 (mkdir-p info)
4097 (copy-recursively "build/html" html)
4098 (symlink (string-append html "/_images")
4099 (string-append info "/matplotlib-figures"))
4100 (with-directory-excursion "build/texinfo"
4101 (substitute* "matplotlib.texi"
4102 (("@image\\{([^,]*)" all file)
4103 (string-append "@image{matplotlib-figures/" file)))
4104 (symlink (string-append html "/_images")
4105 "./matplotlib-figures")
4106 (system* "makeinfo" "--no-split"
4107 "-o" "matplotlib.info" "matplotlib.texi"))
4108 (copy-file "build/texinfo/matplotlib.info"
4109 (string-append info "/matplotlib.info"))
4110 (copy-file "build/latex/Matplotlib.pdf"
4111 (string-append doc "/Matplotlib.pdf")))
4112 #t)))))
4113 (home-page (package-home-page python-matplotlib))
4114 (synopsis "Documentation for the python-matplotlib package")
4115 (description (package-description python-matplotlib))
4116 (license (package-license python-matplotlib))))
4117
4118 (define-public python2-matplotlib-documentation
4119 (package-with-python2 python-matplotlib-documentation))
4120
4121 (define-public python2-pysnptools
4122 (package
4123 (name "python2-pysnptools")
4124 (version "0.3.9")
4125 (source
4126 (origin
4127 (method url-fetch)
4128 (uri (pypi-uri "pysnptools" version ".zip"))
4129 (sha256
4130 (base32
4131 "1wybggjzz8zw7aav4pjsg2h22xp17a1lghrprza1pxwlm7wf96y2"))))
4132 (build-system python-build-system)
4133 (arguments
4134 `(#:python ,python-2)) ; only Python 2.7 is supported
4135 (propagated-inputs
4136 `(("python2-numpy" ,python2-numpy)
4137 ("python2-scipy" ,python2-scipy)
4138 ("python2-pandas" ,python2-pandas)))
4139 (native-inputs
4140 `(("python2-cython" ,python2-cython)))
4141 (native-inputs
4142 `(("unzip" ,unzip)))
4143 (home-page "http://research.microsoft.com/en-us/um/redmond/projects/mscompbio/")
4144 (synopsis "Library for reading and manipulating genetic data")
4145 (description
4146 "PySnpTools is a library for reading and manipulating genetic data. It
4147 can, for example, efficiently read whole PLINK *.bed/bim/fam files or parts of
4148 those files. It can also efficiently manipulate ranges of integers using set
4149 operators such as union, intersection, and difference.")
4150 (license license:asl2.0)))
4151
4152 (define-public python-rpy2
4153 (package
4154 (name "python-rpy2")
4155 (version "2.7.6")
4156 (source
4157 (origin
4158 (method url-fetch)
4159 (uri (pypi-uri "rpy2" version))
4160 (sha256
4161 (base32
4162 "0nhan2qvrw7b7gg5zddwa22kybdv3x1g26vkd7q8lvnkgzrs4dga"))))
4163 (build-system python-build-system)
4164 (arguments
4165 '(#:phases
4166 (modify-phases %standard-phases
4167 (delete 'check)
4168 (add-after 'install 'check
4169 (lambda* (#:key outputs inputs #:allow-other-keys)
4170 ;; It's easier to run tests after install.
4171 ;; Make installed package available for running the tests
4172 (add-installed-pythonpath inputs outputs)
4173 (zero? (system* "python" "-m" "rpy2.tests" "-v")))))))
4174 (propagated-inputs
4175 `(("python-six" ,python-six)))
4176 (inputs
4177 `(("readline" ,readline)
4178 ("icu4c" ,icu4c)
4179 ("pcre" ,pcre)
4180 ("r-minimal" ,r-minimal)
4181 ("r-survival" ,r-survival)))
4182 (native-inputs
4183 `(("zlib" ,zlib)))
4184 (home-page "http://rpy.sourceforge.net/")
4185 (synopsis "Python interface to the R language")
4186 (description "rpy2 is a redesign and rewrite of rpy. It is providing a
4187 low-level interface to R from Python, a proposed high-level interface,
4188 including wrappers to graphical libraries, as well as R-like structures and
4189 functions.")
4190 (license license:gpl3+)))
4191
4192 (define-public python2-rpy2
4193 (let ((rpy2 (package-with-python2 python-rpy2)))
4194 (package (inherit rpy2)
4195 (propagated-inputs
4196 `(("python2-singledispatch" ,python2-singledispatch)
4197 ,@(package-propagated-inputs rpy2))))))
4198
4199 (define-public python-scipy
4200 (package
4201 (name "python-scipy")
4202 (version "0.18.1")
4203 (source
4204 (origin
4205 (method url-fetch)
4206 (uri (string-append "https://github.com/scipy/scipy/archive/v"
4207 version ".tar.gz"))
4208 (file-name (string-append name "-" version ".tar.gz"))
4209 (sha256
4210 (base32
4211 "17slsrfawjp7if6qrlx03zhgp05350ginxx8ddpw9zqx43x905sn"))))
4212 (build-system python-build-system)
4213 (propagated-inputs
4214 `(("python-numpy" ,python-numpy)
4215 ("python-matplotlib" ,python-matplotlib)
4216 ("python-pyparsing" ,python-pyparsing)))
4217 (inputs
4218 `(("lapack" ,lapack)
4219 ("openblas" ,openblas)))
4220 (native-inputs
4221 `(("python-cython" ,python-cython)
4222 ("python-nose" ,python-nose)
4223 ("python-sphinx" ,python-sphinx)
4224 ("python-numpydoc" ,python-numpydoc)
4225 ("gfortran" ,gfortran)
4226 ("perl" ,perl)))
4227 (outputs '("out" "doc"))
4228 (arguments
4229 `(#:phases
4230 (modify-phases %standard-phases
4231 (add-before 'build 'configure-openblas
4232 (lambda* (#:key inputs #:allow-other-keys)
4233 (call-with-output-file "site.cfg"
4234 (lambda (port)
4235 (format port
4236 "[blas]
4237 libraries = openblas
4238 library_dirs = ~a/lib
4239 include_dirs = ~a/include
4240
4241 # backslash-n to make emacs happy
4242 \n[atlas]
4243 library_dirs = ~a/lib
4244 atlas_libs = openblas
4245 "
4246 (assoc-ref inputs "openblas")
4247 (assoc-ref inputs "openblas")
4248 (assoc-ref inputs "openblas"))))
4249 #t))
4250 (add-after 'install 'install-doc
4251 (lambda* (#:key inputs outputs #:allow-other-keys)
4252 (let* ((data (string-append (assoc-ref outputs "doc") "/share"))
4253 (doc (string-append data "/doc/" ,name "-" ,version))
4254 (html (string-append doc "/html"))
4255 (pyver ,(string-append "PYVER=")))
4256 ;; Make installed package available for building the
4257 ;; documentation
4258 (add-installed-pythonpath inputs outputs)
4259 (with-directory-excursion "doc"
4260 ;; Fix generation of images for mathematical expressions.
4261 (substitute* (find-files "source" "conf\\.py")
4262 (("pngmath_use_preview = True")
4263 "pngmath_use_preview = False"))
4264 (mkdir-p html)
4265 (system* "make" "html" pyver)
4266 (with-directory-excursion "build/html"
4267 (for-each (lambda (file)
4268 (let* ((dir (dirname file))
4269 (tgt-dir (string-append html "/" dir)))
4270 (install-file file html)))
4271 (find-files "." ".*")))))
4272 #t))
4273 (add-after 'unpack 'fix-tests
4274 (lambda _
4275 (substitute* "scipy/integrate/tests/test_quadpack.py"
4276 (("libm.so") "libm.so.6"))
4277 #t))
4278 ;; Tests can only be run after the library has been installed and not
4279 ;; within the source directory.
4280 (delete 'check)
4281 (add-after 'install 'check
4282 (lambda* (#:key inputs outputs #:allow-other-keys)
4283 (add-installed-pythonpath inputs outputs)
4284 (with-directory-excursion "/tmp"
4285 (zero? (system* "python" "-c"
4286 "import scipy; scipy.test('full')")))
4287 #t)))))
4288 (home-page "http://www.scipy.org/")
4289 (synopsis "The Scipy library provides efficient numerical routines")
4290 (description "The SciPy library is one of the core packages that make up
4291 the SciPy stack. It provides many user-friendly and efficient numerical
4292 routines such as routines for numerical integration and optimization.")
4293 (properties `((python2-variant . ,(delay python2-scipy))))
4294 (license license:bsd-3)))
4295
4296 (define-public python2-scipy
4297 (package-with-python2
4298 (strip-python2-variant python-scipy)))
4299
4300 (define-public python-sockjs-tornado
4301 (package
4302 (name "python-sockjs-tornado")
4303 (version "1.0.3")
4304 (source
4305 (origin
4306 (method url-fetch)
4307 (uri (pypi-uri "sockjs-tornado" version))
4308 (sha256
4309 (base32
4310 "16cff40nniqsyvda1pb2j3b4zwmrw7y2g1vqq78lp20xpmhnwwkd"))))
4311 (build-system python-build-system)
4312 (arguments
4313 `(;; There are no tests, and running the test phase requires missing
4314 ;; dependencies
4315 #:tests? #f))
4316 (propagated-inputs
4317 `(("python-tornado" ,python-tornado)))
4318 (home-page "http://github.com/mrjoes/sockjs-tornado/")
4319 (synopsis
4320 "SockJS python server implementation on top of Tornado framework")
4321 (description
4322 "SockJS-tornado provides the server side counterpart to a SockJS client
4323 library, through the Tornado framework.
4324
4325 SockJS provides a low latency, full duplex, cross-domain communication channel
4326 between a web browser and web server.")
4327 (license license:expat)))
4328
4329 (define-public python2-sockjs-tornado
4330 (package-with-python2 python-sockjs-tornado))
4331
4332 (define-public python-socksipy-branch
4333 (package
4334 (name "python-socksipy-branch")
4335 (version "1.01")
4336 (source
4337 (origin
4338 (method url-fetch)
4339 (uri (pypi-uri "SocksiPy-branch" version))
4340 (sha256
4341 (base32
4342 "01l41v4g7fy9fzvinmjxy6zcbhgqaif8dhdqm4w90fwcw9h51a8p"))))
4343 (build-system python-build-system)
4344 (arguments
4345 `(#:tests? #f)) ; There are no tests
4346 (home-page "https://code.google.com/archive/p/socksipy-branch/")
4347 (synopsis "Python SOCKS module")
4348 (description
4349 "SocksiPy - A Python SOCKS client module. It provides a
4350 socket-like interface that supports connections to any TCP
4351 service through the use of a SOCKS4, SOCKS5 or HTTP proxy.
4352 The original version was developed by Dan Haim, this is a
4353 branch created by Mario Vilas to address some open issues,
4354 as the original project seems to have been abandoned circa 2007.")
4355 (license license:bsd-3)))
4356
4357 (define-public python2-socksipy-branch
4358 (package-with-python2 python-socksipy-branch))
4359
4360 (define-public python-sqlalchemy
4361 (package
4362 (name "python-sqlalchemy")
4363 (version "1.0.12")
4364 (source
4365 (origin
4366 (method url-fetch)
4367 (uri (string-append "https://pypi.python.org/packages/source/S/"
4368 "SQLAlchemy/SQLAlchemy-" version ".tar.gz"))
4369 (sha256
4370 (base32
4371 "1l8qclhd0s90w3pvwhi5mjxdwr5j7gw7cjka2fx6f2vqmq7f4yb6"))))
4372 (build-system python-build-system)
4373 (native-inputs
4374 `(("python-cython" ,python-cython) ;for c extensions
4375 ("python-pytest" ,python-pytest)
4376 ("python-mock" ,python-mock))) ;for tests
4377 (arguments
4378 `(#:phases (alist-replace
4379 'check
4380 (lambda _ (zero? (system* "py.test")))
4381 %standard-phases)))
4382 (home-page "http://www.sqlalchemy.org")
4383 (synopsis "Database abstraction library")
4384 (description
4385 "SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that
4386 gives application developers the full power and flexibility of SQL. It
4387 provides a full suite of well known enterprise-level persistence patterns,
4388 designed for efficient and high-performing database access, adapted into a
4389 simple and Pythonic domain language.")
4390 (license license:x11)))
4391
4392 (define-public python2-sqlalchemy
4393 (package-with-python2 python-sqlalchemy))
4394
4395 (define-public python-pycodestyle
4396 (package
4397 (name "python-pycodestyle")
4398 (version "2.3.1")
4399 (source
4400 (origin
4401 (method url-fetch)
4402 (uri (pypi-uri "pycodestyle" version))
4403 (sha256
4404 (base32
4405 "0rk78b66p57ala26mdldl9lafr48blv5s659sah9q50qnfjmc8k8"))))
4406 (build-system python-build-system)
4407 (home-page "https://pycodestyle.readthedocs.io/")
4408 (synopsis "Python style guide checker")
4409 (description "@code{pycodestyle} (formerly pep8) is a tool to check
4410 Python code against some of the style conventions in
4411 @url{http://www.python.org/dev/peps/pep-0008/,PEP 8}.")
4412 (license license:expat)))
4413
4414 (define-public python2-pycodestyle
4415 (package-with-python2 python-pycodestyle))
4416
4417 (define-public python-orderedmultidict
4418 (package
4419 (name "python-orderedmultidict")
4420 (version "0.7.11")
4421 (source
4422 (origin
4423 (method url-fetch)
4424 (uri (pypi-uri "orderedmultidict" version))
4425 (sha256
4426 (base32
4427 "0dls862ibm7qbq4fnvwx0xn1v9hwyzywbff8xjjdr42dd75208yw"))))
4428 (build-system python-build-system)
4429 (arguments
4430 `(#:phases
4431 (modify-phases %standard-phases
4432 (add-after 'unpack 'fix-tests
4433 (lambda _
4434 ;; The package uses nosetest for running the tests.
4435 ;; Adding this initfile allows to run the test suite
4436 ;; without requiring nosetest.
4437 (zero? (system* "touch" "tests/__init__.py")))))))
4438 (propagated-inputs
4439 `(("python-six" ,python-six)))
4440 (native-inputs
4441 `(("python-pycodestyle" ,python-pycodestyle)))
4442 (home-page "https://github.com/gruns/orderedmultidict")
4443 (synopsis "Python Ordered Multivalue Dictionary - omdict")
4444 (description "This package contains a library for ordered multivalue
4445 dictionaries. A multivalue dictionary is a dictionary that can store
4446 multiple values for the same key. An ordered multivalue dictionary is a
4447 multivalue dictionary that retains the order of insertions and deletions.")
4448 (license license:unlicense)))
4449
4450 (define-public python2-orderedmultidict
4451 (package-with-python2 python-orderedmultidict))
4452
4453 (define-public python-furl
4454 (package
4455 (name "python-furl")
4456 (version "0.5.6")
4457 (source
4458 (origin
4459 (method url-fetch)
4460 (uri (pypi-uri "furl" version))
4461 (sha256
4462 (base32
4463 "0lzpfpm686hvz3sr1mcrnd1b3lgmnw8v59gb43wfi98r3b671pqc"))))
4464 (build-system python-build-system)
4465 (propagated-inputs
4466 `(("python-six" ,python-six)
4467 ("python-orderedmultidict" ,python-orderedmultidict)))
4468 (native-inputs
4469 `(("python-pycodestyle" ,python-pycodestyle)))
4470 (home-page "https://github.com/gruns/furl")
4471 (synopsis "URL manipulation in Python")
4472 (description "Furl provides an easy-to-use alternative to the
4473 @code{urllib} and @code{urlparse} modules for manipulating URLs.")
4474 (license license:unlicense)))
4475
4476 (define-public python2-furl
4477 (package-with-python2 python-furl))
4478
4479 (define-public python-flask-babel
4480 (package
4481 (name "python-flask-babel")
4482 (version "0.11.1")
4483 (source
4484 (origin
4485 (method url-fetch)
4486 (uri (pypi-uri "Flask-Babel" version))
4487 (sha256
4488 (base32
4489 "16b80cipdba9xj3jlaiaq6wgrgpjb70w3j01jjy9hbp4k71kd6yj"))))
4490 (build-system python-build-system)
4491 (propagated-inputs
4492 `(("python-flask" ,python-flask)
4493 ("python-babel" ,python-babel)
4494 ("python-jinja2" ,python-jinja2)
4495 ("python-pytz" ,python-pytz)))
4496 (home-page "https://github.com/python-babel/flask-babel")
4497 (synopsis "Add i18n/l10n support to Flask applications")
4498 (description "This package implements internationalization and localization
4499 support for Flask. This is based on the Python babel module as well as pytz -
4500 both of which are installed automatically if you install this library.")
4501 (license license:bsd-3)))
4502
4503 (define-public python2-flask-babel
4504 (package-with-python2 python-flask-babel))
4505
4506 (define-public python-sqlalchemy-utils
4507 (package
4508 (name "python-sqlalchemy-utils")
4509 (version "0.32.13")
4510 (source
4511 (origin
4512 (method url-fetch)
4513 (uri (pypi-uri "SQLAlchemy-Utils" version))
4514 (sha256
4515 (base32
4516 "0vsib7gidjamzsz6w4s5pdhxzxsrkghjnm4sqwk94igjrl3i5ixj"))))
4517 (build-system python-build-system)
4518 (arguments
4519 '(#:tests? #f)) ; FIXME: Many tests require a running database server.
4520 ;; #:phases
4521 ;; (modify-phases %standard-phases
4522 ;; (replace 'check
4523 ;; (lambda _
4524 ;; (zero? (system* "py.test" "sqlalchemy_utils" "tests")))))
4525 (propagated-inputs
4526 `(("python-six" ,python-six)
4527 ("python-sqlalchemy" ,python-sqlalchemy)))
4528 (native-inputs
4529 `(("python-dateutil" ,python-dateutil)
4530 ("python-flexmock" ,python-flexmock)
4531 ("python-psycopg2" ,python-psycopg2)
4532 ("python-pytest" ,python-pytest)
4533 ("python-pytz" ,python-pytz)))
4534 (home-page "https://github.com/kvesteri/sqlalchemy-utils")
4535 (synopsis "Various utility functions for SQLAlchemy")
4536 (description
4537 "SQLAlchemy-utils provides various utility functions and custom data types
4538 for SQLAlchemy. SQLAlchemy is an SQL database abstraction library for Python.
4539
4540 You might also want to install the following optional dependencies:
4541 @enumerate
4542 @item @code{python-passlib}
4543 @item @code{python-babel}
4544 @item @code{python-cryptography}
4545 @item @code{python-pytz}
4546 @item @code{python-psycopg2}
4547 @item @code{python-furl}
4548 @item @code{python-flask-babel}
4549 @end enumerate
4550 ")
4551 (license license:bsd-3)))
4552
4553 (define-public python2-sqlalchemy-utils
4554 (package-with-python2 python-sqlalchemy-utils))
4555
4556 (define-public python-alembic
4557 (package
4558 (name "python-alembic")
4559 (version "0.8.10")
4560 (source
4561 (origin
4562 (method url-fetch)
4563 (uri (pypi-uri "alembic" version))
4564 (sha256
4565 (base32
4566 "06br9sfqypnjlal6fsbnky3zb0askwcn3diz8k3kwa0qcblm0fqf"))))
4567 (build-system python-build-system)
4568 (native-inputs
4569 `(("python-mock" ,python-mock)
4570 ("python-pytest-cov" ,python-pytest-cov)))
4571 (propagated-inputs
4572 `(("python-sqlalchemy" ,python-sqlalchemy)
4573 ("python-mako" ,python-mako)
4574 ("python-editor" ,python-editor)))
4575 (home-page "http://bitbucket.org/zzzeek/alembic")
4576 (synopsis
4577 "Database migration tool for SQLAlchemy")
4578 (description
4579 "Alembic is a lightweight database migration tool for usage with the
4580 SQLAlchemy Database Toolkit for Python.")
4581 (license license:expat)))
4582
4583 (define-public python2-alembic
4584 (package-with-python2 python-alembic))
4585
4586 (define-public python-autopep8
4587 (package
4588 (name "python-autopep8")
4589 (version "1.2.4")
4590 (source
4591 (origin
4592 (method url-fetch)
4593 (uri (pypi-uri "autopep8" version))
4594 (sha256
4595 (base32
4596 "18parm383lfn42a00wklv3qf20p4v277f1x3cn58x019dqk1xqrq"))))
4597 (build-system python-build-system)
4598 (propagated-inputs
4599 `(("python-pep8" ,python-pep8)))
4600 (home-page "https://github.com/hhatto/autopep8")
4601 (synopsis "Format Python code according to the PEP 8 style guide")
4602 (description
4603 "@code{autopep8} automatically formats Python code to conform to
4604 the PEP 8 style guide. It uses the pycodestyle utility to determine
4605 what parts of the code needs to be formatted. @code{autopep8} is
4606 capable of fixing most of the formatting issues that can be reported
4607 by pycodestyle.")
4608 (license (license:non-copyleft
4609 "https://github.com/hhatto/autopep8/blob/master/LICENSE"))))
4610
4611 (define-public python2-autopep8
4612 (package-with-python2 python-autopep8))
4613
4614 (define-public python-distutils-extra
4615 (package
4616 (name "python-distutils-extra")
4617 (version "2.38")
4618 (source
4619 (origin
4620 (method url-fetch)
4621 (uri (string-append "https://launchpad.net/python-distutils-extra/trunk/"
4622 version "/+download/python-distutils-extra-"
4623 version ".tar.gz"))
4624 (sha256
4625 (base32
4626 "0lx15kcbby9zisx33p2h5hgakgwh2bvh0ibag8z0px4j6ifhs41x"))))
4627 (build-system python-build-system)
4628 (home-page "https://launchpad.net/python-distutils-extra/")
4629 (synopsis "Enhancements to Python's distutils")
4630 (description
4631 "The python-distutils-extra module enables you to easily integrate
4632 gettext support, themed icons, and scrollkeeper-based documentation into
4633 Python's distutils.")
4634 (license license:gpl2)))
4635
4636 (define-public python2-distutils-extra
4637 (package-with-python2 python-distutils-extra))
4638
4639 (define-public python2-elib.intl
4640 (package
4641 (name "python2-elib.intl")
4642 (version "0.0.3")
4643 (source
4644 (origin
4645 ;; This project doesn't tag releases or publish tarballs, so we take
4646 ;; source from a (semi-arbitrary, i.e. latest as of now) git commit.
4647 (method git-fetch)
4648 (uri (git-reference
4649 (url "https://github.com/dieterv/elib.intl.git")
4650 (commit "d09997cfef")))
4651 (sha256
4652 (base32
4653 "0y7vzff9xgbnaay7m0va1arl6g68ncwrvbgwl7jqlclsahzzb09d"))))
4654 (build-system python-build-system)
4655 (arguments
4656 ;; incompatible with Python 3 (exception syntax)
4657 `(#:python ,python-2
4658 #:tests? #f))
4659 (home-page "https://github.com/dieterv/elib.intl")
4660 (synopsis "Enhanced internationalization for Python")
4661 (description
4662 "The elib.intl module provides enhanced internationalization (I18N)
4663 services for your Python modules and applications.")
4664 (license license:lgpl3+)))
4665
4666 (define-public python-pillow
4667 (package
4668 (name "python-pillow")
4669 (version "3.3.3")
4670 (source
4671 (origin
4672 (method url-fetch)
4673 (uri (pypi-uri "Pillow" version))
4674 (patches (search-patches "python-pillow-freetype-2.7-test-failure.patch"))
4675 (sha256
4676 (base32
4677 "0xkv0p1d73gz0a1qaasf0ai4262g8f334j07vd60bjrxs2wr3nmj"))))
4678 (build-system python-build-system)
4679 (native-inputs
4680 `(("python-nose" ,python-nose)))
4681 (inputs
4682 `(("freetype" ,freetype)
4683 ("lcms" ,lcms)
4684 ("zlib" ,zlib)
4685 ("libjpeg" ,libjpeg)
4686 ("openjpeg" ,openjpeg)
4687 ("libtiff" ,libtiff)
4688 ("libwebp" ,libwebp)))
4689 (arguments
4690 `(#:phases (modify-phases %standard-phases
4691 (add-after
4692 'install 'check-installed
4693 (lambda* (#:key outputs inputs #:allow-other-keys)
4694 (begin
4695 (setenv "HOME" (getcwd))
4696 ;; Make installed package available for running the
4697 ;; tests
4698 (add-installed-pythonpath inputs outputs)
4699 (and (zero? (system* "python" "selftest.py"
4700 "--installed"))
4701 (zero? (system* "python" "test-installed.py"))))))
4702 (delete 'check))))
4703 (home-page "https://pypi.python.org/pypi/Pillow")
4704 (synopsis "Fork of the Python Imaging Library")
4705 (description
4706 "The Python Imaging Library adds image processing capabilities to your
4707 Python interpreter. This library provides extensive file format support, an
4708 efficient internal representation, and fairly powerful image processing
4709 capabilities. The core image library is designed for fast access to data
4710 stored in a few basic pixel formats. It should provide a solid foundation for
4711 a general image processing tool.")
4712 (license (license:x11-style
4713 "http://www.pythonware.com/products/pil/license.htm"
4714 "The PIL Software License"))))
4715
4716 (define-public python2-pillow
4717 (package-with-python2 python-pillow))
4718
4719 (define-public python-pycparser
4720 (package
4721 (name "python-pycparser")
4722 (version "2.17")
4723 (source
4724 (origin
4725 (method url-fetch)
4726 (uri (pypi-uri "pycparser" version))
4727 (sha256
4728 (base32
4729 "1dkkjri0miidqb1zcqhqljfa34fcy9k5akasgwsv6k622zlk3b0a"))))
4730 (outputs '("out" "doc"))
4731 (build-system python-build-system)
4732 (native-inputs
4733 `(("pkg-config" ,pkg-config)))
4734 (arguments
4735 `(#:phases
4736 (modify-phases %standard-phases
4737 (replace 'check
4738 (lambda _
4739 (with-directory-excursion "tests"
4740 (zero? (system* "python" "all_tests.py")))))
4741 (add-after 'install 'install-doc
4742 (lambda* (#:key outputs #:allow-other-keys)
4743 (let* ((data (string-append (assoc-ref outputs "doc") "/share"))
4744 (doc (string-append data "/doc/" ,name "-" ,version))
4745 (examples (string-append doc "/examples")))
4746 (mkdir-p examples)
4747 (for-each (lambda (file)
4748 (copy-file (string-append "." file)
4749 (string-append doc file)))
4750 '("/README.rst" "/CHANGES" "/LICENSE"))
4751 (copy-recursively "examples" examples)))))))
4752 (home-page "https://github.com/eliben/pycparser")
4753 (synopsis "C parser in Python")
4754 (description
4755 "Pycparser is a complete parser of the C language, written in pure Python
4756 using the PLY parsing library. It parses C code into an AST and can serve as
4757 a front-end for C compilers or analysis tools.")
4758 (license license:bsd-3)))
4759
4760 (define-public python2-pycparser
4761 (package-with-python2 python-pycparser))
4762
4763 (define-public python-cffi
4764 (package
4765 (name "python-cffi")
4766 (version "1.4.2")
4767 (source
4768 (origin
4769 (method url-fetch)
4770 (uri (pypi-uri "cffi" version))
4771 (sha256
4772 (base32 "161rj52rzi3880lij17d6i9kvgkiwjilrqjs8405k8sf6ryif7cg"))))
4773 (build-system python-build-system)
4774 (outputs '("out" "doc"))
4775 (inputs
4776 `(("libffi" ,libffi)))
4777 (propagated-inputs ; required at run-time
4778 `(("python-pycparser" ,python-pycparser)))
4779 (native-inputs
4780 `(("pkg-config" ,pkg-config)
4781 ("python-sphinx" ,python-sphinx)
4782 ("python-pytest" ,python-pytest)))
4783 (arguments
4784 `(#:phases
4785 (alist-cons-after
4786 'install 'install-doc
4787 (lambda* (#:key outputs #:allow-other-keys)
4788 (let* ((data (string-append (assoc-ref outputs "doc") "/share"))
4789 (doc (string-append data "/doc/" ,name "-" ,version))
4790 (html (string-append doc "/html")))
4791 (with-directory-excursion "doc"
4792 (system* "make" "html")
4793 (mkdir-p html)
4794 (copy-recursively "build/html" html))
4795 (copy-file "LICENSE" (string-append doc "/LICENSE"))))
4796 %standard-phases)))
4797 (home-page "http://cffi.readthedocs.org")
4798 (synopsis "Foreign function interface for Python")
4799 (description
4800 "Foreign Function Interface for Python calling C code.")
4801 (license license:expat)))
4802
4803 (define-public python2-cffi
4804 (package-with-python2 python-cffi))
4805
4806 (define-public python-xcffib
4807 (package
4808 (name "python-xcffib")
4809 (version "0.5.1")
4810 (source
4811 (origin
4812 (method url-fetch)
4813 (uri (pypi-uri "xcffib" version))
4814 (sha256
4815 (base32
4816 "09gbnmr5vn58mm8xi3fmd7fz6743cks6c46dphnxzwax6zsxmy60"))))
4817 (build-system python-build-system)
4818 (inputs
4819 `(("libxcb" ,libxcb)))
4820 (propagated-inputs
4821 `(("python-cffi" ,python-cffi) ; used at run time
4822 ("python-six" ,python-six)))
4823 (arguments
4824 `(;; FIXME: Tests need more work. See ".travis.yml" in the repository.
4825 #:tests? #f
4826 #:phases
4827 (modify-phases %standard-phases
4828 (add-after 'unpack 'fix-libxcb-path
4829 (lambda* (#:key inputs #:allow-other-keys)
4830 (let ((libxcb (assoc-ref inputs "libxcb")))
4831 (substitute* '("xcffib/__init__.py")
4832 (("^soname = \"") (string-append "soname = \"" libxcb "/lib/")))
4833 #t)))
4834 (add-after 'install 'install-doc
4835 (lambda* (#:key outputs #:allow-other-keys)
4836 (let ((doc (string-append (assoc-ref outputs "out") "/share"
4837 "/doc/" ,name "-" ,version)))
4838 (mkdir-p doc)
4839 (copy-file "README.md"
4840 (string-append doc "/README.md"))
4841 #t))))))
4842 (home-page "https://github.com/tych0/xcffib")
4843 (synopsis "XCB Python bindings")
4844 (description
4845 "Xcffib is a replacement for xpyb, an XCB Python bindings. It adds
4846 support for Python 3 and PyPy. It is based on cffi.")
4847 (license license:expat)))
4848
4849 (define-public python2-xcffib
4850 (package-with-python2 python-xcffib))
4851
4852 (define-public python-cairocffi
4853 (package
4854 (name "python-cairocffi")
4855 (version "0.8.0")
4856 (source
4857 (origin
4858 (method url-fetch)
4859 ;; The archive on pypi is missing the 'utils' directory!
4860 (uri (string-append "https://github.com/Kozea/cairocffi/archive/v"
4861 version ".tar.gz"))
4862 (file-name (string-append name "-" version ".tar.gz"))
4863 (sha256
4864 (base32
4865 "1rk2dvy3fxrga6bvvxc2fi5lbaynm5h4a0w0aaxyn3bc77rszjg9"))))
4866 (build-system python-build-system)
4867 (outputs '("out" "doc"))
4868 (inputs
4869 `(("gdk-pixbuf" ,gdk-pixbuf)
4870 ("cairo" ,cairo)))
4871 (native-inputs
4872 `(("pkg-config" ,pkg-config)
4873 ("python-sphinx" ,python-sphinx)
4874 ("python-docutils" ,python-docutils)))
4875 (propagated-inputs
4876 `(("python-xcffib" ,python-xcffib))) ; used at run time
4877 (arguments
4878 `(;; FIXME: Tests cannot find 'libcairo.so.2'.
4879 #:tests? #f
4880 #:phases
4881 (modify-phases %standard-phases
4882 (add-after 'install 'install-doc
4883 (lambda* (#:key inputs outputs #:allow-other-keys)
4884 (let* ((data (string-append (assoc-ref outputs "doc") "/share"))
4885 (doc (string-append data "/doc/" ,name "-" ,version))
4886 (html (string-append doc "/html")))
4887 (setenv "LD_LIBRARY_PATH"
4888 (string-append (assoc-ref inputs "cairo") "/lib" ":"
4889 (assoc-ref inputs "gdk-pixbuf") "/lib"))
4890 (setenv "LANG" "en_US.UTF-8")
4891 (mkdir-p html)
4892 (for-each (lambda (file)
4893 (copy-file (string-append "." file)
4894 (string-append doc file)))
4895 '("/README.rst" "/CHANGES" "/LICENSE"))
4896 (system* "python" "setup.py" "build_sphinx")
4897 (copy-recursively "docs/_build/html" html)
4898 #t))))))
4899 (home-page "https://github.com/Kozea/cairocffi")
4900 (synopsis "Python bindings and object-oriented API for Cairo")
4901 (description
4902 "Cairocffi is a CFFI-based drop-in replacement for Pycairo, a set of
4903 Python bindings and object-oriented API for cairo. Cairo is a 2D vector
4904 graphics library with support for multiple backends including image buffers,
4905 PNG, PostScript, PDF, and SVG file output.")
4906 (license license:bsd-3)))
4907
4908 (define-public python2-cairocffi
4909 (package-with-python2 python-cairocffi))
4910
4911 (define-public python-decorator
4912 (package
4913 (name "python-decorator")
4914 (version "4.0.10")
4915 (source
4916 (origin
4917 (method url-fetch)
4918 (uri (pypi-uri "decorator" version))
4919 (sha256
4920 (base32 "0w7hg59hlpq74jpyja4yfryap0ccjvchgpkfp20rhj9krgnrhvlw"))))
4921 (build-system python-build-system)
4922 (arguments '(#:tests? #f)) ; no test target
4923 (home-page "https://pypi.python.org/pypi/decorator/")
4924 (synopsis "Python module to simplify usage of decorators")
4925 (description
4926 "The aim of the decorator module is to simplify the usage of decorators
4927 for the average programmer, and to popularize decorators usage giving examples
4928 of useful decorators, such as memoize, tracing, redirecting_stdout, locked,
4929 etc. The core of this module is a decorator factory.")
4930 (license license:expat)))
4931
4932 (define-public python2-decorator
4933 (package-with-python2 python-decorator))
4934
4935 (define-public python-drmaa
4936 (package
4937 (name "python-drmaa")
4938 (version "0.7.7")
4939 (source
4940 (origin
4941 (method url-fetch)
4942 (uri (pypi-uri "drmaa" version))
4943 (sha256
4944 (base32 "0xzqriqyvk5b8hszbavsyxd29wm3sxirm8zvvdm73rs2iq7w4hkx"))))
4945 (build-system python-build-system)
4946 ;; The test suite requires libdrmaa which is provided by the cluster
4947 ;; environment. At runtime the environment variable DRMAA_LIBRARY_PATH
4948 ;; should be set to the path of the libdrmaa library.
4949 (arguments '(#:tests? #f))
4950 (native-inputs
4951 `(("python-nose" ,python-nose)))
4952 (home-page "https://pypi.python.org/pypi/drmaa")
4953 (synopsis "Python bindings for the DRMAA library")
4954 (description
4955 "A Python package for Distributed Resource Management (DRM) job
4956 submission and control. This package is an implementation of the DRMAA 1.0
4957 Python language binding specification.")
4958 (license license:bsd-3)))
4959
4960 (define-public python2-drmaa
4961 (package-with-python2 python-drmaa))
4962
4963 (define-public python-gridmap
4964 (package
4965 (name "python-gridmap")
4966 (version "0.13.0")
4967 (source
4968 (origin
4969 (method url-fetch)
4970 (uri (string-append
4971 "https://github.com/pygridtools/gridmap/archive/v"
4972 version ".tar.gz"))
4973 (file-name (string-append name "-" version ".tar.gz"))
4974 (sha256
4975 (base32 "1gzjg2k6f14i1msm2b0ax8d9ds1hvk6qd5nlaivg8m4cxqp4cp1x"))))
4976 (build-system python-build-system)
4977 (arguments
4978 '(#:tests? #f)) ; FIXME: Requires python-cherrypy.
4979 (propagated-inputs
4980 `(("python-psutil" ,python-psutil)
4981 ("python-drmaa" ,python-drmaa)
4982 ("python-pyzmq" ,python-pyzmq)))
4983 (home-page "https://github.com/pygridtools/gridmap")
4984 (synopsis "Create jobs on a cluster directly from Python")
4985 (description
4986 "Gridmap is a Python package to allow you to easily create jobs on the
4987 cluster directly from Python. You can directly map Python functions onto the
4988 cluster without needing to write any wrapper code yourself.")
4989 (license license:gpl3+)))
4990
4991 (define-public python2-gridmap
4992 (package-with-python2 python-gridmap))
4993
4994 (define-public python-pexpect
4995 (package
4996 (name "python-pexpect")
4997 (version "4.2.1")
4998 (source
4999 (origin
5000 (method url-fetch)
5001 (uri (pypi-uri "pexpect" version))
5002 (sha256
5003 (base32 "14ls7k99pwvl21zqv65kzrhccv50j89m5ij1hf0slmsvlxjj84rx"))))
5004 (build-system python-build-system)
5005 (arguments
5006 `(#:phases
5007 (modify-phases %standard-phases
5008 (add-before 'check 'prepare-tests
5009 (lambda _
5010 (substitute* (find-files "tests")
5011 (("/bin/ls") (which "ls"))
5012 (("/bin/echo") (which "echo"))
5013 (("/bin/which") (which "which"))
5014 ;; Many tests try to use the /bin directory which
5015 ;; is not present in the build environment.
5016 ;; Use one that's non-empty and unlikely to change.
5017 (("/bin'") "/dev'"))
5018 ;; XXX: Socket connection test gets "Connection reset by peer".
5019 ;; Why does it not work? Delete for now.
5020 (delete-file "tests/test_socket.py")
5021 #t))
5022 (replace 'check (lambda _ (zero? (system* "nosetests" "-v")))))))
5023 (native-inputs
5024 `(("python-nose" ,python-nose)
5025 ("python-pytest" ,python-pytest-3.0)
5026 ("man-db" ,man-db)
5027 ("which" ,which)))
5028 (propagated-inputs
5029 `(("python-ptyprocess" ,python-ptyprocess)))
5030 (home-page "http://pexpect.readthedocs.org/")
5031 (synopsis "Controlling interactive console applications")
5032 (description
5033 "Pexpect is a pure Python module for spawning child applications;
5034 controlling them; and responding to expected patterns in their output.
5035 Pexpect works like Don Libes’ Expect. Pexpect allows your script to spawn a
5036 child application and control it as if a human were typing commands.")
5037 (license license:isc)))
5038
5039 (define-public python2-pexpect
5040 (package-with-python2 python-pexpect))
5041
5042 (define-public python-setuptools-scm
5043 (package
5044 (name "python-setuptools-scm")
5045 (version "1.15.0")
5046 (source (origin
5047 (method url-fetch)
5048 (uri (pypi-uri "setuptools_scm" version))
5049 (sha256
5050 (base32
5051 "0bwyc5markib0i7i2qlyhdzxhiywzxbkfiapldma8m91m82jvwfs"))))
5052 (build-system python-build-system)
5053 (home-page "https://github.com/pypa/setuptools_scm/")
5054 (synopsis "Manage Python package versions in SCM metadata")
5055 (description
5056 "Setuptools_scm handles managing your Python package versions in
5057 @dfn{software configuration management} (SCM) metadata instead of declaring
5058 them as the version argument or in a SCM managed file.")
5059 (license license:expat)))
5060
5061 (define-public python2-setuptools-scm
5062 (package-with-python2 python-setuptools-scm))
5063
5064 (define-public python-pathpy
5065 (package
5066 (name "python-pathpy")
5067 (version "8.1.1")
5068 (source
5069 (origin
5070 (method url-fetch)
5071 (uri (string-append "https://pypi.python.org/packages/source/p/"
5072 "path.py/path.py-" version ".tar.gz"))
5073 (sha256
5074 (base32 "1p8s1l2vfkqhqxdhqlj0g1jjw4f1as2frr35sjcpjjpd5a89y41f"))))
5075 (outputs '("out" "doc"))
5076 (build-system python-build-system)
5077 (propagated-inputs
5078 `(("python-appdirs" ,python-appdirs)))
5079 (native-inputs
5080 `(("python-setuptools-scm" ,python-setuptools-scm)
5081 ("python-sphinx" ,python-sphinx)
5082 ("python-rst.linker" ,python-rst.linker)
5083 ("python-pytest" ,python-pytest)
5084 ("python-pytest-runner" ,python-pytest-runner)))
5085 (arguments
5086 `(#:phases
5087 (modify-phases %standard-phases
5088 (add-after 'build 'build-doc
5089 (lambda _
5090 (setenv "LANG" "en_US.UTF-8")
5091 (zero? (system* "python" "setup.py" "build_sphinx"))))
5092 (add-after 'install 'install-doc
5093 (lambda* (#:key outputs #:allow-other-keys)
5094 (let* ((data (string-append (assoc-ref outputs "doc") "/share"))
5095 (doc (string-append data "/doc/" ,name "-" ,version))
5096 (html (string-append doc "/html")))
5097 (mkdir-p html)
5098 (for-each (lambda (file)
5099 (copy-file file (string-append doc "/" file)))
5100 '("README.rst" "CHANGES.rst"))
5101 (copy-recursively "build/sphinx/html" html)))))))
5102 (home-page "https://github.com/jaraco/path.py")
5103 (synopsis "Python module wrapper for built-in os.path")
5104 (description
5105 "@code{path.py} implements path objects as first-class entities, allowing
5106 common operations on files to be invoked on those path objects directly.")
5107 (license license:expat)))
5108
5109 (define-public python2-pathpy
5110 (package-with-python2 python-pathpy))
5111
5112 (define-public python-pickleshare
5113 (package
5114 (name "python-pickleshare")
5115 (version "0.5")
5116 (source
5117 (origin
5118 (method url-fetch)
5119 (uri (string-append "https://pypi.python.org/packages/source/p/"
5120 "pickleshare/pickleshare-" version ".tar.gz"))
5121 (sha256
5122 (base32 "11ljr90j3p6qswdrbl7p4cjb2i93f6vn0vx9anzpshsx0d2mggn0"))))
5123 (build-system python-build-system)
5124 (propagated-inputs
5125 `(("python-pathpy" ,python-pathpy)))
5126 (home-page "https://github.com/vivainio/pickleshare")
5127 (synopsis "Tiny key value database with concurrency support")
5128 (description
5129 "PickleShare is a small ‘shelve’-like datastore with concurrency support.
5130 Like shelve, a PickleShareDB object acts like a normal dictionary. Unlike
5131 shelve, many processes can access the database simultaneously. Changing a
5132 value in database is immediately visible to other processes accessing the same
5133 database. Concurrency is possible because the values are stored in separate
5134 files. Hence the “database” is a directory where all files are governed by
5135 PickleShare.")
5136 (license license:expat)))
5137
5138 (define-public python2-pickleshare
5139 (package-with-python2 python-pickleshare))
5140
5141 (define-public python-simplegeneric
5142 (package
5143 (name "python-simplegeneric")
5144 (version "0.8.1")
5145 (source
5146 (origin
5147 (method url-fetch)
5148 (uri (string-append "https://pypi.python.org/packages/source/s/"
5149 "simplegeneric/simplegeneric-" version ".zip"))
5150 (sha256
5151 (base32 "0wwi1c6md4vkbcsfsf8dklf3vr4mcdj4mpxkanwgb6jb1432x5yw"))))
5152 (build-system python-build-system)
5153 (native-inputs
5154 `(("unzip" ,unzip)))
5155 (home-page "http://cheeseshop.python.org/pypi/simplegeneric")
5156 (synopsis "Python module for simple generic functions")
5157 (description
5158 "The simplegeneric module lets you define simple single-dispatch generic
5159 functions, akin to Python’s built-in generic functions like @code{len()},
5160 @code{iter()} and so on. However, instead of using specially-named methods,
5161 these generic functions use simple lookup tables, akin to those used by
5162 e.g. @code{pickle.dump()} and other generic functions found in the Python
5163 standard library.")
5164 (license license:zpl2.1)))
5165
5166 (define-public python2-simplegeneric
5167 (package-with-python2 python-simplegeneric))
5168
5169 (define-public python-ipython-genutils
5170 ;; TODO: This package is retired, check if can be removed, see description.
5171 (package
5172 (name "python-ipython-genutils")
5173 (version "0.1.0")
5174 (source
5175 (origin
5176 (method url-fetch)
5177 (uri (string-append "https://pypi.python.org/packages/source/i/"
5178 "ipython_genutils/ipython_genutils-"
5179 version ".tar.gz"))
5180 (sha256
5181 (base32 "19l2pp1c64ansr89l3cqh19jdi2ixhssdzx0vz4n6r52a6i281is"))))
5182 (build-system python-build-system)
5183 (arguments `(#:tests? #f)) ; no tests
5184 (home-page "http://ipython.org")
5185 (synopsis "Vestigial utilities from IPython")
5186 (description
5187 "This package provides retired utilities from IPython. No packages
5188 outside IPython/Jupyter should depend on it.
5189
5190 This package shouldn't exist. It contains some common utilities shared by
5191 Jupyter and IPython projects during The Big Split. As soon as possible, those
5192 packages will remove their dependency on this, and this package will go
5193 away.")
5194 (license license:bsd-3)))
5195
5196 (define-public python2-ipython-genutils
5197 (package-with-python2 python-ipython-genutils))
5198
5199 (define-public python-traitlets
5200 (package
5201 (name "python-traitlets")
5202 (version "4.2.0")
5203 (source
5204 (origin
5205 (method url-fetch)
5206 (uri (pypi-uri "traitlets" version))
5207 (sha256
5208 (base32
5209 "1afy08sa5n9gnkvh3da49c16zkyv598vchv0p1hp7zzjy8895hz4"))))
5210 (build-system python-build-system)
5211 (arguments
5212 `(#:phases
5213 (modify-phases %standard-phases
5214 (replace 'check (lambda _ (zero? (system* "nosetests")))))))
5215 (propagated-inputs
5216 `(("python-ipython-genutils" ,python-ipython-genutils)
5217 ("python-decorator" ,python-decorator)))
5218 (native-inputs
5219 `(("python-mock" ,python-mock)
5220 ("python-nose" ,python-nose)))
5221 (home-page "http://ipython.org")
5222 (synopsis "Configuration system for Python applications")
5223 (description
5224 "Traitlets is a framework that lets Python classes have attributes with
5225 type checking, dynamically calculated default values, and ‘on change’
5226 callbacks. The package also includes a mechanism to use traitlets for
5227 configuration, loading values from files or from command line arguments. This
5228 is a distinct layer on top of traitlets, so you can use traitlets in your code
5229 without using the configuration machinery.")
5230 (license license:bsd-3)))
5231
5232 (define-public python2-traitlets
5233 (package-with-python2 python-traitlets))
5234
5235 (define-public python-jupyter-core
5236 (package
5237 (name "python-jupyter-core")
5238 (version "4.2.1")
5239 (source
5240 (origin
5241 (method url-fetch)
5242 (uri (string-append (pypi-uri "jupyter_core" version)))
5243 (sha256
5244 (base32
5245 "1cy7inv218dgh4m1fbzbsiqpz733ylgjrj62jxqpfzs3r2cm7ic9"))))
5246 (build-system python-build-system)
5247 ;; FIXME: not sure how to run the tests
5248 (arguments `(#:tests? #f))
5249 (propagated-inputs
5250 `(("python-traitlets" ,python-traitlets)))
5251 (home-page "http://jupyter.org/")
5252 (synopsis "Jupyter base package")
5253 (description
5254 "Jupyter core is the base package on which Jupyter projects rely.")
5255 (license license:bsd-3)))
5256
5257 (define-public python2-jupyter-core
5258 (package-with-python2 python-jupyter-core))
5259
5260 (define-public python-jupyter-client
5261 (package
5262 (name "python-jupyter-client")
5263 (version "4.4.0")
5264 (source
5265 (origin
5266 (method url-fetch)
5267 (uri (pypi-uri "jupyter_client" version))
5268 (sha256
5269 (base32
5270 "1vjjrpjw7k5sh982pbjnslv7byfbfazjw9g92jvs7dz5qbx556n9"))))
5271 (build-system python-build-system)
5272 ;; Tests fail because of missing native python kernel which I assume is
5273 ;; provided by the ipython package, which we cannot use because it would
5274 ;; cause a dependency cycle.
5275 (arguments `(#:tests? #f))
5276 (propagated-inputs
5277 `(("python-pyzmq" ,python-pyzmq)
5278 ("python-traitlets" ,python-traitlets)
5279 ("python-jupyter-core" ,python-jupyter-core)))
5280 (home-page "http://jupyter.org/")
5281 (synopsis "Jupyter protocol implementation and client libraries")
5282 (description
5283 "The @code{jupyter_client} package contains the reference implementation
5284 of the Jupyter protocol. It also provides client and kernel management APIs
5285 for working with kernels, and the @code{jupyter kernelspec} entrypoint for
5286 installing @code{kernelspec}s for use with Jupyter frontends.")
5287 (license license:bsd-3)))
5288
5289 (define-public python2-jupyter-client
5290 (package-with-python2 python-jupyter-client))
5291
5292 (define-public python-ipykernel
5293 (package
5294 (name "python-ipykernel")
5295 (version "4.5.2")
5296 (source
5297 (origin
5298 (method url-fetch)
5299 (uri (pypi-uri "ipykernel" version))
5300 (sha256
5301 (base32 "0qllv0k6zzv1r1cj1x2ygxmlrrqhbslzj8rc6r6fg3kc1rgz4m2s"))))
5302 (build-system python-build-system)
5303 ;; The tests load a submodule of IPython. However, IPython itself depends
5304 ;; on ipykernel.
5305 (arguments `(#:tests? #f))
5306 (propagated-inputs
5307 ;; imported at runtime during connect
5308 `(("python-jupyter-client" ,python-jupyter-client)))
5309 (home-page "http://ipython.org")
5310 (synopsis "IPython Kernel for Jupyter")
5311 (description
5312 "This package provides the IPython kernel for Jupyter.")
5313 (license license:bsd-3)))
5314
5315 (define-public python2-ipykernel
5316 (package-with-python2 python-ipykernel))
5317
5318 (define-public python-testpath
5319 (package
5320 (name "python-testpath")
5321 (version "0.2")
5322 (source
5323 (origin
5324 (method url-fetch)
5325 (uri (string-append "https://github.com/jupyter/testpath/archive/"
5326 version ".tar.gz"))
5327 (file-name (string-append name "-" version ".tar.gz"))
5328 (sha256
5329 (base32
5330 "04kh3fgvmqz6cfcw79q70qwjz7ib7lxm27cc548iy2rpr33qqf55"))))
5331 (build-system python-build-system)
5332 (arguments
5333 `(#:tests? #f ; this package does not even have a setup.py
5334 #:modules ((guix build python-build-system)
5335 (guix build utils)
5336 (srfi srfi-1))
5337 #:imported-modules (,@%python-build-system-modules
5338 (srfi srfi-1))
5339 #:phases
5340 (modify-phases %standard-phases
5341 (delete 'install)
5342 (replace 'build
5343 (lambda* (#:key inputs outputs #:allow-other-keys)
5344 (let* ((version (last
5345 (string-split (assoc-ref inputs "python") #\-)))
5346 (x.y (string-join (take (string-split version #\.) 2)
5347 "."))
5348 (dir (string-append
5349 (assoc-ref outputs "out")
5350 "/lib/python" x.y "/site-packages/testpath")))
5351 (mkdir-p dir)
5352 (copy-recursively "testpath" dir))
5353 #t)))))
5354 (home-page "https://github.com/takluyver/testpath")
5355 (synopsis "Test utilities for code working with files and commands")
5356 (description
5357 "Testpath is a collection of utilities for Python code working with files
5358 and commands. It contains functions to check things on the filesystem, and
5359 tools for mocking system commands and recording calls to those.")
5360 (license license:expat)))
5361
5362 (define-public python2-testpath
5363 (package-with-python2 python-testpath))
5364
5365 (define-public python-ipython
5366 (package
5367 (name "python-ipython")
5368 (version "5.2.2")
5369 (source
5370 (origin
5371 (method url-fetch)
5372 (uri (pypi-uri "ipython" version ".tar.gz"))
5373 (sha256
5374 (base32 "1qhjwa9cyz1np7rhv3p4ip13lkgbqsad62l24xkwiq1ic2gwiqbf"))))
5375 (build-system python-build-system)
5376 (outputs '("out" "doc"))
5377 (propagated-inputs
5378 `(("python-pyzmq" ,python-pyzmq)
5379 ("python-prompt-toolkit" ,python-prompt-toolkit)
5380 ("python-terminado" ,python-terminado)
5381 ("python-matplotlib" ,python-matplotlib)
5382 ("python-numpy" ,python-numpy)
5383 ("python-numpydoc" ,python-numpydoc)
5384 ("python-jinja2" ,python-jinja2)
5385 ("python-mistune" ,python-mistune)
5386 ("python-pexpect" ,python-pexpect)
5387 ("python-pickleshare" ,python-pickleshare)
5388 ("python-simplegeneric" ,python-simplegeneric)
5389 ("python-jsonschema" ,python-jsonschema)
5390 ("python-traitlets" ,python-traitlets)
5391 ("python-ipykernel" ,python-ipykernel)
5392 ("python-nbformat" ,python-nbformat)
5393 ("python-pygments" ,python-pygments)))
5394 (inputs
5395 `(("readline" ,readline)
5396 ("which" ,which)))
5397 (native-inputs
5398 `(("graphviz" ,graphviz)
5399 ("pkg-config" ,pkg-config)
5400 ("python-requests" ,python-requests) ;; for tests
5401 ("python-testpath" ,python-testpath)
5402 ("python-nose" ,python-nose)
5403 ("python-sphinx" ,python-sphinx)
5404 ("python-shpinx-rtd-theme" ,python-sphinx-rtd-theme)
5405 ("texlive" ,texlive)
5406 ("texinfo" ,texinfo)))
5407 (arguments
5408 `(#:phases
5409 (modify-phases %standard-phases
5410 (add-after
5411 'install 'install-doc
5412 (lambda* (#:key inputs outputs #:allow-other-keys)
5413 (let* ((data (string-append (assoc-ref outputs "doc") "/share"))
5414 (doc (string-append data "/doc/" ,name "-" ,version))
5415 (html (string-append doc "/html"))
5416 (man1 (string-append data "/man/man1"))
5417 (info (string-append data "/info"))
5418 (examples (string-append doc "/examples"))
5419 (python-arg (string-append "PYTHON=" (which "python"))))
5420 (setenv "LANG" "en_US.utf8")
5421 ;; Make installed package available for running the tests
5422 (add-installed-pythonpath inputs outputs)
5423 (with-directory-excursion "docs"
5424 ;; FIXME: pdf fails to build
5425 ;;(system* "make" "pdf" "PAPER=a4")
5426 (system* "make" python-arg "html")
5427 (system* "make" python-arg "info"))
5428 (copy-recursively "docs/man" man1)
5429 (copy-recursively "examples" examples)
5430 (copy-recursively "docs/build/html" html)
5431 ;; (copy-file "docs/build/latex/ipython.pdf"
5432 ;; (string-append doc "/ipython.pdf"))
5433 (mkdir-p info)
5434 (copy-file "docs/build/texinfo/ipython.info"
5435 (string-append info "/ipython.info"))
5436 (copy-file "COPYING.rst" (string-append doc "/COPYING.rst")))))
5437 ;; Tests can only be run after the library has been installed and not
5438 ;; within the source directory.
5439 (delete 'check)
5440 (add-after
5441 'install 'check
5442 (lambda* (#:key inputs outputs tests? #:allow-other-keys)
5443 (if tests?
5444 (with-directory-excursion "/tmp"
5445 ;; Make installed package available for running the tests
5446 (add-installed-pythonpath inputs outputs)
5447 (setenv "HOME" "/tmp/") ;; required by a test
5448 (zero? (system* (string-append (assoc-ref outputs "out")
5449 "/bin/iptest"))))
5450 #t)))
5451 (add-before
5452 'install 'fix-tests
5453 (lambda* (#:key inputs #:allow-other-keys)
5454 (substitute* "./IPython/utils/_process_posix.py"
5455 (("/usr/bin/env', 'which") (which "which")))
5456 (substitute* "./IPython/core/tests/test_inputtransformer.py"
5457 (("#!/usr/bin/env python")
5458 (string-append "#!" (which "python"))))
5459 ;; Disable 1 failing test
5460 (substitute* "./IPython/core/tests/test_magic.py"
5461 (("def test_dirops\\(\\):" all)
5462 (string-append "@dec.skipif(True)\n" all))))))))
5463 (home-page "http://ipython.org")
5464 (synopsis "IPython is a tool for interactive computing in Python")
5465 (description
5466 "IPython provides a rich architecture for interactive computing with:
5467 Powerful interactive shells, a browser-based notebook, support for interactive
5468 data visualization, embeddable interpreters and tools for parallel
5469 computing.")
5470 (license license:bsd-3)
5471 (properties `((python2-variant . ,(delay python2-ipython))))))
5472
5473 (define-public python2-ipython
5474 (let ((ipython (package-with-python2 (strip-python2-variant python-ipython))))
5475 (package
5476 (inherit ipython)
5477 ;; FIXME: add pyreadline once available.
5478 (propagated-inputs
5479 `(("python2-backports-shutil-get-terminal-size"
5480 ,python2-backports-shutil-get-terminal-size)
5481 ("python2-pathlib2" ,python2-pathlib2)
5482 ,@(package-propagated-inputs ipython)))
5483 (native-inputs
5484 `(("python2-mock" ,python2-mock)
5485 ,@(package-native-inputs ipython))))))
5486
5487 (define-public python-isodate
5488 (package
5489 (name "python-isodate")
5490 (version "0.5.4")
5491 (source
5492 (origin
5493 (method url-fetch)
5494 (uri (pypi-uri "isodate" version))
5495 (sha256
5496 (base32
5497 "0cafaiwixgpxwh9dsd28qb0dbzsj6xpxjdkyk30ns91ps10mq422"))))
5498 (build-system python-build-system)
5499 (home-page
5500 "http://cheeseshop.python.org/pypi/isodate")
5501 (synopsis
5502 "Python date parser and formatter")
5503 (description
5504 "Python-isodate is a python module for parsing and formatting
5505 ISO 8601 dates, time and duration.")
5506 (license license:bsd-3)))
5507
5508 (define-public python2-isodate
5509 (package-with-python2 python-isodate))
5510
5511 (define-public python-html5lib
5512 (package
5513 (name "python-html5lib")
5514 (version "1.0b10")
5515 (source
5516 (origin
5517 (method url-fetch)
5518 (uri (pypi-uri "html5lib" version))
5519 (sha256
5520 (base32
5521 "1yd068a5c00wd0ajq0hqimv7fd82lhrw0w3s01vbhy9bbd6xapqd"))))
5522 (build-system python-build-system)
5523 (propagated-inputs
5524 `(("python-six" ,python-six)
5525 ("python-webencodings" ,python-webencodings)))
5526 (arguments
5527 `(#:test-target "check"))
5528 (home-page
5529 "https://github.com/html5lib/html5lib-python")
5530 (synopsis
5531 "Python HTML parser based on the WHATWG HTML specifcation")
5532 (description
5533 "Html5lib is an HTML parser based on the WHATWG HTML specifcation
5534 and written in Python.")
5535 (license license:expat)))
5536
5537 (define-public python2-html5lib
5538 (package-with-python2 python-html5lib))
5539
5540 ;; Needed for python-bleach, a dependency of python-notebook
5541 (define-public python-html5lib-0.9
5542 (package
5543 (inherit python-html5lib)
5544 (version "0.999")
5545 (source
5546 (origin
5547 (method url-fetch)
5548 (uri (pypi-uri "html5lib" version))
5549 (sha256
5550 (base32
5551 "17n4zfsj6ynmbwdwviywmj8r6nzr3xvfx2zs0xhndmvm51z7z263"))))))
5552
5553 (define-public python2-html5lib-0.9
5554 (package-with-python2 python-html5lib-0.9))
5555
5556 (define-public python-webencodings
5557 (package
5558 (name "python-webencodings")
5559 (version "0.5")
5560 (source (origin
5561 (method url-fetch)
5562 (uri (pypi-uri "webencodings" version))
5563 (sha256
5564 (base32
5565 "015rw7662lkpb9aqiqah2hbizk6w531badqwjpz41rr47glmxid5"))))
5566 (build-system python-build-system)
5567 (arguments
5568 '(#:phases
5569 (modify-phases %standard-phases
5570 (replace 'check
5571 (lambda _
5572 (zero? (system* "py.test" "-v" "webencodings/tests.py")))))))
5573 (native-inputs
5574 `(("python-pytest" ,python-pytest)))
5575 (home-page "https://github.com/SimonSapin/python-webencodings")
5576 (synopsis "Character encoding aliases for legacy web content")
5577 (description
5578 "In order to be compatible with legacy web content when interpreting
5579 something like @code{Content-Type: text/html; charset=latin1}, tools need
5580 to use a particular set of aliases for encoding labels as well as some
5581 overriding rules. For example, @code{US-ASCII} and @code{iso-8859-1} on
5582 the web are actually aliases for @code{windows-1252}, and an @code{UTF-8}
5583 or @code{UTF-16} BOM takes precedence over any other encoding declaration.
5584 The WHATWG @url{https://encoding.spec.whatwg.org/,Encoding} standard
5585 defines all such details so that implementations do not have to
5586 reverse-engineer each other.
5587
5588 This module implements the Encoding standard and has encoding labels and
5589 BOM detection, but the actual implementation for encoders and decoders
5590 is Python’s.")
5591 (license license:bsd-3)))
5592
5593 (define-public python2-webencodings
5594 (package-with-python2 python-webencodings))
5595
5596 (define-public python-urwid
5597 (package
5598 (name "python-urwid")
5599 (version "1.3.1")
5600 (source
5601 (origin
5602 (method url-fetch)
5603 (uri (pypi-uri "urwid" version))
5604 (sha256
5605 (base32
5606 "18cnd1wdjcas08x5qwa5ayw6jsfcn33w4d9f7q3s29fy6qzc1kng"))))
5607 (build-system python-build-system)
5608 (arguments
5609 `(#:phases
5610 (modify-phases %standard-phases
5611 ;; Disable failing test. Bug filed upstream:
5612 ;; https://github.com/wardi/urwid/issues/164
5613 ;; TODO: check again for python-urwid > 1.3.1 or python > 3.4.3.
5614 (add-after 'unpack 'disable-failing-test
5615 (lambda _
5616 (substitute* "urwid/tests/test_event_loops.py"
5617 (("test_remove_watch_file")
5618 "disable_remove_watch_file")))))))
5619 (home-page "http://urwid.org")
5620 (synopsis "Console user interface library for Python")
5621 (description
5622 "Urwid is a curses-based UI/widget library for Python. It includes many
5623 features useful for text console applications.")
5624 (license license:lgpl2.1+)))
5625
5626 (define-public python2-urwid
5627 (let ((python2-urwid (package-with-python2 python-urwid)))
5628 (package
5629 (inherit python2-urwid)
5630 (arguments
5631 (append
5632 '(#:phases
5633 (modify-phases %standard-phases
5634 ;; Disable the vterm tests because of non-deterministic failures
5635 ;; with Python 2. See https://github.com/urwid/urwid/issues/230.
5636 (add-after 'unpack 'delete-test_vterm.py
5637 (delete-file "urwid/tests/test_vterm.py"))))
5638 (package-arguments python-urwid))))))
5639
5640 (define-public python-openid
5641 (package
5642 (name "python-openid")
5643 (version "3.0.10")
5644 (source
5645 (origin
5646 (method url-fetch)
5647 (uri (pypi-uri "python3-openid" version))
5648 (sha256
5649 (base32
5650 "1x3nh3fycqfn43jp5j5pb4q4y2jxp4mdka4absaa3bc0078qd758"))))
5651 (build-system python-build-system)
5652 (arguments
5653 `(#:phases
5654 (modify-phases %standard-phases
5655 (replace 'check
5656 (lambda _
5657 (zero? (system* "./admin/runtests")))))))
5658 (properties `((python2-variant . ,(delay python2-openid))))
5659 (propagated-inputs
5660 `(("python-defusedxml" ,python-defusedxml)))
5661 (native-inputs
5662 `(("python-psycopg2" ,python-psycopg2)
5663 ("python-django" ,python-django)))
5664 (home-page "https://github.com/necaris/python3-openid")
5665 (synopsis "OpenID support for servers and consumers")
5666 (description "This library provides OpenID authentication for Python, both
5667 for clients and servers.")
5668 (license license:asl2.0)))
5669
5670 (define-public python2-openid
5671 (package
5672 (name "python2-openid")
5673 (version "2.2.5")
5674 (source
5675 (origin
5676 (method url-fetch)
5677 (uri (pypi-uri "python-openid" version))
5678 (sha256
5679 (base32
5680 "1vvhxlghjan01snfdc4k7ykd80vkyjgizwgg9bncnin8rqz1ricj"))))
5681 (build-system python-build-system)
5682 (arguments
5683 ;; Python 3 support is in `python3-openid`, a separate package.
5684 `(#:python ,python-2))
5685 (home-page "https://github.com/openid/python-openid")
5686 (synopsis "OpenID support for servers and consumers")
5687 (description "This library provides OpenID authentication for Python, both
5688 for clients and servers.")
5689 (license license:asl2.0)))
5690
5691 (define-public python-urwidtrees
5692 (package
5693 (name "python-urwidtrees")
5694 (version "1.0.2")
5695 (source
5696 (origin
5697 (method url-fetch)
5698 ;; package author intends on distributing via github rather than pypi:
5699 ;; https://github.com/pazz/alot/issues/877#issuecomment-230173331
5700 (uri (string-append "https://github.com/pazz/urwidtrees/archive/"
5701 version ".tar.gz"))
5702 (file-name (string-append name "-" version ".tar.gz"))
5703 (sha256
5704 (base32
5705 "0d30lyd3s2a97rhqfax5w9ssqds2z6aydqx3c6j2c2lk3cb4ngvh"))))
5706 (build-system python-build-system)
5707 (arguments
5708 '(#:tests? #f)) ; no tests
5709 (propagated-inputs `(("python-urwid" ,python-urwid)))
5710 (home-page "https://github.com/pazz/urwidtrees")
5711 (synopsis "Tree widgets for urwid")
5712 (description "Urwidtrees is a Widget Container API for the @code{urwid}
5713 toolkit. Use it to build trees of widgets.")
5714 (license license:gpl3+)))
5715
5716 (define-public python2-urwidtrees
5717 (package-with-python2 python-urwidtrees))
5718
5719 (define-public python-dbus
5720 (package
5721 (name "python-dbus")
5722 (version "1.2.0")
5723 (source
5724 (origin
5725 (method url-fetch)
5726 (uri (string-append
5727 "https://dbus.freedesktop.org/releases/dbus-python/dbus-python-"
5728 version ".tar.gz"))
5729 (sha256
5730 (base32 "1py62qir966lvdkngg0v8k1khsqxwk5m4s8nflpk1agk5f5nqb71"))))
5731 (build-system gnu-build-system)
5732 (arguments
5733 '(#:phases
5734 (modify-phases %standard-phases
5735 (add-before
5736 'check 'pre-check
5737 (lambda _
5738 ;; XXX: For the missing '/etc/machine-id'.
5739 (substitute* "test/run-test.sh"
5740 (("DBUS_FATAL_WARNINGS=1")
5741 "DBUS_FATAL_WARNINGS=0"))
5742 #t)))))
5743 (native-inputs
5744 `(("pkg-config" ,pkg-config)))
5745 (inputs
5746 `(("python" ,python)
5747 ("dbus-glib" ,dbus-glib)))
5748 (synopsis "Python bindings for D-bus")
5749 (description "python-dbus provides bindings for libdbus, the reference
5750 implementation of D-Bus.")
5751 (home-page "http://www.freedesktop.org/wiki/Software/DBusBindings/")
5752 (license license:expat)))
5753
5754 (define-public python2-dbus
5755 (package (inherit python-dbus)
5756 (name "python2-dbus")
5757 (inputs `(("python" ,python-2)
5758 ,@(alist-delete "python"
5759 (package-inputs python-dbus)
5760 equal?)))
5761 ;; FIXME: on Python 2, the test_utf8 fails with:
5762 ;; "ValueError: unichr() arg not in range(0x10000) (narrow Python build)"
5763 (arguments `(#:tests? #f))))
5764
5765 (define-public python-apsw
5766 (package
5767 (name "python-apsw")
5768 (version "3.9.2-r1")
5769 (source
5770 (origin
5771 (method url-fetch)
5772 (uri (pypi-uri "apsw" version))
5773 (sha256
5774 (base32
5775 "0w4jb0wpx785qw42r3h4fh7gl5w2968q48i7gygybsfxck8nzffs"))))
5776 (build-system python-build-system)
5777 (inputs
5778 `(("sqlite" ,sqlite)))
5779 (arguments
5780 `(#:phases
5781 (modify-phases %standard-phases
5782 (delete 'check)
5783 (add-after 'install 'check
5784 (lambda* (#:key inputs outputs #:allow-other-keys)
5785 (add-installed-pythonpath inputs outputs)
5786 (zero? (system* "python" "setup.py" "test")))))))
5787 (home-page "https://github.com/rogerbinns/apsw/")
5788 (synopsis "Another Python SQLite Wrapper")
5789 (description "APSW is a Python wrapper for the SQLite
5790 embedded relational database engine. In contrast to other wrappers such as
5791 pysqlite it focuses on being a minimal layer over SQLite attempting just to
5792 translate the complete SQLite API into Python.")
5793 (license license:zlib)))
5794
5795 (define-public python2-apsw
5796 (package-with-python2 python-apsw))
5797
5798 (define-public python-lxml
5799 (package
5800 (name "python-lxml")
5801 (version "3.6.0")
5802 (source
5803 (origin
5804 (method url-fetch)
5805 (uri (pypi-uri "lxml" version))
5806 (sha256
5807 (base32
5808 "1pvbmiy2m7jwv493kilbghhj2pkh8wy1na3ji350vhzhlwlclx4w"))))
5809 (build-system python-build-system)
5810 (inputs
5811 `(("libxml2" ,libxml2)
5812 ("libxslt" ,libxslt)))
5813 (home-page "http://lxml.de/")
5814 (synopsis
5815 "Python XML processing library")
5816 (description
5817 "The lxml XML toolkit is a Pythonic binding for the C libraries
5818 libxml2 and libxslt.")
5819 (license license:bsd-3))) ; and a few more, see LICENSES.txt
5820
5821 (define-public python2-lxml
5822 (package-with-python2 python-lxml))
5823
5824 ;; beautifulsoup4 has a totally different namespace than 3.x,
5825 ;; and pypi seems to put it under its own name, so I guess we should too
5826 (define-public python-beautifulsoup4
5827 (package
5828 (name "python-beautifulsoup4")
5829 (version "4.5.3")
5830 (source
5831 (origin
5832 (method url-fetch)
5833 (uri (pypi-uri "beautifulsoup4" version))
5834 (sha256
5835 (base32
5836 "0glaw1vyxnbp03fni7h5496n6iib0n5iim4gax1n0ngscs9s075j"))))
5837 (build-system python-build-system)
5838 (arguments
5839 `(#:phases
5840 (modify-phases %standard-phases
5841 ;; The Python 2 source is the definitive source of beautifulsoup4. We
5842 ;; must use this conversion script when building with Python 3. The
5843 ;; conversion script also runs the tests.
5844 ;; For more information, see the file 'convert-py3k' in the source
5845 ;; distribution.
5846 (replace 'check
5847 (lambda _ (zero? (system* "./convert-py3k")))))))
5848 (home-page
5849 "http://www.crummy.com/software/BeautifulSoup/bs4/")
5850 (synopsis
5851 "Python screen-scraping library")
5852 (description
5853 "Beautiful Soup is a Python library designed for rapidly setting up
5854 screen-scraping projects. It offers Pythonic idioms for navigating,
5855 searching, and modifying a parse tree, providing a toolkit for
5856 dissecting a document and extracting what you need. It automatically
5857 converts incoming documents to Unicode and outgoing documents to UTF-8.")
5858 (license license:expat)
5859 (properties `((python2-variant . ,(delay python2-beautifulsoup4))))))
5860
5861 (define-public python2-beautifulsoup4
5862 (package
5863 (inherit (package-with-python2
5864 (strip-python2-variant python-beautifulsoup4)))
5865 (arguments `(#:python ,python-2))))
5866
5867 (define-public python-cssutils
5868 (package
5869 (name "python-cssutils")
5870 (version "1.0.1")
5871 (source
5872 (origin
5873 (method url-fetch)
5874 (uri (pypi-uri "cssutils" version))
5875 (sha256
5876 (base32
5877 "0qwha9x1wml2qmipbcz03gndnlwhzrjdvw9i09si247a90l8p8fq"))))
5878 (build-system python-build-system)
5879 (native-inputs
5880 `(("unzip" ,unzip))) ; for unpacking the source
5881 (arguments
5882 `(#:tests? #f)) ;tests require python-pbr < 1.7.0
5883 (home-page "http://cthedot.de/cssutils/")
5884 (synopsis
5885 "CSS Cascading Style Sheets library for Python")
5886 (description
5887 "Cssutils is a Python package for parsing and building CSS
5888 Cascading Style Sheets. Currently it provides a DOM only and no rendering
5889 options.")
5890 (license license:lgpl3+)))
5891
5892 (define-public python2-cssutils
5893 (package-with-python2 python-cssutils))
5894
5895 (define-public python-cssselect
5896 (package
5897 (name "python-cssselect")
5898 (version "0.9.2")
5899 (source
5900 (origin
5901 (method url-fetch)
5902 (uri (pypi-uri "cssselect" version))
5903 (sha256
5904 (base32
5905 "1xg6gbva1yswghiycmgincv6ab4bn7hpm720ndbj40h8xycmnfvi"))))
5906 (build-system python-build-system)
5907 (arguments
5908 ;; tests fail with message
5909 ;; AttributeError: 'module' object has no attribute 'tests'
5910 `(#:tests? #f))
5911 (home-page
5912 "https://pythonhosted.org/cssselect/")
5913 (synopsis
5914 "CSS3 selector parser and translator to XPath 1.0")
5915 (description
5916 "Cssselect ia a Python module that parses CSS3 Selectors and translates
5917 them to XPath 1.0 expressions. Such expressions can be used in lxml or
5918 another XPath engine to find the matching elements in an XML or HTML document.")
5919 (license license:bsd-3)))
5920
5921 (define-public python2-cssselect
5922 (package-with-python2 python-cssselect))
5923
5924 (define-public python-openid-cla
5925 (package
5926 (name "python-openid-cla")
5927 (version "1.2")
5928 (source
5929 (origin
5930 (method url-fetch)
5931 (uri (pypi-uri "python-openid-cla" version))
5932 (sha256
5933 (base32
5934 "102hy2qisvjxp5s0v9lvwqi4f2dk0dhns40vjgn008yxc7k0h3cr"))))
5935 (build-system python-build-system)
5936 (arguments '(#:tests? #f)) ; No tests.
5937 (home-page "https://github.com/puiterwijk/python-openid-cla/")
5938 (synopsis "Implementation of the OpenID CLA extension for python-openid")
5939 (description "@code{openid-cla} is an implementation of the OpenID
5940 contributor license agreement extension for python-openid.")
5941 (license license:bsd-3)))
5942
5943 (define-public python2-openid-cla
5944 (package-with-python2 python-openid-cla))
5945
5946 (define-public python-openid-teams
5947 (package
5948 (name "python-openid-teams")
5949 (version "1.1")
5950 (source
5951 (origin
5952 (method url-fetch)
5953 (uri (pypi-uri "python-openid-teams" version))
5954 (sha256
5955 (base32
5956 "05zrh78alav24rxkbqlpbad6d3x2nljk6z6j7kflxf3vdqa7w969"))))
5957 (build-system python-build-system)
5958 (arguments '(#:tests? #f)) ; No tests.
5959 (home-page "https://github.com/puiterwijk/python-openid-teams/")
5960 (synopsis "Implementation of the OpenID teams extension for python-openid")
5961 (description
5962 "@code{openid-teams} is an implementation of the OpenID
5963 teams extension for python-openid.")
5964 (license license:bsd-3)))
5965
5966 (define-public python2-openid-teams
5967 (package-with-python2 python-openid-teams))
5968
5969 (define-public python-netifaces
5970 (package
5971 (name "python-netifaces")
5972 (version "0.10.4")
5973 (source
5974 (origin
5975 (method url-fetch)
5976 (uri (string-append
5977 "https://pypi.python.org/packages/source/n/netifaces/netifaces-"
5978 version
5979 ".tar.gz"))
5980 (sha256
5981 (base32
5982 "1plw237a4zib4z8s62g0mrs8gm3kjfrp5sxh6bbk9nl3rdls2mln"))))
5983 (build-system python-build-system)
5984 (home-page
5985 "https://bitbucket.org/al45tair/netifaces")
5986 (synopsis
5987 "Python module for portable network interface information")
5988 (description
5989 "Netifaces is a Python module providing information on network
5990 interfaces in an easy and portable manner.")
5991 (license license:expat)))
5992
5993 (define-public python2-netifaces
5994 (package-with-python2 python-netifaces))
5995
5996 (define-public python-networkx
5997 (package
5998 (name "python-networkx")
5999 (version "1.11")
6000 (source
6001 (origin
6002 (method url-fetch)
6003 (uri (pypi-uri "networkx" version))
6004 (sha256
6005 (base32 "1f74s56xb4ggixiq0vxyfxsfk8p20c7a099lpcf60izv1php03hd"))))
6006 (build-system python-build-system)
6007 ;; python-decorator is needed at runtime
6008 (propagated-inputs
6009 `(("python-decorator" ,python-decorator)))
6010 (native-inputs
6011 `(("python-nose" ,python-nose)))
6012 (home-page "http://networkx.github.io/")
6013 (synopsis "Python module for creating and manipulating graphs and networks")
6014 (description
6015 "NetworkX is a Python package for the creation, manipulation, and study
6016 of the structure, dynamics, and functions of complex networks.")
6017 (license license:bsd-3)))
6018
6019 (define-public python2-networkx
6020 (package-with-python2 python-networkx))
6021
6022 (define-public snakemake
6023 (package
6024 (name "snakemake")
6025 (version "3.11.2")
6026 (source
6027 (origin
6028 (method url-fetch)
6029 (uri (pypi-uri "snakemake" version))
6030 (sha256
6031 (base32 "0qcp7y9csvanyzh08jppryhd5di8r1z7p0d4wkfg5591pj3bb8zp"))))
6032 (build-system python-build-system)
6033 (arguments
6034 ;; TODO: Package missing test dependencies.
6035 '(#:tests? #f
6036 #:phases
6037 (modify-phases %standard-phases
6038 ;; For cluster execution Snakemake will call Python. Since there is
6039 ;; no suitable PYTHONPATH set, cluster execution will fail. We fix
6040 ;; this by calling the snakemake wrapper instead.
6041 (add-after 'unpack 'call-wrapper-not-wrapped-snakemake
6042 (lambda* (#:key outputs #:allow-other-keys)
6043 (substitute* "snakemake/executors.py"
6044 (("\\{sys.executable\\} -m snakemake")
6045 (string-append (assoc-ref outputs "out")
6046 "/bin/snakemake")))
6047 #t)))))
6048 (propagated-inputs
6049 `(("python-wrapt" ,python-wrapt)
6050 ("python-requests" ,python-requests)))
6051 (home-page "https://bitbucket.org/snakemake/snakemake/wiki/Home")
6052 (synopsis "Python-based execution environment for make-like workflows")
6053 (description
6054 "Snakemake aims to reduce the complexity of creating workflows by
6055 providing a clean and modern domain specific specification language (DSL) in
6056 Python style, together with a fast and comfortable execution environment.")
6057 (license license:expat)))
6058
6059 (define-public python-seaborn
6060 (package
6061 (name "python-seaborn")
6062 (version "0.7.1")
6063 (source
6064 (origin
6065 (method url-fetch)
6066 (uri (pypi-uri "seaborn" version))
6067 (sha256
6068 (base32 "0pawrqc3mxpwd5g9pvi9gba02637bh5c8ldpp8izfwpfn52469zs"))))
6069 (build-system python-build-system)
6070 (arguments
6071 '(#:tests? #f)) ; Tests requires a running X11 server.
6072 (propagated-inputs
6073 `(("python-pandas" ,python-pandas)
6074 ("python-matplotlib" ,python-matplotlib)
6075 ("python-scipy" ,python-scipy)))
6076 (home-page "http://stanford.edu/~mwaskom/software/seaborn/")
6077 (synopsis "Statistical data visualization")
6078 (description
6079 "Seaborn is a library for making attractive and informative statistical
6080 graphics in Python. It is built on top of matplotlib and tightly integrated
6081 with the PyData stack, including support for numpy and pandas data structures
6082 and statistical routines from scipy and statsmodels.")
6083 (license license:bsd-3)
6084 (properties `((python2-variant . ,(delay python2-seaborn))))))
6085
6086 (define-public python2-seaborn
6087 (let ((base (package-with-python2 (strip-python2-variant python-seaborn))))
6088 (package
6089 (inherit base)
6090 (propagated-inputs `(("python2-pytz" ,python2-pytz)
6091 ,@(package-propagated-inputs base))))))
6092
6093 (define-public python-mpmath
6094 (package
6095 (name "python-mpmath")
6096 (version "0.19")
6097 (source (origin
6098 (method url-fetch)
6099 (uri (string-append "http://mpmath.org/files/mpmath-"
6100 version ".tar.gz"))
6101 (sha256
6102 (base32
6103 "08ijsr4ifrqv3cjc26mkw0dbvyygsa99in376hr4b96ddm1gdpb8"))))
6104 (build-system python-build-system)
6105 (arguments
6106 '(#:phases
6107 (modify-phases %standard-phases
6108 (replace 'check
6109 (lambda _
6110 (zero?
6111 (system* "python" "mpmath/tests/runtests.py" "-local")))))))
6112 (home-page "http://mpmath.org")
6113 (synopsis "Arbitrary-precision floating-point arithmetic in python")
6114 (description
6115 "@code{mpmath} can be used as an arbitrary-precision substitute for
6116 Python's float/complex types and math/cmath modules, but also does much
6117 more advanced mathematics.")
6118 (license license:bsd-3)))
6119
6120 (define-public python2-mpmath
6121 (package-with-python2 python-mpmath))
6122
6123 (define-public python-sympy
6124 (package
6125 (name "python-sympy")
6126 (version "1.0")
6127 (source
6128 (origin
6129 (method url-fetch)
6130 (uri (string-append
6131 "https://github.com/sympy/sympy/releases/download/sympy-"
6132 version "/sympy-" version ".tar.gz"))
6133 (sha256
6134 (base32 "1bpzjwr9hrr7w88v4vgnj9lr6vxcldc94si13n8xpr1rv08d5b1y"))))
6135 (build-system python-build-system)
6136 (propagated-inputs
6137 `(("python-mpmath" ,python-mpmath)))
6138 (home-page "http://www.sympy.org/")
6139 (synopsis "Python library for symbolic mathematics")
6140 (description
6141 "SymPy is a Python library for symbolic mathematics. It aims to become a
6142 full-featured computer algebra system (CAS) while keeping the code as simple
6143 as possible in order to be comprehensible and easily extensible.")
6144 (license license:bsd-3)))
6145
6146 (define-public python2-sympy
6147 (package-with-python2 python-sympy))
6148
6149 (define-public python-q
6150 (package
6151 (name "python-q")
6152 (version "2.6")
6153 (source
6154 (origin
6155 (method url-fetch)
6156 (uri (pypi-uri "q" version))
6157 (sha256
6158 (base32
6159 "1mgfazh8fkizh6walra2zv885f3lcgr3nb02v1frfm4p8ddcy3yy"))))
6160 (build-system python-build-system)
6161 (home-page "https://github.com/zestyping/q")
6162 (synopsis "Quick-and-dirty debugging output for tired programmers")
6163 (description
6164 "q is a Python module for \"print\" style of debugging Python code. It
6165 provides convenient short API for print out of values, tracebacks, and
6166 falling into the Python interpreter.")
6167 (license license:asl2.0)))
6168
6169 (define-public python2-q
6170 (package-with-python2 python-q))
6171
6172 (define-public python-testlib
6173 (package
6174 (name "python-testlib")
6175 (version "0.6.5")
6176 (source
6177 (origin
6178 (method url-fetch)
6179 (uri (string-append
6180 "https://pypi.python.org/packages/source/t/testlib/testlib-"
6181 version ".zip"))
6182 (sha256
6183 (base32 "1mz26cxn4x8bbgv0rn0mvj2z05y31rkc8009nvdlb3lam5b4mj3y"))))
6184 (build-system python-build-system)
6185 (native-inputs
6186 `(("unzip" ,unzip))) ; for unpacking the source
6187 (synopsis "Python micro test suite harness")
6188 (description "A micro unittest suite harness for Python.")
6189 (home-page "https://github.com/trentm/testlib")
6190 (license license:expat)))
6191
6192 (define-public python2-testlib
6193 (package-with-python2 python-testlib))
6194
6195 (define-public python2-xlib
6196 (package
6197 (name "python2-xlib")
6198 (version "0.14")
6199 (source (origin
6200 (method url-fetch)
6201 (uri (string-append "mirror://sourceforge/python-xlib/python-xlib"
6202 "/" version "/"
6203 "python-xlib-" version ".tar.gz"))
6204 (sha256
6205 (base32
6206 "1sv0447j0rx8cgs3jhjl695p5pv13ihglcjlrrz1kq05lsvb0wa7"))))
6207 (build-system python-build-system)
6208 (arguments
6209 `(#:python ,python-2 ;Python 2 only
6210 #:tests? #f)) ;no tests
6211 (home-page "http://python-xlib.sourceforge.net/")
6212 (synopsis "Python X11 client library")
6213 (description
6214 "The Python X Library is intended to be a fully functional X client
6215 library for Python programs. It is useful to implement low-level X clients.
6216 It is written entirely in Python.")
6217 (license license:gpl2+)))
6218
6219 (define-public python-singledispatch
6220 (package
6221 (name "python-singledispatch")
6222 (version "3.4.0.3")
6223 (source
6224 (origin
6225 (method url-fetch)
6226 (uri (pypi-uri "singledispatch" version))
6227 (sha256
6228 (base32
6229 "171b7ip0hsq5qm83np40h3phlr36ym18w0lay0a8v08kvy3sy1jv"))))
6230 (build-system python-build-system)
6231 (native-inputs
6232 `(("python-six" ,python-six))) ; required for conversion, not at run-time
6233 (home-page
6234 "http://docs.python.org/3/library/functools.html#functools.singledispatch")
6235 (synopsis "Backport of singledispatch feature from Python 3.4")
6236 (description
6237 "This library brings functools.singledispatch from Python 3.4 to Python
6238 2.6-3.3.")
6239 (license license:expat)))
6240
6241 (define-public python2-singledispatch
6242 (package-with-python2 python-singledispatch))
6243
6244 (define-public python-tornado
6245 (package
6246 (name "python-tornado")
6247 (version "4.5.1")
6248 (source
6249 (origin
6250 (method url-fetch)
6251 (uri (pypi-uri "tornado" version))
6252 (sha256
6253 (base32 "1zbkgcdfq81k298awrm8p0xwbwwn2p3nbizdglzfbkskhai082fv"))))
6254 (build-system python-build-system)
6255 (arguments
6256 '(;; FIXME: Two tests error out with:
6257 ;; AssertionError: b'Error in atexit._run_exitfuncs:\nFileNotF[44 chars]ry\n' != b''
6258 ;; #:phases
6259 ;; (modify-phases %standard-phases
6260 ;; (replace 'check
6261 ;; (lambda _
6262 ;; ;; 'setup.py test' hits an AssertionError on BSD-specific
6263 ;; ;; "tornado/platform/kqueue.py". This is the supported method:
6264 ;; (zero? (system* "python" "-m" "tornado.test")))))
6265 #:tests? #f))
6266 (native-inputs
6267 `(("python-certifi" ,python-certifi)))
6268 (propagated-inputs
6269 `(("python-backports-abc" ,python-backports-abc)))
6270 (home-page "http://www.tornadoweb.org/")
6271 (synopsis "Python web framework and asynchronous networking library")
6272 (description
6273 "Tornado is a Python web framework and asynchronous networking library,
6274 originally developed at FriendFeed. By using non-blocking network I/O,
6275 Tornado can scale to tens of thousands of open connections, making it ideal
6276 for long polling, WebSockets, and other applications that require a long-lived
6277 connection to each user.")
6278 (license license:asl2.0)
6279 (properties `((python2-variant . ,(delay python2-tornado))))))
6280
6281 (define-public python2-tornado
6282 (let ((tornado (package-with-python2 (strip-python2-variant python-tornado))))
6283 (package (inherit tornado)
6284 (propagated-inputs
6285 `(("python2-backport-ssl-match-hostname"
6286 ,python2-backport-ssl-match-hostname)
6287 ("python2-singledispatch" ,python2-singledispatch)
6288 ,@(package-propagated-inputs tornado))))))
6289
6290 ;; the python- version can be removed with python-3.5
6291 (define-public python-backports-abc
6292 (package
6293 (name "python-backports-abc")
6294 (version "0.5")
6295 (source
6296 (origin
6297 (method url-fetch)
6298 (uri (pypi-uri "backports_abc" version))
6299 (sha256
6300 (base32
6301 "1pkv8d1zxj5f9i227dxbjczncbv7ks7ywnjwyxfjagm02i2yafq3"))))
6302 (build-system python-build-system)
6303 (home-page "https://github.com/cython/backports_abc")
6304 (synopsis "Backport of additions to the 'collections.abc' module")
6305 (description
6306 "Python-backports-abc provides a backport of additions to the
6307 'collections.abc' module in Python-3.5.")
6308 (license license:psfl)))
6309
6310 (define-public python2-backports-abc
6311 (package-with-python2 python-backports-abc))
6312
6313 (define-public python2-backports-shutil-get-terminal-size
6314 (package
6315 (name "python2-backports-shutil-get-terminal-size")
6316 (version "1.0.0")
6317 (source
6318 (origin
6319 (method url-fetch)
6320 (uri (pypi-uri "backports.shutil_get_terminal_size" version))
6321 (sha256
6322 (base32
6323 "107cmn7g3jnbkp826zlj8rrj19fam301qvaqf0f3905f5217lgki"))))
6324 (build-system python-build-system)
6325 (arguments
6326 `(#:python ,python-2
6327 #:phases
6328 (modify-phases %standard-phases
6329 (replace 'check
6330 (lambda _
6331 (zero? (system* "py.test" "-v")))))))
6332 (native-inputs
6333 `(("python2-pytest" ,python2-pytest)))
6334 (home-page "https://github.com/chrippa/backports.shutil_get_terminal_size")
6335 (synopsis "Backport of Python 3.3's @code{shutil.get_terminal_size}")
6336 (description
6337 "This package provides a backport of the @code{get_terminal_size
6338 function} from Python 3.3's @code{shutil}.
6339 Unlike the original version it is written in pure Python rather than C,
6340 so it might be a tiny bit slower.")
6341 (license license:expat)))
6342
6343 (define-public python-waf
6344 (package
6345 (name "python-waf")
6346 (version "1.9.8")
6347 (source (origin
6348 (method url-fetch)
6349 (uri (string-append "https://waf.io/"
6350 "waf-" version ".tar.bz2"))
6351 (sha256
6352 (base32
6353 "0wl4cnmp06lfxqjxaan58bqxn27smhydz0sg5prrfbl3bsw4gv6q"))))
6354 (build-system python-build-system)
6355 (arguments
6356 '(#:phases
6357 (modify-phases %standard-phases
6358 (replace 'build
6359 (lambda _
6360 (zero? (system* "python" "waf-light" "configure" "build"))))
6361 (replace 'check
6362 (lambda _
6363 (zero? (system* "python" "waf" "--version"))))
6364 (replace 'install
6365 (lambda _
6366 (copy-file "waf" %output))))))
6367 (home-page "https://waf.io/")
6368 (synopsis "Python-based build system")
6369 (description
6370 "Waf is a Python-based framework for configuring, compiling and installing
6371 applications.")
6372 (license license:bsd-3)))
6373
6374 (define-public python2-waf
6375 (package-with-python2 python-waf))
6376
6377 (define-public python-pyzmq
6378 (package
6379 (name "python-pyzmq")
6380 (version "15.1.0")
6381 (source
6382 (origin
6383 (method url-fetch)
6384 (uri (pypi-uri "pyzmq" version))
6385 (sha256
6386 (base32 "13fhwnlvsvxv72kfhqbpn6qi7msh8mc8377mpabv32skk2cjfnxx"))))
6387 (build-system python-build-system)
6388 (arguments
6389 `(#:configure-flags
6390 (list (string-append "--zmq=" (assoc-ref %build-inputs "zeromq")))
6391 ;; FIXME: You must build pyzmq with 'python setup.py build_ext
6392 ;; --inplace' for 'python setup.py test' to work.
6393 #:tests? #f))
6394 (inputs
6395 `(("zeromq" ,zeromq)))
6396 (native-inputs
6397 `(("pkg-config" ,pkg-config)
6398 ("python-nose" ,python-nose)))
6399 (home-page "https://github.com/zeromq/pyzmq")
6400 (synopsis "Python bindings for 0MQ")
6401 (description
6402 "PyZMQ is the official Python binding for the ZeroMQ messaging library.")
6403 (license license:bsd-4)))
6404
6405 (define-public python2-pyzmq
6406 (package-with-python2 python-pyzmq))
6407
6408 (define-public python-pep8
6409 (package
6410 (name "python-pep8")
6411 (version "1.7.0")
6412 (source
6413 (origin
6414 (method url-fetch)
6415 (uri (pypi-uri "pep8" version))
6416 (sha256
6417 (base32
6418 "002rkl4lsn6x2mxmf8ar00l0m8i3mzrc6pnzz77blyksmpsxa4x1"))))
6419 (build-system python-build-system)
6420 (home-page "http://pep8.readthedocs.org/")
6421 (synopsis "Python style guide checker")
6422 (description
6423 "This tools checks Python code against some of the style conventions in
6424 PEP 8.")
6425 (license license:expat)))
6426
6427 (define-public python2-pep8
6428 (package-with-python2 python-pep8))
6429
6430 (define-public python-pyflakes
6431 (package
6432 (name "python-pyflakes")
6433 (version "1.0.0")
6434 (source
6435 (origin
6436 (method url-fetch)
6437 (uri (pypi-uri "pyflakes" version))
6438 (sha256
6439 (base32
6440 "0qs2sgqszq7wcplis8509wk2ygqcrwzbs1ghfj3svvivq2j377pk"))))
6441 (build-system python-build-system)
6442 (home-page
6443 "https://github.com/pyflakes/pyflakes")
6444 (synopsis "Passive checker of Python programs")
6445 (description
6446 "Pyflakes statically checks Python source code for common errors.")
6447 (license license:expat)))
6448
6449 (define-public python2-pyflakes
6450 (package-with-python2 python-pyflakes))
6451
6452 (define-public python-mccabe
6453 (package
6454 (name "python-mccabe")
6455 (version "0.4.0")
6456 (source
6457 (origin
6458 (method url-fetch)
6459 (uri (pypi-uri "mccabe" version))
6460 (sha256
6461 (base32
6462 "0yr08a36h8lqlif10l4xcikbbig7q8f41gqywir7rrvnv3mi4aws"))))
6463 (build-system python-build-system)
6464 (native-inputs
6465 `(("python-pytest" ,python-pytest)
6466 ("python-pytest-runner" ,python-pytest-runner)))
6467 (home-page "https://github.com/flintwork/mccabe")
6468 (synopsis "McCabe checker, plugin for flake8")
6469 (description
6470 "This package provides a Flake8 plug-in to compute the McCabe cyclomatic
6471 complexity of Python source code.")
6472 (license license:expat)))
6473
6474 (define-public python2-mccabe
6475 (package-with-python2 python-mccabe))
6476
6477 (define-public python-mccabe-0.2.1
6478 (package (inherit python-mccabe)
6479 (version "0.2.1")
6480 (source
6481 (origin
6482 (method url-fetch)
6483 (uri (pypi-uri "mccabe" version))
6484 (sha256
6485 (base32
6486 "0fi4a81kr5bcv5p4xgibqr595hyj5dafkqgsmfk96mfy8w71fajs"))))))
6487
6488 (define-public python2-mccabe-0.2.1
6489 (package-with-python2 python-mccabe-0.2.1))
6490
6491 ;; Flake8 2.4.1 requires an older version of pep8.
6492 ;; This should be removed ASAP.
6493 (define-public python-pep8-1.5.7
6494 (package (inherit python-pep8)
6495 (version "1.5.7")
6496 (source
6497 (origin
6498 (method url-fetch)
6499 (uri (string-append
6500 "https://pypi.python.org/packages/source/p/pep8/pep8-"
6501 version
6502 ".tar.gz"))
6503 (sha256
6504 (base32
6505 "12b9bbdbwnspxgak14xg58c130x2n0blxzlms5jn2dszn8qj3d0m"))))
6506 (arguments
6507 ;; XXX Tests not compatible with Python 3.5.
6508 '(#:tests? #f))))
6509
6510 (define-public python2-pep8-1.5.7
6511 (package-with-python2 python-pep8-1.5.7))
6512
6513 ;; Flake8 2.4.1 requires an older version of pyflakes.
6514 ;; This should be removed ASAP.
6515 (define-public python-pyflakes-0.8.1
6516 (package (inherit python-pyflakes)
6517 (version "0.8.1")
6518 (source
6519 (origin
6520 (method url-fetch)
6521 (uri (string-append
6522 "https://pypi.python.org/packages/source/p/pyflakes/pyflakes-"
6523 version
6524 ".tar.gz"))
6525 (sha256
6526 (base32
6527 "0sbpq6pqm1i9wqi41mlfrsc5rk92jv4mskvlyxmnhlbdnc80ma1z"))))
6528 (arguments
6529 ;; XXX Tests not compatible with Python 3.5.
6530 '(#:tests? #f))))
6531
6532 (define-public python2-pyflakes-0.8.1
6533 (package-with-python2 python-pyflakes-0.8.1))
6534
6535 (define-public python-flake8
6536 (package
6537 (name "python-flake8")
6538 (version "2.5.4")
6539 (source
6540 (origin
6541 (method url-fetch)
6542 (uri (pypi-uri "flake8" version))
6543 (sha256
6544 (base32
6545 "0bs9cz4fr99r2rwig1b8jwaadl1nan7kgpdzqwj0bwbckwbmh7nc"))
6546 (modules '((guix build utils)))
6547 (snippet
6548 '(begin
6549 ;; Remove pre-compiled .pyc files from source.
6550 (for-each delete-file-recursively
6551 (find-files "." "__pycache__" #:directories? #t))
6552 (for-each delete-file (find-files "." "\\.pyc$"))
6553 #t))))
6554 (build-system python-build-system)
6555 (propagated-inputs
6556 `(("python-pep8" ,python-pep8)
6557 ("python-pyflakes" ,python-pyflakes)
6558 ("python-mccabe" ,python-mccabe)))
6559 (native-inputs
6560 `(("python-mock" ,python-mock) ; TODO: only required for < 3.3
6561 ("python-nose" ,python-nose)))
6562 (home-page "https://gitlab.com/pycqa/flake8")
6563 (synopsis
6564 "The modular source code checker: pep8, pyflakes and co")
6565 (description
6566 "Flake8 is a wrapper around PyFlakes, pep8 and python-mccabe.")
6567 (license license:expat)))
6568
6569 (define-public python2-flake8
6570 (package-with-python2 python-flake8))
6571
6572 (define-public python-flake8-polyfill
6573 (package
6574 (name "python-flake8-polyfill")
6575 (version "1.0.1")
6576 (source
6577 (origin
6578 (method url-fetch)
6579 (uri (pypi-uri "flake8-polyfill" version))
6580 (sha256
6581 (base32
6582 "02gn2wxvh9vnf7m7dld7ca4l60mg5c370hv3swwppkngwaqmcw67"))))
6583 (build-system python-build-system)
6584 (arguments
6585 '(#:phases
6586 (modify-phases %standard-phases
6587 (replace 'check
6588 (lambda _
6589 (setenv "PYTHONPATH"
6590 (string-append (getcwd) "/build/lib:"
6591 (getenv "PYTHONPATH")))
6592 (zero? (system* "py.test" "-v")))))))
6593 (native-inputs
6594 `(("python-flake8" ,python-flake8)
6595 ("python-mock" ,python-mock)
6596 ("python-pycodestyle" ,python-pycodestyle)
6597 ("python-pytest" ,python-pytest)))
6598 (home-page "https://gitlab.com/pycqa/flake8-polyfill")
6599 (synopsis "Polyfill package for Flake8 plugins")
6600 (description
6601 "This package that provides some compatibility helpers for Flake8
6602 plugins that intend to support Flake8 2.x and 3.x simultaneously.")
6603 (license license:expat)))
6604
6605 (define-public python2-flake8-polyfill
6606 (package-with-python2 python-flake8-polyfill))
6607
6608 (define-public python-mistune
6609 (package
6610 (name "python-mistune")
6611 (version "0.7.3")
6612 (source
6613 (origin
6614 (method url-fetch)
6615 (uri (pypi-uri "mistune" version))
6616 (sha256
6617 (base32
6618 "04xpk1zvslhq3xpnf01g3ag0dy9wfv4z28p093r8k49vvxlyil11"))))
6619 (build-system python-build-system)
6620 (native-inputs
6621 `(("python-nose" ,python-nose)
6622 ("python-cython" ,python-cython)))
6623 (home-page "https://github.com/lepture/mistune")
6624 (synopsis "Markdown parser in pure Python")
6625 (description "This package provides a fast markdown parser in pure
6626 Python.")
6627 (license license:bsd-3)))
6628
6629 (define-public python2-mistune
6630 (package-with-python2 python-mistune))
6631
6632 (define-public python-markdown
6633 (package
6634 (name "python-markdown")
6635 (version "2.6.8")
6636 (source
6637 (origin
6638 (method url-fetch)
6639 (uri (pypi-uri "Markdown" version))
6640 (sha256
6641 (base32
6642 "0cqfhr1km2s5d8jm6hbwgkrrj9hvkjf2gab3s2axlrw1clgaij0a"))))
6643 (build-system python-build-system)
6644 (arguments
6645 `(#:phases
6646 (modify-phases %standard-phases
6647 (replace 'check
6648 (lambda _
6649 (zero? (system* "python" "run-tests.py")))))))
6650 (native-inputs
6651 `(("python-nose" ,python-nose)
6652 ("python-pyyaml" ,python-pyyaml)))
6653 (home-page "https://pythonhosted.org/Markdown/")
6654 (synopsis "Python implementation of Markdown")
6655 (description
6656 "This package provides a Python implementation of John Gruber's
6657 Markdown. The library features international input, various Markdown
6658 extensions, and several HTML output formats. A command line wrapper
6659 markdown_py is also provided to convert Markdown files to HTML.")
6660 (license license:bsd-3)))
6661
6662 (define-public python2-markdown
6663 (package-with-python2 python-markdown))
6664
6665 (define-public python-ptyprocess
6666 (package
6667 (name "python-ptyprocess")
6668 (version "0.5.1")
6669 (source
6670 (origin
6671 (method url-fetch)
6672 (uri (string-append
6673 "https://pypi.python.org/packages/source/p/ptyprocess/ptyprocess-"
6674 version ".tar.gz"))
6675 (sha256
6676 (base32
6677 "19l1xrjn4l9gjz01s3vg92gn2dd9d8mw1v86ppkzlnr9m5iwwc05"))))
6678 (build-system python-build-system)
6679 (native-inputs
6680 `(("python-nose" ,python-nose)))
6681 (arguments
6682 `(#:phases
6683 (modify-phases %standard-phases
6684 (replace 'check
6685 (lambda _
6686 (zero? (system* "nosetests")))))))
6687 (home-page "https://github.com/pexpect/ptyprocess")
6688 (synopsis "Run a subprocess in a pseudo terminal")
6689 (description
6690 "This package provides a Python library used to launch a subprocess in a
6691 pseudo terminal (pty), and interact with both the process and its pty.")
6692 (license license:isc)))
6693
6694 (define-public python2-ptyprocess
6695 (package-with-python2 python-ptyprocess))
6696
6697 (define-public python-cram
6698 (package
6699 (name "python-cram")
6700 (version "0.7")
6701 (home-page "https://bitheap.org/cram/")
6702 (source (origin
6703 (method url-fetch)
6704 (uri (list (string-append home-page "cram-"
6705 version ".tar.gz")
6706 (pypi-uri "cram" version)))
6707 (sha256
6708 (base32
6709 "0bvz6fwdi55rkrz3f50zsy35gvvwhlppki2yml5bj5ffy9d499vx"))))
6710 (arguments
6711 '(#:phases
6712 (modify-phases %standard-phases
6713 (add-after 'unpack 'patch-source
6714 (lambda _
6715 (substitute* (find-files "cram" ".*\\.py$")
6716 ;; Replace default shell path.
6717 (("/bin/sh") (which "sh")))
6718 (substitute* (find-files "tests" ".*\\.t$")
6719 (("md5") "md5sum")
6720 (("/bin/bash") (which "bash"))
6721 (("/bin/sh") (which "sh")))
6722 (substitute* "cram/_test.py"
6723 ;; This hack works around a bug triggered by substituting
6724 ;; the /bin/sh paths. "tests/usage.t" compares the output of
6725 ;; "cram -h", which breaks the output at 80 characters. This
6726 ;; causes the line showing the default shell to break into two
6727 ;; lines, but the test expects a single line...
6728 (("env\\['COLUMNS'\\] = '80'")
6729 "env['COLUMNS'] = '160'"))
6730 #t))
6731 (delete 'check)
6732 (add-after 'install 'check
6733 ;; The test phase uses the built library and executable.
6734 ;; It's easier to run it after install since the build
6735 ;; directory contains version-specific PATH.
6736 (lambda* (#:key inputs outputs #:allow-other-keys)
6737 (add-installed-pythonpath inputs outputs)
6738 (setenv "PATH" (string-append (getenv "PATH") ":"
6739 (assoc-ref outputs "out") "/bin"))
6740 (zero? (system* "make" "test")))))))
6741 (build-system python-build-system)
6742 (native-inputs
6743 `(("python-coverage" ,python-coverage)
6744 ("which" ,which)))
6745 (synopsis "Simple testing framework for command line applications")
6746 (description
6747 "Cram is a functional testing framework for command line applications.
6748 Cram tests look like snippets of interactive shell sessions. Cram runs each
6749 command and compares the command output in the test with the command’s actual
6750 output.")
6751 (license license:gpl2+)))
6752
6753 (define-public python2-cram
6754 (package-with-python2 python-cram))
6755
6756 (define-public python-terminado
6757 (package
6758 (name "python-terminado")
6759 (version "0.6")
6760 (source
6761 (origin
6762 (method url-fetch)
6763 (uri (pypi-uri "terminado" version))
6764 (sha256
6765 (base32
6766 "09h1kwi86g5mrk14s4pgbhshd602zry29lnpxamcqz864kva22rc"))))
6767 (build-system python-build-system)
6768 (propagated-inputs
6769 `(("python-tornado" ,python-tornado)
6770 ("python-ptyprocess" ,python-ptyprocess)))
6771 (native-inputs
6772 `(("python-nose" ,python-nose)))
6773 (arguments
6774 `(#:phases
6775 (modify-phases %standard-phases
6776 (replace 'check
6777 (lambda _
6778 (zero? (system* "nosetests")))))))
6779 (home-page "https://github.com/takluyver/terminado")
6780 (synopsis "Terminals served to term.js using Tornado websockets")
6781 (description "This package provides a Tornado websocket backend for the
6782 term.js Javascript terminal emulator library.")
6783 (license license:bsd-2)
6784 (properties `((python2-variant . ,(delay python2-terminado))))))
6785
6786 (define-public python2-terminado
6787 (let ((terminado (package-with-python2 (strip-python2-variant python-terminado))))
6788 (package (inherit terminado)
6789 (propagated-inputs
6790 `(("python2-backport-ssl-match-hostname"
6791 ,python2-backport-ssl-match-hostname)
6792 ,@(package-propagated-inputs terminado))))))
6793
6794 (define-public python-straight-plugin
6795 (package
6796 (name "python-straight-plugin")
6797 (version "1.4.1")
6798 (source
6799 (origin
6800 (method url-fetch)
6801 (uri (pypi-uri "straight.plugin" version))
6802 (sha256
6803 (base32
6804 "069pjll4383p4kkgvcc40hgyvf79j2wdbpgwz77yigzxksh1gj62"))))
6805 (build-system python-build-system)
6806 (home-page "https://github.com/ironfroggy/straight.plugin")
6807 (synopsis "Simple namespaced plugin facility")
6808 (description "Straight Plugin provides a type of plugin you can create from
6809 almost any existing Python modules, and an easy way for outside developers to
6810 add functionality and customization to your projects with their own plugins.")
6811 (license license:expat)))
6812
6813 (define-public python2-straight-plugin
6814 (package-with-python2 python-straight-plugin))
6815
6816 (define-public python-fonttools
6817 (package
6818 (name "python-fonttools")
6819 (version "2.5")
6820 (source (origin
6821 (method url-fetch)
6822 (uri (string-append
6823 "https://pypi.python.org/packages/source/F/FontTools/"
6824 "fonttools-" version ".tar.gz"))
6825 (sha256
6826 (base32
6827 "08ay3x4ijarwhl60gqx2i9jzq6pxs20p4snc2d1q5jagh4rn39lb"))))
6828 (build-system python-build-system)
6829 (arguments
6830 '(#:test-target "check"
6831 #:phases
6832 (modify-phases %standard-phases
6833 (add-after 'unpack 'patch-setuppy
6834 ;; Remove the undocumented "extra_path" argument, which adds an
6835 ;; intervening directories between site-packages and the package
6836 ;; directory.
6837 (lambda _
6838 (substitute* "setup.py"
6839 (("^[ \t]*extra_path *= *'FontTools',") ""))
6840 #t)))))
6841 (home-page "https://github.com/behdad/fonttools")
6842 (synopsis "Tools to manipulate font files")
6843 (description
6844 "FontTools/TTX is a library to manipulate font files from Python. It
6845 supports reading and writing of TrueType/OpenType fonts, reading and writing
6846 of AFM files, reading (and partially writing) of PS Type 1 fonts. The package
6847 also contains a tool called “TTX” which converts TrueType/OpenType fonts to and
6848 from an XML-based format.")
6849 (license (license:non-copyleft
6850 "file://LICENSE.txt"
6851 "See LICENSE.txt in the distribution."))))
6852
6853 (define-public python2-fonttools
6854 (package-with-python2 python-fonttools))
6855
6856 (define-public python-ly
6857 (package
6858 (name "python-ly")
6859 (version "0.9.4")
6860 (source
6861 (origin
6862 (method url-fetch)
6863 (uri (string-append "https://pypi.python.org/packages/57/4f/"
6864 "889579244947368f28eda66b782331b1e75f83fd72e63f9ece93cd7a18f9"
6865 "/python-ly-" version ".tar.gz"))
6866 (sha256
6867 (base32
6868 "0g6n288l83sfwavxh1aryi0aqvsr3sp7v6f903mckwqa4scpky62"))))
6869 (build-system python-build-system)
6870 (arguments
6871 ;; FIXME: Some tests need network access.
6872 '(#:tests? #f))
6873 (synopsis "Tool and library for manipulating LilyPond files")
6874 (description "This package provides a Python library to parse, manipulate
6875 or create documents in LilyPond format. A command line program ly is also
6876 provided that can be used to do various manipulations with LilyPond files.")
6877 (home-page "https://pypi.python.org/pypi/python-ly")
6878 (license license:gpl2+)))
6879
6880 (define-public python-appdirs
6881 (package
6882 (name "python-appdirs")
6883 (version "1.4.3")
6884 (source
6885 (origin
6886 (method url-fetch)
6887 (uri (pypi-uri "appdirs" version))
6888 (sha256
6889 (base32
6890 "14id6wxi12lgyw0mg3bcfnf888ad07jz9yj46gfzhn186z8rcn4y"))))
6891 (build-system python-build-system)
6892 (home-page "https://github.com/ActiveState/appdirs")
6893 (synopsis
6894 "Determine platform-specific dirs, e.g. a \"user data dir\"")
6895 (description
6896 "This module provides a portable way of finding out where user data
6897 should be stored on various operating systems.")
6898 (license license:expat)))
6899
6900 (define-public python2-appdirs
6901 (package-with-python2 python-appdirs))
6902
6903 (define-public python-llfuse
6904 (package
6905 (name "python-llfuse")
6906 (version "1.2")
6907 (source (origin
6908 (method url-fetch)
6909 (uri (string-append
6910 "https://bitbucket.org/nikratio/python-llfuse/downloads/"
6911 "llfuse-" version ".tar.bz2"))
6912 (sha256
6913 (base32
6914 "11hms1x68bf1bqbqy7w3wpffqsd3jkgricmzrc1hrnwkswfzzlr4"))))
6915 (build-system python-build-system)
6916 (inputs
6917 `(("fuse" ,fuse)
6918 ("attr" ,attr)))
6919 (native-inputs
6920 `(("pkg-config" ,pkg-config)))
6921 (synopsis "Python bindings for FUSE")
6922 (description
6923 "Python-LLFUSE is a set of Python bindings for the low level FUSE API.")
6924 (home-page "https://bitbucket.org/nikratio/python-llfuse/")
6925 (license license:lgpl2.0+)
6926 (properties `((python2-variant . ,(delay python2-llfuse))))))
6927
6928 (define-public python2-llfuse
6929 (package (inherit (package-with-python2
6930 (strip-python2-variant python-llfuse)))
6931 (propagated-inputs `(("python2-contextlib2" ,python2-contextlib2)))))
6932
6933 ;; For attic-0.16
6934 (define-public python-llfuse-0.41
6935 (package (inherit python-llfuse)
6936 (version "0.41.1")
6937 (source (origin
6938 (method url-fetch)
6939 (uri (string-append
6940 "https://bitbucket.org/nikratio/python-llfuse/downloads/"
6941 "llfuse-" version ".tar.bz2"))
6942 (sha256
6943 (base32
6944 "1imlqw9b73086y97izr036f58pgc5akv4ihc2rrf8j5h75jbrlaa"))))
6945 ;; Python-LLFUSE < 0.42 includes underscore.js, which is MIT (expat)
6946 ;; licensed. The rest of the package is licensed under LGPL2.0 or later.
6947 (license (list license:expat license:lgpl2.0+))))
6948
6949 (define-public python-msgpack
6950 (package
6951 (name "python-msgpack")
6952 (version "0.4.8")
6953 (source (origin
6954 (method url-fetch)
6955 (uri (pypi-uri "msgpack-python" version))
6956 (sha256
6957 (base32
6958 "11pqk5braa6wndpnr1dhg64js82vjgxnm0lzy73rwl831zgijaqs"))))
6959 (build-system python-build-system)
6960 (synopsis "MessagePack (de)serializer")
6961 (description "MessagePack is a fast, compact binary serialization format,
6962 suitable for similar data to JSON. This package provides CPython bindings for
6963 reading and writing MessagePack data.")
6964 (home-page "https://pypi.python.org/pypi/msgpack-python/")
6965 (license license:asl2.0)))
6966
6967 (define-public python2-msgpack
6968 (package-with-python2 python-msgpack))
6969
6970 (define-public python-netaddr
6971 (package
6972 (name "python-netaddr")
6973 (version "0.7.18")
6974 (source
6975 (origin
6976 (method url-fetch)
6977 (uri (string-append
6978 "https://pypi.python.org/packages/source/n/netaddr/netaddr-"
6979 version
6980 ".tar.gz"))
6981 (sha256
6982 (base32
6983 "06dxjlbcicq7q3vqy8agq11ra01kvvd47j4mk6dmghjsyzyckxd1"))))
6984 (build-system python-build-system)
6985 (arguments `(#:tests? #f)) ;; No tests.
6986 (home-page "https://github.com/drkjam/netaddr/")
6987 (synopsis "Pythonic manipulation of network addresses")
6988 (description
6989 "A Python library for representing and manipulating IPv4, IPv6, CIDR, EUI
6990 and MAC network addresses.")
6991 (license license:bsd-3)))
6992
6993 (define-public python2-netaddr
6994 (package-with-python2 python-netaddr))
6995
6996 (define-public python-wrapt
6997 (package
6998 (name "python-wrapt")
6999 (version "1.10.8")
7000 (source
7001 (origin
7002 (method url-fetch)
7003 (uri (pypi-uri "wrapt" version))
7004 (sha256
7005 (base32
7006 "0wrcm1mydvfivbkzz0h81ygzdchnscshi6xvy5n3r21r9s0px8af"))))
7007 (build-system python-build-system)
7008 (arguments
7009 ;; Tests are not included in the tarball, they are only available in the
7010 ;; git repository.
7011 `(#:tests? #f))
7012 (home-page "https://github.com/GrahamDumpleton/wrapt")
7013 (synopsis "Module for decorators, wrappers and monkey patching")
7014 (description
7015 "The aim of the wrapt module is to provide a transparent object proxy for
7016 Python, which can be used as the basis for the construction of function
7017 wrappers and decorator functions.")
7018 (license license:bsd-2)))
7019
7020 (define-public python2-wrapt
7021 (package-with-python2 python-wrapt))
7022
7023 (define-public python-iso8601
7024 (package
7025 (name "python-iso8601")
7026 (version "0.1.11")
7027 (source
7028 (origin
7029 (method url-fetch)
7030 (uri (pypi-uri "iso8601" version))
7031 (sha256
7032 (base32
7033 "0c7gh3lsdjds262h0v1sqc66l7hqgfwbakn96qrhdbl0i3vm5yz8"))))
7034 (build-system python-build-system)
7035 (native-inputs
7036 `(("python-pytest" ,python-pytest)))
7037 (home-page "https://bitbucket.org/micktwomey/pyiso8601")
7038 (synopsis "Module to parse ISO 8601 dates")
7039 (description
7040 "This module parses the most common forms of ISO 8601 date strings (e.g.
7041 @code{2007-01-14T20:34:22+00:00}) into @code{datetime} objects.")
7042 (license license:expat)))
7043
7044 (define-public python2-iso8601
7045 (package-with-python2 python-iso8601))
7046
7047 (define-public python-monotonic
7048 (package
7049 (name "python-monotonic")
7050 (version "0.3")
7051 (source
7052 (origin
7053 (method url-fetch)
7054 (uri (string-append
7055 "https://pypi.python.org/packages/source/m/monotonic/monotonic-"
7056 version
7057 ".tar.gz"))
7058 (sha256
7059 (base32
7060 "0yz0bcbwx8r2c01czzfpbrxddynxyk9k95jj8h6sgcb7xmfvl998"))))
7061 (build-system python-build-system)
7062 (home-page "https://github.com/atdt/monotonic")
7063 (synopsis "Implementation of time.monotonic() for Python 2 & < 3.3")
7064 (description
7065 "This module provides a monotonic() function which returns the value (in
7066 fractional seconds) of a clock which never goes backwards.")
7067 (license license:asl2.0)))
7068
7069 (define-public python2-monotonic
7070 (package-with-python2 python-monotonic))
7071
7072 (define-public python-webob
7073 (package
7074 (name "python-webob")
7075 (version "1.5.1")
7076 (source
7077 (origin
7078 (method url-fetch)
7079 (uri (pypi-uri "WebOb" version))
7080 (sha256
7081 (base32
7082 "02bhhzijfhv8hmi1i54d4b0v43liwhnywhflvxsv4x3zax9s3afq"))))
7083 (build-system python-build-system)
7084 (native-inputs
7085 `(("python-nose" ,python-nose)))
7086 (home-page "http://webob.org/")
7087 (synopsis "WSGI request and response object")
7088 (description
7089 "WebOb provides wrappers around the WSGI request environment, and an
7090 object to help create WSGI responses.")
7091 (license license:expat)))
7092
7093 (define-public python2-webob
7094 (package-with-python2 python-webob))
7095
7096 (define-public python-xlrd
7097 (package
7098 (name "python-xlrd")
7099 (version "1.0.0")
7100 (source (origin
7101 (method url-fetch)
7102 (uri (pypi-uri "xlrd" version))
7103 (sha256
7104 (base32
7105 "0s8hjiz01vbhy85xalrz0qlsmd9ypf36zjqrf97hh984spapvy0g"))))
7106 (build-system python-build-system)
7107 (arguments
7108 `(#:phases
7109 (modify-phases %standard-phases
7110 ;; Current test in setup.py does not work as of 1.0.0, so use nose to
7111 ;; run tests instead for now.
7112 (replace 'check (lambda _ (zero? (system* "nosetests")))))))
7113 (native-inputs `(("python-nose" ,python-nose)))
7114 (home-page "http://www.python-excel.org/")
7115 (synopsis "Library for extracting data from Excel files")
7116 (description "This packages provides a library to extract data from
7117 spreadsheets using Microsoft Excel proprietary file formats @samp{.xls} and
7118 @samp{.xlsx} (versions 2.0 onwards). It has support for Excel dates and is
7119 Unicode-aware. It is not intended as an end-user tool.")
7120 (license license:bsd-3)))
7121
7122 (define-public python2-xlrd
7123 (package-with-python2 python-xlrd))
7124
7125 (define-public python-prettytable
7126 (package
7127 (name "python-prettytable")
7128 (version "0.7.2")
7129 (source
7130 (origin
7131 (method url-fetch)
7132 (uri (string-append
7133 "https://pypi.python.org/packages/source/P/PrettyTable/"
7134 "prettytable-" version ".tar.bz2"))
7135 (sha256
7136 (base32
7137 "0diwsicwmiq2cpzpxri7cyl5fmsvicafw6nfqf6p6p322dji2g45"))))
7138 (build-system python-build-system)
7139 (home-page "http://code.google.com/p/prettytable/")
7140 (synopsis "Display tabular data in an ASCII table format")
7141 (description
7142 "A library designed to represent tabular data in visually appealing ASCII
7143 tables. PrettyTable allows for selection of which columns are to be printed,
7144 independent alignment of columns (left or right justified or centred) and
7145 printing of sub-tables by specifying a row range.")
7146 (license license:bsd-3)))
7147
7148 (define-public python2-prettytable
7149 (package-with-python2 python-prettytable))
7150
7151 (define-public python-tables
7152 (package
7153 (name "python-tables")
7154 (version "3.2.2")
7155 (source
7156 (origin
7157 (method url-fetch)
7158 (uri (pypi-uri "tables" version))
7159 (sha256
7160 (base32
7161 "117s6w7s3yxafpmf3zz3svana7xfrsviw01va1xp7h8ylx8v6r1m"))
7162 (modules '((guix build utils)))
7163 (snippet
7164 '(begin
7165 ;; Remove pre-compiled .pyc files from source.
7166 (for-each delete-file-recursively
7167 (find-files "." "__pycache__" #:directories? #t))
7168 (for-each delete-file (find-files "." "\\.pyc$"))
7169 #t))))
7170 (build-system python-build-system)
7171 (arguments
7172 `(;; FIXME: python-build-system does not pass configure-flags to "build"
7173 ;; or "check", so we must override the build and check phases.
7174 #:phases
7175 (modify-phases %standard-phases
7176 (add-after 'unpack 'use-gcc
7177 (lambda _
7178 (substitute* "setup.py"
7179 (("compiler = new_compiler\\(\\)" line)
7180 (string-append line
7181 "\ncompiler.set_executables(compiler='gcc',"
7182 "compiler_so='gcc',"
7183 "linker_exe='gcc',"
7184 "linker_so='gcc -shared')")))
7185 #t))
7186 (replace 'build
7187 (lambda* (#:key inputs #:allow-other-keys)
7188 (zero? (system* "python" "setup.py" "build"
7189 (string-append "--hdf5="
7190 (assoc-ref inputs "hdf5"))))))
7191 (replace 'check
7192 (lambda* (#:key inputs #:allow-other-keys)
7193 (zero? (system* "python" "setup.py" "check"
7194 (string-append "--hdf5="
7195 (assoc-ref inputs "hdf5")))))))))
7196 (propagated-inputs
7197 `(("python-numexpr" ,python-numexpr)
7198 ("python-numpy" ,python-numpy)))
7199 (native-inputs
7200 `(("python-cython" ,python-cython)
7201 ("pkg-config" ,pkg-config)))
7202 (inputs
7203 `(("hdf5" ,hdf5)
7204 ("bzip2" ,bzip2)
7205 ("zlib" ,zlib)))
7206 (home-page "http://www.pytables.org/")
7207 (synopsis "Hierarchical datasets for Python")
7208 (description "PyTables is a package for managing hierarchical datasets and
7209 designed to efficiently cope with extremely large amounts of data.")
7210 (license license:bsd-3)))
7211
7212 (define-public python2-tables
7213 (package-with-python2 python-tables))
7214
7215 (define-public python-pyasn1
7216 (package
7217 (name "python-pyasn1")
7218 (version "0.2.3")
7219 (source
7220 (origin
7221 (method url-fetch)
7222 (uri (pypi-uri "pyasn1" version))
7223 (sha256
7224 (base32
7225 "1b86yx23c1x74clai05a5ma8c8nfmhlx3j1mxq0ff657i2ylx33k"))))
7226 (build-system python-build-system)
7227 (home-page "http://pyasn1.sourceforge.net/")
7228 (synopsis "ASN.1 types and codecs")
7229 (description
7230 "This is an implementation of ASN.1 types and codecs in Python. It is
7231 suitable for a wide range of protocols based on the ASN.1 specification.")
7232 (license license:bsd-2)))
7233
7234 (define-public python2-pyasn1
7235 (package-with-python2 python-pyasn1))
7236
7237 (define-public python-pyasn1-modules
7238 (package
7239 (name "python-pyasn1-modules")
7240 (version "0.0.8")
7241 (source
7242 (origin
7243 (method url-fetch)
7244 (uri (pypi-uri "pyasn1-modules" version))
7245 (sha256
7246 (base32
7247 "0drqgw81xd3fxdlg89kgd79zzrabvfncvkbybi2wr6w2y4s1jmhh"))))
7248 (build-system python-build-system)
7249 (propagated-inputs
7250 `(("python-pyasn1" ,python-pyasn1)))
7251 (home-page "https://sourceforge.net/projects/pyasn1/")
7252 (synopsis "ASN.1 codec implementations")
7253 (description
7254 "Pyasn1-modules is a collection of Python modules providing ASN.1 types and
7255 implementations of ASN.1-based codecs and protocols.")
7256 (license license:bsd-3)))
7257
7258 (define-public python2-pyasn1-modules
7259 (package-with-python2 python-pyasn1-modules))
7260
7261 (define-public python-ipaddress
7262 (package
7263 (name "python-ipaddress")
7264 (version "1.0.18")
7265 (source (origin
7266 (method url-fetch)
7267 (uri (pypi-uri "ipaddress" version))
7268 (sha256
7269 (base32
7270 "1q8klj9d84cmxgz66073x1j35cplr3r77vx1znhxiwl5w74391ax"))))
7271 (build-system python-build-system)
7272 (home-page "https://github.com/phihag/ipaddress")
7273 (synopsis "IP address manipulation library")
7274 (description
7275 "This package provides a fast, lightweight IPv4/IPv6 manipulation library
7276 in Python. This library is used to create, poke at, and manipulate IPv4 and
7277 IPv6 addresses and networks. This is a port of the Python 3.3 ipaddress
7278 module to older versions of Python.")
7279 (license license:psfl)))
7280
7281 (define-public python2-ipaddress
7282 (package-with-python2 python-ipaddress))
7283
7284 (define-public python2-ipaddr
7285 (package
7286 (name "python2-ipaddr")
7287 (version "2.1.11")
7288 (source
7289 (origin
7290 (method url-fetch)
7291 (uri (pypi-uri "ipaddr" version))
7292 (sha256
7293 (base32 "1dwq3ngsapjc93fw61rp17fvzggmab5x1drjzvd4y4q0i255nm8v"))))
7294 (build-system python-build-system)
7295 (arguments
7296 `(#:python ,python-2 ;version 2 only
7297 #:phases
7298 (modify-phases %standard-phases
7299 (replace 'check
7300 (lambda* _
7301 (zero? (system* "python" "ipaddr_test.py")))))))
7302 (home-page "https://github.com/google/ipaddr-py")
7303 (synopsis "IP address manipulation library")
7304 (description
7305 "Ipaddr is a Python@tie{}2 library for creating and manupilating IPv4 and
7306 IPv6 addresses and networks.
7307
7308 For new implementations you may prefer to use the standard module
7309 @code{ipaddress}, which was introduced in Python 3.3 and backported to older
7310 versions of Python.")
7311 (license license:asl2.0)))
7312
7313 (define-public python-idna
7314 (package
7315 (name "python-idna")
7316 (version "2.5")
7317 (source
7318 (origin
7319 (method url-fetch)
7320 (uri (pypi-uri "idna" version))
7321 (sha256
7322 (base32
7323 "1ara12a7k2zc69msa0arrvw00gn61a6i6by01xb3lkkc0h4cxd9w"))))
7324 (build-system python-build-system)
7325 (home-page "https://github.com/kjd/idna")
7326 (synopsis "Internationalized domain names in applications")
7327 (description
7328 "This is a library to support the Internationalised Domain Names in
7329 Applications (IDNA) protocol as specified in RFC 5891. This version of the
7330 protocol is often referred to as “IDNA2008” and can produce different results
7331 from the earlier standard from 2003. The library is also intended to act as a
7332 suitable drop-in replacement for the “encodings.idna” module that comes with
7333 the Python standard library but currently only supports the older 2003
7334 specification.")
7335 (license license:bsd-4)))
7336
7337 (define-public python2-idna
7338 (package-with-python2 python-idna))
7339
7340 (define-public python-pretend
7341 (package
7342 (name "python-pretend")
7343 (version "1.0.8")
7344 (source
7345 (origin
7346 (method url-fetch)
7347 (uri (string-append "https://pypi.python.org/packages/source/p/"
7348 "pretend/pretend-" version ".tar.gz"))
7349 (sha256
7350 (base32
7351 "0r5r7ygz9m6d2bklflbl84cqhjkc2q12xgis8268ygjh30g2q3wk"))))
7352 (build-system python-build-system)
7353 (home-page "https://github.com/alex/pretend")
7354 (synopsis "Library for stubbing in Python")
7355 (description
7356 "Pretend is a library to make stubbing with Python easier. Stubbing is a
7357 technique for writing tests. You may hear the term mixed up with mocks,
7358 fakes, or doubles. Basically, a stub is an object that returns pre-canned
7359 responses, rather than doing any computation.")
7360 (license license:bsd-3)))
7361
7362 (define-public python2-pretend
7363 (package-with-python2 python-pretend))
7364
7365 (define-public python-cryptography-vectors
7366 (package
7367 (name "python-cryptography-vectors")
7368 (version "1.8.2")
7369 (source
7370 (origin
7371 (method url-fetch)
7372 (uri (pypi-uri "cryptography_vectors" version))
7373 (sha256
7374 (base32
7375 "0hzvq0bfy21bc35p8z7zdxpv3hbvi7adg4axc1b5yd3hk16a1nh0"))))
7376 (build-system python-build-system)
7377 (home-page "https://github.com/pyca/cryptography")
7378 (synopsis "Test vectors for the cryptography package")
7379 (description
7380 "This package contains test vectors for the cryptography package.")
7381 ;; Distributed under either BSD-3 or ASL2.0
7382 (license (list license:bsd-3 license:asl2.0))))
7383
7384 (define-public python2-cryptography-vectors
7385 (package-with-python2 python-cryptography-vectors))
7386
7387 (define-public python-cryptography
7388 (package
7389 (name "python-cryptography")
7390 (version "1.8.2")
7391 (source
7392 (origin
7393 (method url-fetch)
7394 (uri (pypi-uri "cryptography" version))
7395 (sha256
7396 (base32
7397 "1nmy4fw3zy7rlvarkhn33g9905rwpy9z7k5kv8j80f0s6ynfp24f"))))
7398 (build-system python-build-system)
7399 (inputs
7400 `(("openssl" ,openssl)))
7401 (propagated-inputs
7402 `(("python-asn1crypto" ,python-asn1crypto)
7403 ("python-cffi" ,python-cffi)
7404 ("python-six" ,python-six)
7405 ("python-idna" ,python-idna)
7406 ;; Packaging is used to check the version of python-cffi in
7407 ;; 'src/cryptography/hazmat/primitives/ciphers/base.py'. We should be
7408 ;; able to remove this dependency in the next release of cryptography:
7409 ;; python-cryptography:
7410 ;; https://github.com/pyca/cryptography/commit/0417d00d9ff1e19bc3ab67d39bdd18e1674768c1
7411 ("python-packaging" ,python-packaging)
7412 ("python-iso8601" ,python-iso8601)))
7413 (native-inputs
7414 `(("python-cryptography-vectors" ,python-cryptography-vectors)
7415 ("python-hypothesis" ,python-hypothesis)
7416 ("python-pretend" ,python-pretend)
7417 ("python-pytz" ,python-pytz)
7418 ("python-pytest" ,python-pytest-3.0)))
7419 (home-page "https://github.com/pyca/cryptography")
7420 (synopsis "Cryptographic recipes and primitives for Python")
7421 (description
7422 "cryptography is a package which provides cryptographic recipes and
7423 primitives to Python developers. It aims to be the “cryptographic standard
7424 library” for Python. The package includes both high level recipes, and low
7425 level interfaces to common cryptographic algorithms such as symmetric ciphers,
7426 message digests and key derivation functions.")
7427 ;; Distributed under either BSD-3 or ASL2.0
7428 (license (list license:bsd-3 license:asl2.0))
7429 (properties `((python2-variant . ,(delay python2-cryptography))))))
7430
7431 (define-public python2-cryptography
7432 (let ((crypto (package-with-python2
7433 (strip-python2-variant python-cryptography))))
7434 (package (inherit crypto)
7435 (propagated-inputs
7436 `(("python2-ipaddress" ,python2-ipaddress)
7437 ("python2-backport-ssl-match-hostname"
7438 ,python2-backport-ssl-match-hostname)
7439 ("python2-enum34" ,python2-enum34)
7440 ,@(package-propagated-inputs crypto))))))
7441
7442 (define-public python-pyopenssl
7443 (package
7444 (name "python-pyopenssl")
7445 (version "17.0.0")
7446 (source
7447 (origin
7448 (method url-fetch)
7449 (uri (pypi-uri "pyOpenSSL" version))
7450 (sha256
7451 (base32
7452 "1pdg1gpmkzj8yasg6cmkhcivxcdp4c12nif88y4qvsxq5ffzxas8"))
7453 (patches
7454 (search-patches "python-pyopenssl-skip-network-test.patch"))))
7455 (build-system python-build-system)
7456 (arguments
7457 '(#:phases
7458 (modify-phases %standard-phases
7459 (delete 'check)
7460 (add-after 'install 'check
7461 (lambda* (#:key inputs outputs #:allow-other-keys)
7462 (add-installed-pythonpath inputs outputs)
7463 (zero? (system* "py.test" "-v")))))))
7464 (propagated-inputs
7465 `(("python-cryptography" ,python-cryptography)
7466 ("python-six" ,python-six)))
7467 (inputs
7468 `(("openssl" ,openssl)))
7469 (native-inputs
7470 `(("python-pytest" ,python-pytest-3.0)))
7471 (home-page "https://github.com/pyca/pyopenssl")
7472 (synopsis "Python wrapper module around the OpenSSL library")
7473 (description
7474 "PyOpenSSL is a high-level wrapper around a subset of the OpenSSL
7475 library.")
7476 (license license:asl2.0)))
7477
7478 (define-public python2-pyopenssl
7479 (package-with-python2 python-pyopenssl))
7480
7481 (define-public python-pip
7482 (package
7483 (name "python-pip")
7484 (version "9.0.1")
7485 (source
7486 (origin
7487 (method url-fetch)
7488 (uri (pypi-uri "pip" version))
7489 (sha256
7490 (base32
7491 "03clr9c1dih5n9c00c592zzvf6r1ffimywkaq9agcqdllzhl7wh9"))))
7492 (build-system python-build-system)
7493 (arguments
7494 '(#:tests? #f)) ; there are no tests in the pypi archive.
7495 (home-page "https://pip.pypa.io/")
7496 (synopsis "Package manager for Python software")
7497 (description
7498 "Pip is a package manager for Python software, that finds packages on the
7499 Python Package Index (PyPI).")
7500 (license license:expat)))
7501
7502 (define-public python2-pip
7503 (package-with-python2 python-pip))
7504
7505 (define-public python-tlsh
7506 (package
7507 (name "python-tlsh")
7508 (version "3.4.4")
7509 (home-page "https://github.com/trendmicro/tlsh")
7510 (source (origin
7511 (method url-fetch)
7512 (uri (string-append "https://github.com/trendmicro/tlsh/archive/v"
7513 version ".tar.gz"))
7514 (sha256
7515 (base32
7516 "00bhzjqrlh7v538kbkbn8lgx976j1138al3sdhklaizqjvpwyk4r"))
7517 (file-name (string-append name "-" version ".tar.gz"))))
7518 (build-system cmake-build-system)
7519 (arguments
7520 '(#:out-of-source? #f
7521 #:phases (modify-phases %standard-phases
7522 (replace
7523 'install
7524 (lambda* (#:key outputs #:allow-other-keys)
7525 ;; Build and install the Python bindings. The underlying
7526 ;; C++ library is apparently not meant to be installed.
7527 (let ((out (assoc-ref outputs "out")))
7528 (with-directory-excursion "py_ext"
7529 (and (system* "python" "setup.py" "build")
7530 (system* "python" "setup.py" "install"
7531 (string-append "--prefix=" out))))))))))
7532 (inputs `(("python" ,python-wrapper))) ;for the bindings
7533 (synopsis "Fuzzy matching library for Python")
7534 (description
7535 "Trend Micro Locality Sensitive Hash (TLSH) is a fuzzy matching library.
7536 Given a byte stream with a minimum length of 256 bytes, TLSH generates a hash
7537 value which can be used for similarity comparisons. Similar objects have
7538 similar hash values, which allows for the detection of similar objects by
7539 comparing their hash values. The byte stream should have a sufficient amount
7540 of complexity; for example, a byte stream of identical bytes will not generate
7541 a hash value.")
7542 (license license:asl2.0)))
7543
7544 (define-public python2-tlsh
7545 (package
7546 (inherit python-tlsh)
7547 (name "python2-tlsh")
7548 (inputs `(("python" ,python-2)))))
7549
7550 (define-public python-termcolor
7551 (package
7552 (name "python-termcolor")
7553 (version "1.1.0")
7554 (source
7555 (origin
7556 (method url-fetch)
7557 (uri (pypi-uri "termcolor" version))
7558 (sha256
7559 (base32
7560 "0fv1vq14rpqwgazxg4981904lfyp84mnammw7y046491cv76jv8x"))))
7561 (build-system python-build-system)
7562 (arguments
7563 ;; There are no tests.
7564 `(#:tests? #f))
7565 (home-page "http://pypi.python.org/pypi/termcolor")
7566 (synopsis "ANSII Color formatting for terminal output")
7567 (description
7568 "This package provides ANSII Color formatting for output in terminals.")
7569 (license license:expat)))
7570
7571 (define-public python2-termcolor
7572 (package-with-python2 python-termcolor))
7573
7574 (define-public python-libarchive-c
7575 (package
7576 (name "python-libarchive-c")
7577 (version "2.2")
7578 (source (origin
7579 (method url-fetch)
7580 (uri (pypi-uri "libarchive-c" version))
7581 (sha256
7582 (base32
7583 "0z4r7v3dhd6b3120mav05ff08srih176r2rg5k8kn7mjd9pslm2x"))))
7584 (build-system python-build-system)
7585 (arguments
7586 '(#:phases (modify-phases %standard-phases
7587 (add-before
7588 'build 'reference-libarchive
7589 (lambda* (#:key inputs #:allow-other-keys)
7590 ;; Retain the absolute file name of libarchive.so.
7591 (let ((libarchive (assoc-ref inputs "libarchive")))
7592 (substitute* "libarchive/ffi.py"
7593 (("find_library\\('archive'\\)")
7594 (string-append "'" libarchive
7595 "/lib/libarchive.so'")))))))))
7596 (inputs
7597 `(("libarchive" ,libarchive)))
7598 (home-page "https://github.com/Changaco/python-libarchive-c")
7599 (synopsis "Python interface to libarchive")
7600 (description
7601 "This package provides Python bindings to libarchive, a C library to
7602 access possibly compressed archives in many different formats. It uses
7603 Python's @code{ctypes} foreign function interface (FFI).")
7604 (license license:lgpl2.0+)))
7605
7606 (define-public python2-libarchive-c
7607 (package-with-python2 python-libarchive-c))
7608
7609 (define-public python-file
7610 (package
7611 (inherit file)
7612 (name "python-file")
7613 (source (origin
7614 (inherit (package-source file))
7615 ;; This patch should not be applied to python2-file.
7616 (patches (search-patches "python-file-double-encoding-bug.patch"))))
7617 (build-system python-build-system)
7618 (arguments
7619 '(#:tests? #f ;no tests
7620 #:configure-flags '("--single-version-externally-managed" "--root=/")
7621 #:phases (modify-phases %standard-phases
7622 (add-before 'build 'change-directory
7623 (lambda _
7624 (chdir "python")
7625 #t))
7626 (add-before 'build 'set-library-file-name
7627 (lambda* (#:key inputs #:allow-other-keys)
7628 (let ((file (assoc-ref inputs "file")))
7629 (substitute* "magic.py"
7630 (("find_library\\('magic'\\)")
7631 (string-append "'" file "/lib/libmagic.so'")))
7632 #t))))))
7633 (inputs `(("file" ,file)))
7634 (self-native-input? #f)
7635 (synopsis "Python bindings to the libmagic file type guesser. Note that
7636 this module and the python-magic module both provide a \"magic.py\" file;
7637 these two modules, which are different and were developed separately, both
7638 serve the same purpose: provide Python bindings for libmagic.")))
7639
7640 (define-public python2-file
7641 (package-with-python2 python-file))
7642
7643 (define-public python-debian
7644 (package
7645 (name "python-debian")
7646 (version "0.1.28")
7647 (source
7648 (origin
7649 (method url-fetch)
7650 (uri (pypi-uri name version))
7651 (sha256
7652 (base32
7653 "0i15f0xzx679sd0ldq2sls9pnnps9fv6vhqvnv9dzf4qhma42i0y"))))
7654 (build-system python-build-system)
7655 (propagated-inputs
7656 `(("python-six" ,python-six)))
7657 (home-page "http://packages.debian.org/sid/python-debian")
7658 (synopsis "Debian package related modules")
7659 (description
7660 ;; XXX: Use @enumerate instead of @itemize to work around
7661 ;; <http://bugs.gnu.org/21772>.
7662 "This package provides Python modules that abstract many formats of
7663 Debian-related files, such as:
7664
7665 @enumerate
7666 @item Debtags information;
7667 @item @file{debian/changelog} files;
7668 @item packages files, pdiffs;
7669 @item control files of single or multiple RFC822-style paragraphs---e.g.
7670 @file{debian/control}, @file{.changes}, @file{.dsc};
7671 @item Raw @file{.deb} and @file{.ar} files, with (read-only) access to
7672 contained files and meta-information.
7673 @end enumerate\n")
7674
7675 ;; Modules are either GPLv2+ or GPLv3+.
7676 (license license:gpl3+)))
7677
7678 (define-public python2-debian
7679 (package-with-python2 python-debian))
7680
7681 (define-public python-nbformat
7682 (package
7683 (name "python-nbformat")
7684 (version "4.1.0")
7685 (source
7686 (origin
7687 (method url-fetch)
7688 (uri (pypi-uri "nbformat" version))
7689 (sha256
7690 (base32
7691 "0mq8iki3d4mnx7wy05phss7x98mds4fqydin8lcagidp1knw1xnv"))))
7692 (build-system python-build-system)
7693 (arguments `(#:tests? #f)) ; no test target
7694 (propagated-inputs
7695 `(("python-ipython-genutils" ,python-ipython-genutils)
7696 ("python-jsonschema" ,python-jsonschema)
7697 ("python-jupyter-core" ,python-jupyter-core)
7698 ("python-traitlets" ,python-traitlets)))
7699 (home-page "http://jupyter.org")
7700 (synopsis "Jupyter Notebook format")
7701 (description "This package provides the reference implementation of the
7702 Jupyter Notebook format and Python APIs for working with notebooks.")
7703 (license license:bsd-3)))
7704
7705 (define-public python2-nbformat
7706 (package-with-python2 python-nbformat))
7707
7708 (define-public python-bleach
7709 (package
7710 (name "python-bleach")
7711 (version "1.4.3")
7712 (source
7713 (origin
7714 (method url-fetch)
7715 (uri (pypi-uri "bleach" version))
7716 (sha256
7717 (base32
7718 "0jvg3jxrvnx7xmm9gj262v60ib452xlnwlb0navyp7jsvcd0d4qj"))))
7719 (build-system python-build-system)
7720 (propagated-inputs
7721 `(("python-html5lib" ,python-html5lib-0.9)
7722 ("python-six" ,python-six)))
7723 (native-inputs
7724 `(("python-nose" ,python-nose)))
7725 (home-page "https://github.com/jsocol/bleach")
7726 (synopsis "Whitelist-based HTML-sanitizing tool")
7727 (description "Bleach is an easy whitelist-based HTML-sanitizing tool.")
7728 (license license:asl2.0)))
7729
7730 (define-public python2-bleach
7731 (package-with-python2 python-bleach))
7732
7733 (define-public python-entrypoints
7734 (package
7735 (name "python-entrypoints")
7736 (version "0.2.2")
7737 (source
7738 (origin
7739 (method url-fetch)
7740 (uri (string-append "https://github.com/takluyver/entrypoints/archive/"
7741 version ".tar.gz"))
7742 (file-name (string-append name "-" version ".tar.gz"))
7743 (sha256
7744 (base32
7745 "0azqlkh3j0za080lsf5crnhaxx3c93k9dpv5ihkhf5cppgw5sjz5"))))
7746 (build-system python-build-system)
7747 ;; The package does not come with a setup.py file, so we have to generate
7748 ;; one ourselves.
7749 (arguments
7750 `(#:tests? #f
7751 #:phases
7752 (modify-phases %standard-phases
7753 (add-after 'unpack 'create-setup.py
7754 (lambda _
7755 (call-with-output-file "setup.py"
7756 (lambda (port)
7757 (format port "\
7758 from setuptools import setup
7759 setup(name='entrypoints', version='~a', py_modules=['entrypoints'])
7760 " ,version))))))))
7761 (home-page "https://github.com/takluyver/entrypoints")
7762 (synopsis "Discover and load entry points from installed Python packages")
7763 (description "Entry points are a way for Python packages to advertise
7764 objects with some common interface. The most common examples are
7765 @code{console_scripts} entry points, which define shell commands by
7766 identifying a Python function to run. The @code{entrypoints} module contains
7767 functions to find and load entry points.")
7768 (license license:expat)))
7769
7770 (define-public python2-entrypoints
7771 (package-with-python2 python-entrypoints))
7772
7773 (define-public python-nbconvert
7774 (package
7775 (name "python-nbconvert")
7776 (version "5.0.0b1")
7777 (source
7778 (origin
7779 (method url-fetch)
7780 (uri (pypi-uri "nbconvert" version))
7781 (sha256
7782 (base32
7783 "0brclbb18l4nmd5qy3dl9wn05rjdh1fz4rmzdlfqacj12rcdvdgp"))))
7784 (build-system python-build-system)
7785 (arguments
7786 `(;; The "bdist_egg" target is disabled by default, causing the installation
7787 ;; to fail.
7788 #:configure-flags (list "bdist_egg")
7789 ;; FIXME: 5 failures, 40 errors.
7790 #:tests? #f))
7791 ;; #:phases
7792 ;; (modify-phases %standard-phases
7793 ;; (replace 'check
7794 ;; (lambda _
7795 ;; (zero? (system* "py.test" "-v")))))
7796 (native-inputs
7797 `(("python-pytest" ,python-pytest)))
7798 (propagated-inputs
7799 `(("python-bleach" ,python-bleach)
7800 ("python-entrypoints" ,python-entrypoints)
7801 ("python-jinja2" ,python-jinja2)
7802 ("python-jupyter-core" ,python-jupyter-core)
7803 ("python-mistune" ,python-mistune)
7804 ("python-nbformat" ,python-nbformat)
7805 ("python-pygments" ,python-pygments)
7806 ("python-traitlets" ,python-traitlets)))
7807 (home-page "http://jupyter.org")
7808 (synopsis "Converting Jupyter Notebooks")
7809 (description "The @code{nbconvert} tool, @{jupyter nbconvert}, converts
7810 notebooks to various other formats via Jinja templates. It allows you to
7811 convert an @code{.ipynb} notebook file into various static formats including:
7812
7813 @enumerate
7814 @item HTML
7815 @item LaTeX
7816 @item PDF
7817 @item Reveal JS
7818 @item Markdown (md)
7819 @item ReStructured Text (rst)
7820 @item executable script
7821 @end enumerate\n")
7822 (license license:bsd-3)))
7823
7824 (define-public python2-nbconvert
7825 (package-with-python2 python-nbconvert))
7826
7827 (define-public python-notebook
7828 (package
7829 (name "python-notebook")
7830 (version "4.2.3")
7831 (source (origin
7832 (method url-fetch)
7833 (uri (pypi-uri "notebook" version))
7834 (sha256
7835 (base32
7836 "0laq5c2f21frq6xcdckgq7raqhznbjb0qs0357g612z87wyn1a9r"))))
7837 (build-system python-build-system)
7838 (arguments
7839 `(#:phases
7840 (modify-phases %standard-phases
7841 (replace 'check
7842 (lambda _
7843 ;; HOME must be set for tests
7844 (setenv "HOME" "/tmp")
7845 (zero? (system* "nosetests")))))))
7846 (propagated-inputs
7847 `(("python-jupyter-core" ,python-jupyter-core)
7848 ("python-nbformat" ,python-nbformat)
7849 ("python-nbconvert" ,python-nbconvert)
7850 ("python-ipython" ,python-ipython)))
7851 (native-inputs
7852 `(("python-nose" ,python-nose)
7853 ("python-sphinx" ,python-sphinx)
7854 ("python-requests" ,python-requests)))
7855 (home-page "http://jupyter.org/")
7856 (synopsis "Web-based notebook environment for interactive computing")
7857 (description
7858 "The Jupyter HTML notebook is a web-based notebook environment for
7859 interactive computing.")
7860 (properties `((python2-variant . ,(delay python2-notebook))))
7861 (license license:bsd-3)))
7862
7863 (define-public python2-notebook
7864 (let ((base (package-with-python2
7865 (strip-python2-variant python-notebook))))
7866 (package (inherit base)
7867 (native-inputs
7868 `(("python2-mock" ,python2-mock)
7869 ,@(package-native-inputs base)))
7870 (arguments
7871 (substitute-keyword-arguments (package-arguments base)
7872 ((#:phases phases)
7873 `(modify-phases ,phases
7874 (add-before 'check 'disable-test-case
7875 ;; The test requires network access to localhost. Curiously it
7876 ;; fails with Python 2 only. Simply make the test-case return
7877 ;; immediately.
7878 (lambda _
7879 (substitute*
7880 "notebook/services/nbconvert/tests/test_nbconvert_api.py"
7881 (("formats = self.nbconvert_api") "return #")))))))))))
7882
7883 (define-public python-widgetsnbextension
7884 (package
7885 (name "python-widgetsnbextension")
7886 (version "1.2.6")
7887 (source
7888 (origin
7889 (method url-fetch)
7890 (uri (pypi-uri "widgetsnbextension" version))
7891 (sha256
7892 (base32
7893 "0lff2mrwrgsa1mxmwx3phl9xvy0jqfpg6khbmxy53jbq56rwy666"))))
7894 (build-system python-build-system)
7895 (propagated-inputs
7896 `(("python-notebook" ,python-notebook)))
7897 (native-inputs
7898 `(("python-certifi" ,python-certifi)
7899 ("python-nose" ,python-nose)))
7900 (home-page "http://ipython.org")
7901 (synopsis "IPython HTML widgets for Jupyter")
7902 (description "This package provides interactive HTML widgets for Jupyter
7903 notebooks.")
7904 (license license:bsd-3)))
7905
7906 (define-public python2-widgetsnbextension
7907 (package-with-python2 python-widgetsnbextension))
7908
7909 (define-public python-ipywidgets
7910 (package
7911 (name "python-ipywidgets")
7912 (version "5.2.2")
7913 (source
7914 (origin
7915 (method url-fetch)
7916 (uri (pypi-uri "ipywidgets" version))
7917 (sha256
7918 (base32
7919 "1lk0qrr5l9a0z7qkkn30hv5832whxwxymf1l576fmmad0n7hkxms"))))
7920 (build-system python-build-system)
7921 ;; FIXME: it's not clear how to run the tests.
7922 (arguments `(#:tests? #f))
7923 (propagated-inputs
7924 `(("python-ipykernel" ,python-ipykernel)
7925 ("python-ipython" ,python-ipython)
7926 ("python-traitlets" ,python-traitlets)
7927 ("python-widgetsnbextension" ,python-widgetsnbextension)))
7928 (home-page "http://ipython.org")
7929 (synopsis "IPython HTML widgets for Jupyter")
7930 (description "Ipywidgets are interactive HTML widgets for Jupyter
7931 notebooks and the IPython kernel. Notebooks come alive when interactive
7932 widgets are used. Users gain control of their data and can visualize changes
7933 in the data.")
7934 (license license:bsd-3)))
7935
7936 (define-public python2-ipywidgets
7937 (package-with-python2 python-ipywidgets))
7938
7939 (define-public python-jupyter-console
7940 (package
7941 (name "python-jupyter-console")
7942 (version "5.0.0")
7943 (source
7944 (origin
7945 (method url-fetch)
7946 (uri (pypi-uri "jupyter_console" version))
7947 (sha256
7948 (base32
7949 "04acmkwsi99rcg3vb54c6n492zv35s92h2ahabc0w6wj976cipvx"))))
7950 (build-system python-build-system)
7951 ;; FIXME: it's not clear how to run the tests.
7952 (arguments `(#:tests? #f))
7953 (propagated-inputs
7954 `(("python-ipykernel" ,python-ipykernel)
7955 ("python-ipython" ,python-ipython)
7956 ("python-jupyter-client" ,python-jupyter-client)
7957 ("python-prompt-toolkit" ,python-prompt-toolkit)
7958 ("python-pygments" ,python-pygments)))
7959 (home-page "https://jupyter.org")
7960 (synopsis "Jupyter terminal console")
7961 (description "This package provides a terminal-based console frontend for
7962 Jupyter kernels. It also allows for console-based interaction with non-Python
7963 Jupyter kernels such as IJulia and IRKernel.")
7964 (license license:bsd-3)))
7965
7966 (define-public python2-jupyter-console
7967 (package-with-python2 python-jupyter-console))
7968
7969 (define-public jupyter
7970 (package
7971 (name "jupyter")
7972 (version "1.0.0")
7973 (source
7974 (origin
7975 (method url-fetch)
7976 (uri (pypi-uri "jupyter" version))
7977 (sha256
7978 (base32
7979 "0pwf3pminkzyzgx5kcplvvbvwrrzd3baa7lmh96f647k30rlpp6r"))))
7980 (build-system python-build-system)
7981 ;; FIXME: it's not clear how to run the tests.
7982 (arguments `(#:tests? #f))
7983 (propagated-inputs
7984 `(("python-ipykernel" ,python-ipykernel)
7985 ("python-ipywidgets" ,python-ipywidgets)
7986 ("python-jupyter-console" ,python-jupyter-console)
7987 ("python-nbconvert" ,python-nbconvert)
7988 ("python-notebook" ,python-notebook)))
7989 (home-page "http://jupyter.org")
7990 (synopsis "Web application for interactive documents")
7991 (description
7992 "The Jupyter Notebook is a web application that allows you to create and
7993 share documents that contain live code, equations, visualizations and
7994 explanatory text. Uses include: data cleaning and transformation, numerical
7995 simulation, statistical modeling, machine learning and much more.")
7996 (license license:bsd-3)))
7997
7998 (define-public python-chardet
7999 (package
8000 (name "python-chardet")
8001 (version "2.3.0")
8002 (source
8003 (origin
8004 (method url-fetch)
8005 (uri (string-append
8006 "https://pypi.python.org/packages/source/c/chardet/chardet-"
8007 version
8008 ".tar.gz"))
8009 (sha256
8010 (base32
8011 "1ak87ikcw34fivcgiz2xvi938dmclh078az65l9x3rmgljrkhgp5"))))
8012 (build-system python-build-system)
8013 (home-page "https://github.com/chardet/chardet")
8014 (synopsis "Universal encoding detector for Python 2 and 3")
8015 (description
8016 "This package provides @code{chardet}, a Python module that can
8017 automatically detect a wide range of file encodings.")
8018 (license license:lgpl2.1+)))
8019
8020 (define-public python2-chardet
8021 (package-with-python2 python-chardet))
8022
8023 (define-public python-docopt
8024 (package
8025 (name "python-docopt")
8026 (version "0.6.2")
8027 (source
8028 (origin
8029 (method url-fetch)
8030 ;; The release on PyPI does not include tests.
8031 (uri (string-append
8032 "https://github.com/docopt/docopt/archive/"
8033 version ".tar.gz"))
8034 (file-name (string-append name "-" version ".tar.gz"))
8035 (sha256
8036 (base32
8037 "16bf890xbdz3m30rsv2qacklh2rdn1zrfspfnwzx9g7vwz8yw4r1"))))
8038 (build-system python-build-system)
8039 (native-inputs
8040 `(("python-pytest" ,python-pytest)))
8041 (arguments
8042 `(#:phases (alist-replace
8043 'check
8044 (lambda _ (zero? (system* "py.test")))
8045 %standard-phases)))
8046 (home-page "http://docopt.org")
8047 (synopsis "Command-line interface description language for Python")
8048 (description "This library allows the user to define a command-line
8049 interface from a program's help message rather than specifying it
8050 programatically with command-line parsers like @code{getopt} and
8051 @code{argparse}.")
8052 (license license:expat)))
8053
8054 (define-public python2-docopt
8055 (package-with-python2 python-docopt))
8056
8057 (define-public python-zope-event
8058 (package
8059 (name "python-zope-event")
8060 (version "4.1.0")
8061 (source
8062 (origin
8063 (method url-fetch)
8064 (uri (string-append "https://pypi.python.org/packages/source/z"
8065 "/zope.event/zope.event-" version ".tar.gz"))
8066 (sha256
8067 (base32
8068 "11p75zpfz3ffhz21nzx9wb23xs993ck5s6hkjcvhswwizni5jynw"))))
8069 (build-system python-build-system)
8070 (home-page "http://pypi.python.org/pypi/zope.event")
8071 (synopsis "Event publishing system for Python")
8072 (description "Zope.event provides an event publishing API, intended for
8073 use by applications which are unaware of any subscribers to their events. It
8074 is a simple event-dispatching system on which more sophisticated event
8075 dispatching systems can be built.")
8076 (license license:zpl2.1)))
8077
8078 (define-public python2-zope-event
8079 (package-with-python2 python-zope-event))
8080
8081 (define-public python-zope-interface
8082 (package
8083 (name "python-zope-interface")
8084 (version "4.1.3")
8085 (source
8086 (origin
8087 (method url-fetch)
8088 (uri (string-append "https://pypi.python.org/packages/source/z"
8089 "/zope.interface/zope.interface-" version ".tar.gz"))
8090 (sha256
8091 (base32
8092 "0ks8h73b2g4bkad821qbv0wzjppdrwys33i7ka45ik3wxjg1l8if"))))
8093 (build-system python-build-system)
8094 (native-inputs
8095 `(("python-zope-event" ,python-zope-event)))
8096 (home-page "https://github.com/zopefoundation/zope.interface")
8097 (synopsis "Python implementation of the \"design by contract\"
8098 methodology")
8099 (description "Zope.interface provides an implementation of \"object
8100 interfaces\" for Python. Interfaces are a mechanism for labeling objects as
8101 conforming to a given API or contract.")
8102 (license license:zpl2.1)))
8103
8104 (define-public python2-zope-interface
8105 (package-with-python2 python-zope-interface))
8106
8107 (define-public python-zope-exceptions
8108 (package
8109 (name "python-zope-exceptions")
8110 (version "4.0.8")
8111 (source
8112 (origin
8113 (method url-fetch)
8114 (uri (string-append "https://pypi.python.org/packages/source/z"
8115 "/zope.exceptions/zope.exceptions-"
8116 version ".tar.gz"))
8117 (sha256
8118 (base32
8119 "0zwxaaa66sqxg5k7zcrvs0fbg9ym1njnxnr28dfmchzhwjvwnfzl"))))
8120 (build-system python-build-system)
8121 (arguments
8122 '(#:tests? #f)) ; circular dependency with zope.testrunner
8123 (propagated-inputs
8124 `(("python-zope-interface" ,python-zope-interface)))
8125 (home-page "http://cheeseshop.python.org/pypi/zope.exceptions")
8126 (synopsis "Zope exceptions")
8127 (description "Zope.exceptions provides general-purpose exception types
8128 that have uses outside of the Zope framework.")
8129 (license license:zpl2.1)))
8130
8131 (define-public python2-zope-exceptions
8132 (package-with-python2 python-zope-exceptions))
8133
8134 (define-public python-zope-testing
8135 (package
8136 (name "python-zope-testing")
8137 (version "4.5.0")
8138 (source
8139 (origin
8140 (method url-fetch)
8141 (uri (string-append "https://pypi.python.org/packages/source/z"
8142 "/zope.testing/zope.testing-" version ".tar.gz"))
8143 (sha256
8144 (base32
8145 "1yvglxhzvhl45mndvn9gskx2ph30zz1bz7rrlyfs62fv2pvih90s"))
8146 (modules '((guix build utils)))
8147 (snippet
8148 '(begin
8149 ;; Remove pre-compiled .pyc files backup files from source.
8150 (for-each delete-file (find-files "." "(\\.pyc|~)$"))
8151 #t))))
8152 (build-system python-build-system)
8153 (native-inputs
8154 `(("python-zope-exceptions" ,python-zope-exceptions)))
8155 (propagated-inputs
8156 `(("python-zope-interface" ,python-zope-interface)))
8157 (home-page "http://pypi.python.org/pypi/zope.testing")
8158 (synopsis "Zope testing helpers")
8159 (description "Zope.testing provides a number of testing utilities for HTML
8160 forms, HTTP servers, regular expressions, and more.")
8161 (license license:zpl2.1)))
8162
8163 (define-public python2-zope-testing
8164 (package-with-python2 python-zope-testing))
8165
8166 (define-public python-zope-testrunner
8167 (package
8168 (name "python-zope-testrunner")
8169 (version "4.4.9")
8170 (source
8171 (origin
8172 (method url-fetch)
8173 (uri (string-append "https://pypi.python.org/packages/source/z"
8174 "/zope.testrunner/zope.testrunner-"
8175 version ".zip"))
8176 (sha256
8177 (base32
8178 "1r7iqknhh55y45f64mz5hghgvzx34h1i11k350s0avx6q8gznja1"))))
8179 (build-system python-build-system)
8180 (arguments
8181 '(#:tests? #f)) ; FIXME: Tests can't find zope.interface.
8182 (native-inputs
8183 `(("python-six" ,python-six)
8184 ;("python-zope-interface" ,python-zope-interface)
8185 ("python-zope-exceptions" ,python-zope-exceptions)
8186 ("python-zope-testing" ,python-zope-testing)
8187 ("unzip" ,unzip)))
8188 (propagated-inputs
8189 `(("python-zope-interface" ,python-zope-interface)))
8190 (home-page "http://pypi.python.org/pypi/zope.testrunner")
8191 (synopsis "Zope testrunner script")
8192 (description "Zope.testrunner provides a script for running Python
8193 tests.")
8194 (license license:zpl2.1)))
8195
8196 (define-public python2-zope-testrunner
8197 (let ((base (package-with-python2 python-zope-testrunner)))
8198 (package
8199 (inherit base)
8200 (native-inputs
8201 (append (package-native-inputs base)
8202 `(("python2-subunit" ,python2-subunit)
8203 ("python2-mimeparse" ,python2-mimeparse)))))))
8204
8205 (define-public python-zope-i18nmessageid
8206 (package
8207 (name "python-zope-i18nmessageid")
8208 (version "4.0.3")
8209 (source
8210 (origin
8211 (method url-fetch)
8212 (uri (string-append
8213 "https://pypi.python.org/packages/source/z"
8214 "/zope.i18nmessageid/zope.i18nmessageid-"
8215 version ".tar.gz"))
8216 (sha256
8217 (base32
8218 "1rslyph0klk58dmjjy4j0jxy21k03azksixc3x2xhqbkv97cmzml"))))
8219 (build-system python-build-system)
8220 (home-page "http://pypi.python.org/pypi/zope.i18nmessageid")
8221 (synopsis "Message identifiers for internationalization")
8222 (description "Zope.i18nmessageid provides facilities for declaring
8223 internationalized messages within program source text.")
8224 (license license:zpl2.1)))
8225
8226 (define-public python2-zope-i18nmessageid
8227 (package-with-python2 python-zope-i18nmessageid))
8228
8229 (define-public python-zope-schema
8230 (package
8231 (name "python-zope-schema")
8232 (version "4.4.2")
8233 (source
8234 (origin
8235 (method url-fetch)
8236 (uri (string-append "https://pypi.python.org/packages/source/z"
8237 "/zope.schema/zope.schema-" version ".tar.gz"))
8238 (sha256
8239 (base32
8240 "1p943jdxb587dh7php4vx04qvn7b2877hr4qs5zyckvp5afhhank"))))
8241 (build-system python-build-system)
8242 (arguments
8243 '(#:tests? #f)) ; FIXME: Tests can't find zope.event.
8244 (propagated-inputs
8245 `(("python-zope-event" ,python-zope-event)
8246 ("python-zope-exceptions", python-zope-exceptions)
8247 ("python-zope-interface" ,python-zope-interface)))
8248 (native-inputs
8249 `(("python-zope-testing" ,python-zope-testing)
8250 ("python-coverage" ,python-coverage)
8251 ("python-nose" ,python-nose)))
8252 (home-page "http://pypi.python.org/pypi/zope.schema")
8253 (synopsis "Zope data schemas")
8254 (description "Zope.scheme provides extensions to zope.interface for
8255 defining data schemas.")
8256 (license license:zpl2.1)))
8257
8258 (define-public python2-zope-schema
8259 (package-with-python2 python-zope-schema))
8260
8261 (define-public python-zope-configuration
8262 (package
8263 (name "python-zope-configuration")
8264 (version "4.0.3")
8265 (source (origin
8266 (method url-fetch)
8267 (uri (string-append "https://pypi.python.org/packages/source/z"
8268 "/zope.configuration/zope.configuration-"
8269 version ".tar.gz"))
8270 (sha256
8271 (base32
8272 "1x9dfqypgympnlm25p9m43xh4qv3p7d75vksv9pzqibrb4cggw5n"))))
8273 (build-system python-build-system)
8274 (arguments
8275 '(#:tests? #f)) ; FIXME: Tests can't find zope.interface.
8276 (propagated-inputs
8277 `(("python-zope-i18nmessageid" ,python-zope-i18nmessageid)
8278 ("python-zope-schema" ,python-zope-schema)))
8279 (home-page "http://pypi.python.org/pypi/zope.configuration")
8280 (synopsis "Zope Configuration Markup Language")
8281 (description "Zope.configuration implements ZCML, the Zope Configuration
8282 Markup Language.")
8283 (license license:zpl2.1)))
8284
8285 (define-public python2-zope-configuration
8286 (package-with-python2 python-zope-configuration))
8287
8288 (define-public python-zope-proxy
8289 (package
8290 (name "python-zope-proxy")
8291 (version "4.1.6")
8292 (source
8293 (origin
8294 (method url-fetch)
8295 (uri (string-append "https://pypi.python.org/packages/source/z"
8296 "/zope.proxy/zope.proxy-" version ".tar.gz"))
8297 (sha256
8298 (base32
8299 "0pqwwmvm1prhwv1ziv9lp8iirz7xkwb6n2kyj36p2h0ppyyhjnm4"))))
8300 (build-system python-build-system)
8301 (arguments
8302 '(#:tests? #f)) ; FIXME: Tests can't find zope.interface.
8303 (propagated-inputs
8304 `(("python-zope-interface" ,python-zope-interface)))
8305 (home-page "http://pypi.python.org/pypi/zope.proxy")
8306 (synopsis "Generic, transparent proxies")
8307 (description "Zope.proxy provides generic, transparent proxies for Python.
8308 Proxies are special objects which serve as mostly-transparent wrappers around
8309 another object, intervening in the apparent behavior of the wrapped object
8310 only when necessary to apply the policy (e.g., access checking, location
8311 brokering, etc.) for which the proxy is responsible.")
8312 (license license:zpl2.1)))
8313
8314 (define-public python2-zope-proxy
8315 (package-with-python2 python-zope-proxy))
8316
8317 (define-public python-zope-location
8318 (package
8319 (name "python-zope-location")
8320 (version "4.0.3")
8321 (source
8322 (origin
8323 (method url-fetch)
8324 (uri (string-append "https://pypi.python.org/packages/source/z"
8325 "/zope.location/zope.location-" version ".tar.gz"))
8326 (sha256
8327 (base32
8328 "1nj9da4ksiyv3h8n2vpzwd0pb03mdsh7zy87hfpx72b6p2zcwg74"))))
8329 (build-system python-build-system)
8330 (arguments
8331 '(#:tests? #f)) ; FIXME: Tests can't find zope.interface.
8332 (propagated-inputs
8333 `(("python-zope-proxy" ,python-zope-proxy)
8334 ("python-zope-schema" ,python-zope-schema)))
8335 (home-page "http://pypi.python.org/pypi/zope.location/")
8336 (synopsis "Zope location library")
8337 (description "Zope.location implements the concept of \"locations\" in
8338 Zope3, which are are special objects that have a structural location.")
8339 (license license:zpl2.1)))
8340
8341 (define-public python2-zope-location
8342 (package-with-python2 python-zope-location))
8343
8344 (define-public python-zope-security
8345 (package
8346 (name "python-zope-security")
8347 (version "4.0.3")
8348 (source
8349 (origin
8350 (method url-fetch)
8351 (uri (string-append "https://pypi.python.org/packages/source/z"
8352 "/zope.security/zope.security-" version ".tar.gz"))
8353 (sha256
8354 (base32
8355 "14zmf684amc0x32kq05yxnhfqd1cmyhafkw05gn81rn90zjv6ssy"))))
8356 (build-system python-build-system)
8357 (arguments
8358 '(#:tests? #f)) ; FIXME: Tests can't find zope.testrunner.
8359 (propagated-inputs
8360 `(("python-zope-i18nmessageid" ,python-zope-i18nmessageid)
8361 ("python-zope-proxy" ,python-zope-proxy)
8362 ("python-zope-schema" ,python-zope-schema)))
8363 (native-inputs
8364 `(("python-six" ,python-six)
8365 ("python-zope-component" ,python-zope-component)
8366 ("python-zope-configuration" ,python-zope-configuration)
8367 ("python-zope-location" ,python-zope-location)
8368 ("python-zope-testrunner" ,python-zope-testrunner)
8369 ("python-zope-testing" ,python-zope-testing)))
8370 (home-page "http://pypi.python.org/pypi/zope.security")
8371 (synopsis "Zope security framework")
8372 (description "Zope.security provides a generic mechanism to implement
8373 security policies on Python objects.")
8374 (license license:zpl2.1)))
8375
8376 (define-public python2-zope-security
8377 (let ((zope-security (package-with-python2 python-zope-security)))
8378 (package (inherit zope-security)
8379 (propagated-inputs
8380 `(("python2-zope-testrunner" ,python2-zope-testrunner)
8381 ,@(alist-delete
8382 "python-zope-testrunner"
8383 (package-propagated-inputs zope-security)))))))
8384
8385 (define-public python-zope-component
8386 (package
8387 (name "python-zope-component")
8388 (version "4.3.0")
8389 (source
8390 (origin
8391 (method url-fetch)
8392 (uri (pypi-uri "zope.component" version))
8393 (sha256
8394 (base32
8395 "1hlvzwj1kcfz1qms1dzhwsshpsf38z9clmyksb1gh41n8k3kchdv"))))
8396 (build-system python-build-system)
8397 (arguments
8398 ;; Skip tests due to circular dependency with python-zope-security.
8399 '(#:tests? #f))
8400 (native-inputs
8401 `(("python-zope-testing" ,python-zope-testing)))
8402 (propagated-inputs
8403 `(("python-zope-event" ,python-zope-event)
8404 ("python-zope-interface" ,python-zope-interface)
8405 ("python-zope-i18nmessageid" ,python-zope-i18nmessageid)
8406 ("python-zope-configuration" ,python-zope-configuration)))
8407 (home-page "https://github.com/zopefoundation/zope.component")
8408 (synopsis "Zope Component Architecture")
8409 (description "Zope.component represents the core of the Zope Component
8410 Architecture. Together with the zope.interface package, it provides
8411 facilities for defining, registering and looking up components.")
8412 (license license:zpl2.1)))
8413
8414 (define-public python2-zope-component
8415 (package-with-python2 python-zope-component))
8416
8417 (define-public python-pythondialog
8418 (package
8419 (name "python-pythondialog")
8420 (version "3.4.0")
8421 (source
8422 (origin
8423 (method url-fetch)
8424 (uri (pypi-uri "pythondialog" version))
8425 (sha256
8426 (base32
8427 "1728ghsran47jczn9bhlnkvk5bvqmmbihabgif5h705b84r1272c"))))
8428 (build-system python-build-system)
8429 (arguments
8430 `(#:phases
8431 (modify-phases %standard-phases
8432 (add-after 'unpack 'patch-path
8433 (lambda* (#:key inputs #:allow-other-keys)
8434 (let* ((dialog (assoc-ref inputs "dialog")))
8435 ;; Since this library really wants to grovel the search path, we
8436 ;; must hardcode dialog's store path into it.
8437 (substitute* "dialog.py"
8438 (("os.getenv\\(\"PATH\", \":/bin:/usr/bin\"\\)")
8439 (string-append "os.getenv(\"PATH\") + \":" dialog "/bin\"")))
8440 #t))))
8441 #:tests? #f)) ; no test suite
8442 (propagated-inputs
8443 `(("dialog" ,dialog)))
8444 (home-page "http://pythondialog.sourceforge.net/")
8445 (synopsis "Python interface to the UNIX dialog utility")
8446 (description "A Python wrapper for the dialog utility. Its purpose is to
8447 provide an easy to use, pythonic and comprehensive Python interface to dialog.
8448 This allows one to make simple text-mode user interfaces on Unix-like systems")
8449 (license license:lgpl2.1)
8450 (properties `((python2-variant . ,(delay python2-pythondialog))))))
8451
8452 (define-public python2-pythondialog
8453 (let ((base (package-with-python2 (strip-python2-variant python-pythondialog))))
8454 (package
8455 (inherit base)
8456 (version (package-version python-pythondialog))
8457 (source (origin
8458 (method url-fetch)
8459 (uri (pypi-uri "python2-pythondialog" version))
8460 (sha256
8461 (base32
8462 "0d8k7lxk50imdyx85lv8j98i4c93a71iwpapnl1506rpkbm9qvd9")))))))
8463
8464 (define-public python-pyrfc3339
8465 (package
8466 (name "python-pyrfc3339")
8467 (version "1.0")
8468 (source
8469 (origin
8470 (method url-fetch)
8471 (uri (pypi-uri "pyRFC3339" version))
8472 (sha256
8473 (base32
8474 "0dgm4l9y8jiax5cp6yxjd2i27cq8h33sh81n1wfbmnmqb32cdywd"))))
8475 (build-system python-build-system)
8476 (propagated-inputs
8477 `(("python-pytz" ,python-pytz)))
8478 (native-inputs
8479 `(("python-nose" ,python-nose)))
8480 (home-page "https://github.com/kurtraschke/pyRFC3339")
8481 (synopsis "Python timestamp library")
8482 (description "Python library for generating and parsing RFC 3339-compliant
8483 timestamps.")
8484 (license license:expat)))
8485
8486 (define-public python2-pyrfc3339
8487 (package-with-python2 python-pyrfc3339))
8488
8489 (define-public python-werkzeug
8490 (package
8491 (name "python-werkzeug")
8492 (version "0.11.15")
8493 (source
8494 (origin
8495 (method url-fetch)
8496 (uri (pypi-uri "Werkzeug" version))
8497 (sha256
8498 (base32
8499 "1h5wycw8yj7q0grqsjnsqflmrlsdagvl2j4dsgdncci6mjc7fpa5"))))
8500 (build-system python-build-system)
8501 (native-inputs
8502 `(("python-pytest" ,python-pytest)))
8503 (home-page "http://werkzeug.pocoo.org/")
8504 (synopsis "Utilities for WSGI applications")
8505 (description "One of the most advanced WSGI utility modules. It includes a
8506 powerful debugger, full-featured request and response objects, HTTP utilities to
8507 handle entity tags, cache control headers, HTTP dates, cookie handling, file
8508 uploads, a powerful URL routing system and a bunch of community-contributed
8509 addon modules.")
8510 (license license:x11)))
8511
8512 (define-public python2-werkzeug
8513 (package-with-python2 python-werkzeug))
8514
8515 (define-public python-configobj
8516 (package
8517 (name "python-configobj")
8518 (version "5.0.6")
8519 (source (origin
8520 (method url-fetch)
8521 (uri (string-append
8522 "https://pypi.python.org/packages/source/c/configobj/"
8523 "configobj-" version ".tar.gz"))
8524 (sha256
8525 (base32
8526 "00h9rcmws03xvdlfni11yb60bz3kxfvsj6dg6nrpzj71f03nbxd2"))
8527 ;; Patch setup.py so it looks for python-setuptools, which is
8528 ;; required to parse the keyword 'install_requires' in setup.py.
8529 (patches (search-patches "python-configobj-setuptools.patch"))))
8530 (build-system python-build-system)
8531 (propagated-inputs
8532 `(("python-six" ,python-six)))
8533 (synopsis "Config file reading, writing and validation")
8534 (description "ConfigObj is a simple but powerful config file reader and
8535 writer: an ini file round tripper. Its main feature is that it is very easy to
8536 use, with a straightforward programmer’s interface and a simple syntax for
8537 config files.")
8538 (home-page "https://github.com/DiffSK/configobj")
8539 (license license:bsd-3)))
8540
8541 (define-public python2-configobj
8542 (package-with-python2 python-configobj))
8543
8544 (define-public python-configargparse
8545 (package
8546 (name "python-configargparse")
8547 (version "0.10.0")
8548 (source (origin
8549 (method url-fetch)
8550 (uri (string-append
8551 "https://pypi.python.org/packages/source/C/ConfigArgParse/"
8552 "ConfigArgParse-" version ".tar.gz"))
8553 (sha256
8554 (base32
8555 "19wh919gbdbzxzpagg52q3lm62yicm95ddlcx77dyjc1slyshl1v"))))
8556 (build-system python-build-system)
8557 (arguments
8558 ;; FIXME: Bug in test suite filed upstream:
8559 ;; https://github.com/bw2/ConfigArgParse/issues/32
8560 '(#:tests? #f))
8561 (synopsis "Replacement for argparse")
8562 (description "A drop-in replacement for argparse that allows options to also
8563 be set via config files and/or environment variables.")
8564 (home-page "https://github.com/bw2/ConfigArgParse")
8565 (license license:expat)))
8566
8567 (define-public python2-configargparse
8568 (package-with-python2 python-configargparse))
8569
8570 (define-public python-ndg-httpsclient
8571 (package
8572 (name "python-ndg-httpsclient")
8573 (version "0.4.2")
8574 (source (origin
8575 (method url-fetch)
8576 (uri (pypi-uri "ndg_httpsclient" version))
8577 (sha256
8578 (base32
8579 "1b5qirv46v4dpnmfqviwq42mdwfcby4dxmz0i41wad2337pqf2aq"))))
8580 (build-system python-build-system)
8581 (arguments
8582 '(;; The tests appear to require networking.
8583 #:tests? #f))
8584 (propagated-inputs
8585 `(("python-pyopenssl" ,python-pyopenssl)))
8586 (synopsis "HTTPS support for Python's httplib and urllib2")
8587 (description "This is a HTTPS client implementation for httplib and urllib2
8588 based on PyOpenSSL. PyOpenSSL provides a more fully featured SSL implementation
8589 over the default provided with Python and importantly enables full verification
8590 of the SSL peer.")
8591 (home-page "https://github.com/cedadev/ndg_httpsclient/")
8592 (license license:bsd-3)))
8593
8594 ;; python2-openssl requires special care, so package-with-python2 is
8595 ;; insufficient.
8596 (define-public python2-ndg-httpsclient
8597 (package (inherit python-ndg-httpsclient)
8598 (name "python2-ndg-httpsclient")
8599 (arguments `(#:python ,python-2))
8600 (propagated-inputs
8601 `(("python2-pyopenssl" ,python2-pyopenssl)))))
8602
8603 (define-public python-contextlib2
8604 (package
8605 (name "python-contextlib2")
8606 (version "0.4.0")
8607 (source
8608 (origin
8609 (method url-fetch)
8610 (uri (pypi-uri "contextlib2" version))
8611 (sha256
8612 (base32
8613 "0cmp131dlh0d0zvw0aza1zd13glvngzk8lb4avks0hm7yxwdr9am"))))
8614 (build-system python-build-system)
8615 (arguments
8616 `(#:phases
8617 (modify-phases %standard-phases
8618 (replace 'check
8619 (lambda _ (zero?
8620 (system*
8621 "python" "test_contextlib2.py" "-v")))))))
8622 (home-page "http://contextlib2.readthedocs.org/")
8623 (synopsis "Tools for decorators and context managers")
8624 (description "This module is primarily a backport of the Python
8625 3.2 contextlib to earlier Python versions. Like contextlib, it
8626 provides utilities for common tasks involving decorators and context
8627 managers. It also contains additional features that are not part of
8628 the standard library.")
8629 (license license:psfl)))
8630
8631 (define-public python2-contextlib2
8632 (package-with-python2 python-contextlib2))
8633
8634 (define-public python-texttable
8635 (package
8636 (name "python-texttable")
8637 (version "0.8.7")
8638 (source
8639 (origin
8640 (method url-fetch)
8641 (uri (pypi-uri "texttable" version))
8642 (sha256
8643 (base32
8644 "1liiiydgkg37i46a418aw19fyf6z3ds51wdwwpyjbs12x0phhf4a"))))
8645 (build-system python-build-system)
8646 (arguments '(#:tests? #f)) ; no tests
8647 (home-page "https://github.com/foutaise/texttable/")
8648 (synopsis "Python module for creating simple ASCII tables")
8649 (description "Texttable is a Python module for creating simple ASCII
8650 tables.")
8651 (license license:lgpl2.1+)))
8652
8653 (define-public python2-texttable
8654 (package-with-python2 python-texttable))
8655
8656 (define-public python-websocket-client
8657 (package
8658 (name "python-websocket-client")
8659 (version "0.37.0")
8660 (source
8661 (origin
8662 (method url-fetch)
8663 (uri (pypi-uri "websocket_client" version))
8664 (sha256
8665 (base32
8666 "0h9glp1jll3z76ly3kg08aqgxqk0a68p4zi9yn50353bh5nj92v7"))))
8667 (build-system python-build-system)
8668 (propagated-inputs
8669 `(("python-six" ,python-six)))
8670 (home-page "https://github.com/liris/websocket-client")
8671 (synopsis "WebSocket client for Python")
8672 (description "The Websocket-client module provides the low level APIs for
8673 WebSocket usage in Python programs.")
8674 (license license:lgpl2.1+)))
8675
8676 (define-public python2-websocket-client
8677 (package-with-python2 python-websocket-client))
8678
8679 (define-public python-atomicwrites
8680 (package
8681 (name "python-atomicwrites")
8682 (version "1.1.5")
8683 (source (origin
8684 (method url-fetch)
8685 (uri (pypi-uri "atomicwrites" version))
8686 (sha256
8687 (base32
8688 "11bm90fwm2avvf4f3ib8g925w7jr4m11vcsinn1bi6ns4bm32214"))))
8689 (build-system python-build-system)
8690 (synopsis "Atomic file writes in Python")
8691 (description "Library for atomic file writes using platform dependent tools
8692 for atomic file system operations.")
8693 (home-page "https://github.com/untitaker/python-atomicwrites")
8694 (license license:expat)))
8695
8696 (define-public python2-atomicwrites
8697 (package-with-python2 python-atomicwrites))
8698
8699 (define-public python-requests-toolbelt
8700 (package
8701 (name "python-requests-toolbelt")
8702 (version "0.6.2")
8703 (source (origin
8704 (method url-fetch)
8705 (uri (string-append
8706 "https://pypi.python.org/packages/"
8707 "e1/a4/a94c037bc72ad70441aff1403d3243510d2542ddca7759faaeffeb11aefe/"
8708 "requests-toolbelt-" version ".tar.gz"))
8709 (sha256
8710 (base32
8711 "15q9nrgp85nqlr4kdz1zvj8z2npafi2sr12y7fqgxbkq28j1aci6"))))
8712 (build-system python-build-system)
8713 (native-inputs
8714 `(("python-betamax" ,python-betamax)
8715 ("python-mock" ,python-mock)
8716 ("python-pytest" ,python-pytest)))
8717 (propagated-inputs
8718 `(("python-requests" ,python-requests)))
8719 (synopsis "Extensions to python-requests")
8720 (description "This is a toolbelt of useful classes and functions to be used
8721 with python-requests.")
8722 (home-page "https://github.com/sigmavirus24/requests-toolbelt")
8723 (license license:asl2.0)))
8724
8725 (define-public python-click-threading
8726 (package
8727 (name "python-click-threading")
8728 (version "0.2.0")
8729 (source (origin
8730 (method url-fetch)
8731 (uri (string-append
8732 "https://pypi.python.org/packages/"
8733 "fe/b7/e7f609d18a2a351cb71616adcf54df1acd82f83cb9b5936935a4d20e2c23/"
8734 "click-threading-" version ".tar.gz"))
8735 (sha256
8736 (base32
8737 "18bcqikxwb3drb8rf60cclxkxw52521b38ax3byah6j8cn8y9p4j"))))
8738 (build-system python-build-system)
8739 (propagated-inputs
8740 `(("python-click" ,python-click)))
8741 (synopsis "Utilities for multithreading in Click")
8742 (description "This package provides utilities for multithreading in Click
8743 applications.")
8744 (home-page "https://github.com/click-contrib/click-threading")
8745 (license license:expat)))
8746
8747 (define-public python-click-log
8748 (package
8749 (name "python-click-log")
8750 (version "0.1.8")
8751 (source (origin
8752 (method url-fetch)
8753 (uri (pypi-uri "click-log" version))
8754 (sha256
8755 (base32
8756 "14ikfjfgnzf21mjniq9lfk2igzykgzfvwwrk85nw2b9fq44109sp"))))
8757 (build-system python-build-system)
8758 (propagated-inputs
8759 `(("python-click" ,python-click)))
8760 (synopsis "Logging for click applications")
8761 (description "This package provides a Python library for logging Click
8762 applications.")
8763 (home-page "https://github.com/click-contrib/click-log")
8764 (license license:expat)))
8765
8766 (define-public python-apipkg
8767 (package
8768 (name "python-apipkg")
8769 (version "1.4")
8770 (source (origin
8771 (method url-fetch)
8772 (uri (pypi-uri "apipkg" version))
8773 (sha256
8774 (base32
8775 "1iks5701qnp3dlr3q1d9qm68y2plp2m029irhpz92a44psfkjf1f"))))
8776 (build-system python-build-system)
8777 (native-inputs
8778 `(("python-pytest" ,python-pytest)))
8779 (synopsis "Namespace control and lazy-import mechanism")
8780 (description "With apipkg you can control the exported namespace of a Python
8781 package and greatly reduce the number of imports for your users. It is a small
8782 pure Python module that works on virtually all Python versions.")
8783 (home-page "https://bitbucket.org/hpk42/apipkg")
8784 (license license:expat)))
8785
8786 (define-public python2-apipkg
8787 (package-with-python2 python-apipkg))
8788
8789 (define-public python-execnet
8790 (package
8791 (name "python-execnet")
8792 (version "1.4.1")
8793 (source (origin
8794 (method url-fetch)
8795 (uri (pypi-uri "execnet" version))
8796 (sha256
8797 (base32
8798 "1rpk1vyclhg911p3hql0m0nrpq7q7mysxnaaw6vs29cpa6kx8vgn"))))
8799 (build-system python-build-system)
8800 (arguments
8801 `(;; 2 failed, 275 passed, 670 skipped, 4 xfailed
8802 ;; The two test failures are caused by the lack of an `ssh` executable.
8803 ;; The test suite can be run with pytest after the 'install' phase.
8804 #:tests? #f))
8805 (native-inputs
8806 `(("python-pytest" ,python-pytest)
8807 ("python-setuptools-scm" ,python-setuptools-scm)))
8808 (propagated-inputs
8809 `(("python-apipkg" ,python-apipkg)))
8810 (synopsis "Rapid multi-Python deployment")
8811 (description "Execnet provides a share-nothing model with
8812 channel-send/receive communication for distributing execution across many
8813 Python interpreters across version, platform and network barriers. It has a
8814 minimal and fast API targeting the following uses:
8815 @enumerate
8816 @item distribute tasks to (many) local or remote CPUs
8817 @item write and deploy hybrid multi-process applications
8818 @item write scripts to administer multiple environments
8819 @end enumerate")
8820 (home-page "http://codespeak.net/execnet/")
8821 (license license:expat)))
8822
8823 (define-public python2-execnet
8824 (package-with-python2 python-execnet))
8825
8826 (define-public python-trollius-redis
8827 (package
8828 (name "python-trollius-redis")
8829 (version "0.1.4")
8830 (source
8831 (origin
8832 (method url-fetch)
8833 (uri (pypi-uri "trollius_redis" version))
8834 (sha256
8835 (base32
8836 "0k3vypszmgmaipgw9xscvgm79h2zd6p6ci8gdp5sxl6g5kbqr9fy"))))
8837 (build-system python-build-system)
8838 ;; TODO: Tests require packaging 'hiredis'.
8839 (arguments '(#:tests? #f))
8840 (home-page "https://github.com/benjolitz/trollius-redis")
8841 (synopsis "Port of asyncio-redis to trollius")
8842 (description "@code{trollius-redis} is a Redis client for Python
8843 trollius. It is an asynchronious IO (PEP 3156) implementation of the
8844 Redis protocol.")
8845 (license license:bsd-2)))
8846
8847 (define-public python2-trollius-redis
8848 (package-with-python2 python-trollius-redis))
8849
8850 ;;; The software provided by this package was integrated into pytest 2.8.
8851 (define-public python-pytest-cache
8852 (package
8853 (name "python-pytest-cache")
8854 (version "1.0")
8855 (source (origin
8856 (method url-fetch)
8857 (uri (pypi-uri "pytest-cache" version))
8858 (sha256
8859 (base32
8860 "1a873fihw4rhshc722j4h6j7g3nj7xpgsna9hhg3zn6ksknnhx5y"))))
8861 (build-system python-build-system)
8862 (propagated-inputs
8863 `(("python-apipkg" ,python-apipkg)
8864 ("python-execnet" ,python-execnet)
8865 ("python-py" ,python-py)
8866 ("python-pytest" ,python-pytest)))
8867 (synopsis "Py.test plugin with mechanisms for caching across test runs")
8868 (description "The pytest-cache plugin provides tools to rerun failures from
8869 the last py.test invocation.")
8870 (home-page "https://bitbucket.org/hpk42/pytest-cache/")
8871 (license license:expat)))
8872
8873 (define-public python2-pytest-cache
8874 (package-with-python2 python-pytest-cache))
8875
8876 (define-public python-pytest-localserver
8877 (package
8878 (name "python-pytest-localserver")
8879 (version "0.3.5")
8880 (source (origin
8881 (method url-fetch)
8882 (uri (pypi-uri "pytest-localserver" version))
8883 (sha256
8884 (base32
8885 "0dvqspjr6va55zwmnnc2mmpqc7mm65kxig9ya44x1z8aadzxpa4p"))))
8886 (build-system python-build-system)
8887 (arguments
8888 `(#:phases (modify-phases %standard-phases
8889 (replace 'check
8890 (lambda _
8891 (zero? (system* "py.test" "--genscript=runtests.py"))
8892 (zero? (system* "py.test")))))))
8893 (native-inputs
8894 `(("python-pytest" ,python-pytest)
8895 ("python-requests" ,python-requests)
8896 ("python-six" ,python-six)))
8897 (propagated-inputs
8898 `(("python-werkzeug" ,python-werkzeug)))
8899 (synopsis "Py.test plugin to test server connections locally")
8900 (description "Pytest-localserver is a plugin for the pytest testing
8901 framework which enables you to test server connections locally.")
8902 (home-page "https://pypi.python.org/pypi/pytest-localserver")
8903 (license license:expat)))
8904
8905 (define-public python-wsgi-intercept
8906 (package
8907 (name "python-wsgi-intercept")
8908 (version "1.2.2")
8909 (source (origin
8910 (method url-fetch)
8911 (uri (string-append
8912 "https://pypi.python.org/packages/"
8913 "38/76/ebcbc24d0cb77db34520a3ca6ed1bd43ace17d182bbd8dd7d976f1c176fb/"
8914 "wsgi_intercept-" version ".tar.gz"))
8915 (sha256
8916 (base32
8917 "0kjj2v2dvmnpdd5h5gk9rzz0f54rhjb0yiz3zg65bmp65slfw65d"))))
8918 (build-system python-build-system)
8919 (propagated-inputs
8920 `(("python-six" ,python-six)))
8921 (native-inputs
8922 `(("python-pytest" ,python-pytest)
8923 ("python-httplib2" ,python-httplib2)
8924 ("python-requests" ,python-requests)
8925 ("python-urllib3" ,python-urllib3)))
8926 (synopsis "Puts a WSGI application in place of a real URI for testing")
8927 (description "Wsgi_intercept installs a WSGI application in place of a real
8928 URI for testing. Testing a WSGI application normally involves starting a
8929 server at a local host and port, then pointing your test code to that address.
8930 Instead, this library lets you intercept calls to any specific host/port
8931 combination and redirect them into a WSGI application importable by your test
8932 program. Thus, you can avoid spawning multiple processes or threads to test
8933 your Web app.")
8934 (home-page "https://github.com/cdent/wsgi-intercept")
8935 (license license:expat)))
8936
8937 (define-public python-pytest-xprocess
8938 (package
8939 (name "python-pytest-xprocess")
8940 (version "0.9.1")
8941 (source (origin
8942 (method url-fetch)
8943 (uri (pypi-uri "pytest-xprocess" version))
8944 (sha256
8945 (base32
8946 "17zlql1xqw3ywcgwwbqmw633aly99lab12hm02asr8awvg5603pp"))))
8947 (build-system python-build-system)
8948 (propagated-inputs
8949 `(("python-pytest" ,python-pytest)
8950 ("python-pytest-cache" ,python-pytest-cache)
8951 ("python-psutil" ,python-psutil)))
8952 (synopsis "Pytest plugin to manage external processes across test runs")
8953 (description "Pytest-xprocess is an experimental py.test plugin for managing
8954 processes across test runs.")
8955 (home-page "https://bitbucket.org/pytest-dev/pytest-xprocess")
8956 (license license:expat)))
8957
8958 (define-public python-icalendar
8959 (package
8960 (name "python-icalendar")
8961 (version "3.11.4")
8962 (source (origin
8963 (method url-fetch)
8964 (uri (pypi-uri "icalendar" version))
8965 (sha256
8966 (base32
8967 "0ix3xxykz8hs8mx4f2063djawmd888y3vsl75fbvbfqvg67v35jn"))))
8968 (build-system python-build-system)
8969 (propagated-inputs
8970 `(("python-dateutil" ,python-dateutil)
8971 ("python-pytz" ,python-pytz)))
8972 (synopsis "Python library for parsing iCalendar files")
8973 (description "The icalendar package is a parser/generator of iCalendar
8974 files for use with Python.")
8975 (home-page "https://github.com/collective/icalendar")
8976 (license license:bsd-2)))
8977
8978 (define-public python-sphinxcontrib-newsfeed
8979 (package
8980 (name "python-sphinxcontrib-newsfeed")
8981 (version "0.1.4")
8982 (source (origin
8983 (method url-fetch)
8984 (uri (pypi-uri "sphinxcontrib-newsfeed" version))
8985 (sha256
8986 (base32
8987 "1d7gam3mn8v4in4p16yn3v10vps7nnaz6ilw99j4klij39dqd37p"))))
8988 (arguments '(#:tests? #f)) ; No tests.
8989 (build-system python-build-system)
8990 (propagated-inputs
8991 `(("python-sphinx" ,python-sphinx)))
8992 (synopsis "News Feed extension for Sphinx")
8993 (description "Sphinxcontrib-newsfeed is an extension for adding a simple
8994 Blog, News or Announcements section to a Sphinx website.")
8995 (home-page "https://bitbucket.org/prometheus/sphinxcontrib-newsfeed")
8996 (license license:bsd-2)))
8997
8998 (define-public python-args
8999 (package
9000 (name "python-args")
9001 (version "0.1.0")
9002 (source (origin
9003 (method url-fetch)
9004 (uri (pypi-uri "args" version))
9005 (sha256
9006 (base32
9007 "057qzi46h5dmxdqknsbrssn78lmqjlnm624iqdhrnpk26zcbi1d7"))))
9008 (build-system python-build-system)
9009 (home-page "https://github.com/kennethreitz/args")
9010 (synopsis "Command-line argument parser")
9011 (description
9012 "This library provides a Python module to parse command-line arguments.")
9013 (license license:bsd-3)))
9014
9015 (define-public python2-args
9016 (package-with-python2 python-args))
9017
9018 (define-public python-clint
9019 (package
9020 (name "python-clint")
9021 (version "0.5.1")
9022 (source (origin
9023 (method url-fetch)
9024 (uri (pypi-uri "clint" version))
9025 (sha256
9026 (base32
9027 "1an5lkkqk1zha47198p42ji3m94xmzx1a03dn7866m87n4r4q8h5"))))
9028 (build-system python-build-system)
9029 (arguments
9030 '(#:phases
9031 (modify-phases %standard-phases
9032 (replace 'check
9033 (lambda _
9034 (zero? (system* "py.test" "-v")))))))
9035 (native-inputs
9036 `(("python-pytest" ,python-pytest)))
9037 (propagated-inputs
9038 `(("python-args" ,python-args)))
9039 (home-page "https://github.com/kennethreitz/clint")
9040 (synopsis "Command-line interface tools")
9041 (description
9042 "Clint is a Python module filled with a set of tools for developing
9043 command-line applications, including tools for colored and indented
9044 output, progress bar display, and pipes.")
9045 (license license:isc)))
9046
9047 (define-public python2-clint
9048 (package-with-python2 python-clint))
9049
9050 (define-public python-astor
9051 (package
9052 (name "python-astor")
9053 (version "0.5")
9054 (source (origin
9055 (method url-fetch)
9056 (uri (pypi-uri "astor" version))
9057 (sha256
9058 (base32
9059 "1fdafq5hkis1fxqlmhw0sn44zp2ar46nxhbc22cvwg7hsd8z5gsa"))))
9060 (build-system python-build-system)
9061 (home-page "https://github.com/berkerpeksag/astor")
9062 (synopsis "Read and write Python ASTs")
9063 (description
9064 "Astor is designed to allow easy manipulation of Python source via the
9065 Abstract Syntax Tree.")
9066 (license license:bsd-3)))
9067
9068 (define-public python2-astor
9069 (package-with-python2 python-astor))
9070
9071 (define-public python-rply
9072 (package
9073 (name "python-rply")
9074 (version "0.7.4")
9075 (source (origin
9076 (method url-fetch)
9077 (uri (pypi-uri "rply" version))
9078 (sha256
9079 (base32
9080 "12rp1d9ba7nvd5rhaxi6xzx1rm67r1k1ylsrkzhpwnphqpb06cvj"))))
9081 (build-system python-build-system)
9082 (propagated-inputs
9083 `(("python-appdirs" ,python-appdirs)))
9084 (home-page "https://github.com/alex/rply")
9085 (synopsis "Parser generator for Python")
9086 (description
9087 "This package provides a pure Python based parser generator, that also
9088 works with RPython. It is a more-or-less direct port of David Bazzley's PLY,
9089 with a new public API, and RPython support.")
9090 (license license:bsd-3)))
9091
9092 (define-public python2-rply
9093 (package-with-python2 python-rply))
9094
9095 (define-public python-hy
9096 (package
9097 (name "python-hy")
9098 (version "0.11.1")
9099 (source (origin
9100 (method url-fetch)
9101 (uri (pypi-uri "hy" version))
9102 (sha256
9103 (base32
9104 "1msqv747iz12r73mz4qvsmlwkddwjvrahlrk7ysrcz07h7dsscxs"))))
9105 (build-system python-build-system)
9106 (arguments
9107 '(#:phases
9108 (modify-phases %standard-phases
9109 (replace 'check
9110 (lambda _
9111 ;; Tests require write access to HOME.
9112 (setenv "HOME" "/tmp")
9113 (zero? (system* "nosetests")))))))
9114 (native-inputs
9115 `(("python-coverage" ,python-coverage)
9116 ("python-nose" ,python-nose)))
9117 (propagated-inputs
9118 `(("python-astor" ,python-astor)
9119 ("python-clint" ,python-clint)
9120 ("python-rply" ,python-rply)))
9121 (home-page "http://hylang.org/")
9122 (synopsis "Lisp frontend to Python")
9123 (description
9124 "Hy is a dialect of Lisp that's embedded in Python. Since Hy transforms
9125 its Lisp code into the Python Abstract Syntax Tree, you have the whole world of
9126 Python at your fingertips, in Lisp form.")
9127 (license license:expat)))
9128
9129 (define-public python2-hy
9130 (package-with-python2 python-hy))
9131
9132 (define-public python-rauth
9133 (package
9134 (name "python-rauth")
9135 (version "0.7.3")
9136 (source
9137 (origin
9138 (method url-fetch)
9139 (uri (pypi-uri "rauth" version))
9140 (sha256
9141 (base32
9142 "02kv8w8l98ky223avyq7vw7x1f2ya9chrm59r77ylq45qb0xnk2j"))))
9143 (build-system python-build-system)
9144 (arguments
9145 `(#:test-target "check"))
9146 (propagated-inputs
9147 `(("python-requests" ,python-requests)))
9148 (home-page "https://github.com/litl/rauth")
9149 (synopsis "Python library for OAuth 1.0/a, 2.0, and Ofly")
9150 (description
9151 "Rauth is a Python library for OAuth 1.0/a, 2.0, and Ofly. It also
9152 provides service wrappers for convenient connection initialization and
9153 authenticated session objects providing things like keep-alive.")
9154 (license license:expat)
9155 (properties `((python2-variant . ,(delay python2-rauth))))))
9156
9157 (define-public python2-rauth
9158 (let ((base (package-with-python2 (strip-python2-variant python-rauth))))
9159 (package
9160 (inherit base)
9161 (native-inputs `(("python2-unittest2" ,python2-unittest2)
9162 ,@(package-native-inputs base))))))
9163
9164 (define-public python2-functools32
9165 (package
9166 (name "python2-functools32")
9167 (version "3.2.3-2")
9168 (source
9169 (origin
9170 (method url-fetch)
9171 (uri (pypi-uri "functools32" version))
9172 (sha256
9173 (base32
9174 "0v8ya0b58x47wp216n1zamimv4iw57cxz3xxhzix52jkw3xks9gn"))))
9175 (build-system python-build-system)
9176 (arguments
9177 `(#:python ,python-2
9178 #:tests? #f)) ; no test target
9179 (home-page "https://github.com/MiCHiLU/python-functools32")
9180 (synopsis
9181 "Backport of the functools module from Python 3.2.3")
9182 (description
9183 "This package is a backport of the @code{functools} module from Python
9184 3.2.3 for use with older versions of Python and PyPy.")
9185 (license license:expat)))
9186
9187 (define-public python2-subprocess32
9188 (package
9189 (name "python2-subprocess32")
9190 (version "3.2.7")
9191 (source (origin
9192 (method url-fetch)
9193 (uri (pypi-uri "subprocess32" version))
9194 (sha256
9195 (base32
9196 "14350dhhlhyz5gqzi3lihn9m6lvskx5mcb20srx1kgsk9i50li8y"))
9197 (patches
9198 (search-patches "python2-subprocess32-disable-input-test.patch"))))
9199 (build-system python-build-system)
9200 (arguments
9201 `(#:python ,python-2
9202 #:phases
9203 (modify-phases %standard-phases
9204 (add-after 'unpack 'patch-/bin/sh
9205 (lambda _
9206 (substitute* '("subprocess32.py"
9207 "test_subprocess32.py")
9208 (("/bin/sh") (which "sh")))
9209 #t))
9210 (delete 'check)
9211 (add-after 'install 'check
9212 (lambda* (#:key inputs outputs #:allow-other-keys)
9213 ;; For some reason this package fails to import
9214 ;; _posixsubprocess.so when PYTHONPATH is set to the build
9215 ;; directory. Running tests after install is easier.
9216 (add-installed-pythonpath inputs outputs)
9217 (zero? (system* "python" "test_subprocess32.py")))))))
9218 (home-page "https://github.com/google/python-subprocess32")
9219 (synopsis "Backport of the subprocess module from Python 3.2")
9220 (description
9221 "This is a backport of the @code{subprocess} standard library module
9222 from Python 3.2 and 3.3 for use on Python 2. It includes bugfixes and some
9223 new features. On POSIX systems it is guaranteed to be reliable when used
9224 in threaded applications. It includes timeout support from Python 3.3 but
9225 otherwise matches 3.2’s API.")
9226 (license license:psfl)))
9227
9228 (define-public python2-futures
9229 (package
9230 (name "python2-futures")
9231 (version "3.0.5")
9232 (source
9233 (origin
9234 (method url-fetch)
9235 (uri (pypi-uri "futures" version))
9236 (sha256
9237 (base32
9238 "1pw1z4329xvlabdpwqa6b7v2fxf7hl64m4cgr22ckbym8m8m4hh5"))))
9239 (build-system python-build-system)
9240 (arguments `(#:python ,python-2))
9241 (home-page "https://github.com/agronholm/pythonfutures")
9242 (synopsis
9243 "Backport of the concurrent.futures package from Python 3.2")
9244 (description
9245 "The concurrent.futures module provides a high-level interface for
9246 asynchronously executing callables. This package backports the
9247 concurrent.futures package from Python 3.2")
9248 (license license:bsd-3)))
9249
9250 (define-public python-promise
9251 (package
9252 (name "python-promise")
9253 (version "0.4.2")
9254 (source
9255 (origin
9256 (method url-fetch)
9257 (uri (pypi-uri "promise" version))
9258 (sha256
9259 (base32
9260 "1k19ms8l3d5jzjh557rgkxb5sg4mqgfc315rn4hx1z3n8qq6lr3h"))))
9261 (build-system python-build-system)
9262 ;; Tests wants python-futures, which is a python2 only program, and
9263 ;; can't be found by python-promise at test time.
9264 (arguments `(#:tests? #f))
9265 (home-page "https://github.com/syrusakbary/promise")
9266 (synopsis "Promises/A+ implementation for Python")
9267 (description
9268 "Promises/A+ implementation for Python")
9269 (properties `((python2-variant . ,(delay python2-promise))))
9270 (license license:expat)))
9271
9272 (define-public python2-promise
9273 (let ((promise (package-with-python2
9274 (strip-python2-variant python-promise))))
9275 (package (inherit promise)
9276 (arguments (substitute-keyword-arguments (package-arguments promise)
9277 ((#:tests? _) #t)))
9278 (native-inputs
9279 `(("python2-futures" ,python2-futures)
9280 ("python2-pytest" ,python2-pytest)
9281 ,@(package-native-inputs promise))))))
9282
9283 (define-public python-urllib3
9284 (package
9285 (name "python-urllib3")
9286 (version "1.18.1")
9287 (source
9288 (origin
9289 (method url-fetch)
9290 (uri (pypi-uri "urllib3" version))
9291 (sha256
9292 (base32
9293 "1wb8aqnq53vzh2amrv8kc66f3h6fx217y0q62y6n30a64p2yqmam"))))
9294 (build-system python-build-system)
9295 (arguments `(#:tests? #f))
9296 (native-inputs
9297 `(;; some packages for tests
9298 ("python-nose" ,python-nose)
9299 ("python-mock" ,python-mock)
9300 ("python-tornado" ,python-tornado)))
9301 (propagated-inputs
9302 `(;; extra packages for https security
9303 ("python-certifi" ,python-certifi)
9304 ("python-ndg-httpsclient" ,python-ndg-httpsclient)
9305 ("python-pyasn1" ,python-pyasn1)
9306 ("python-pyopenssl" ,python-pyopenssl)))
9307 (home-page "https://urllib3.readthedocs.org/")
9308 (synopsis "HTTP library with thread-safe connection pooling")
9309 (description
9310 "Urllib3 supports features left out of urllib and urllib2 libraries. It
9311 can reuse the same socket connection for multiple requests, it can POST files,
9312 supports url redirection and retries, and also gzip and deflate decoding.")
9313 (license license:expat)))
9314
9315 (define-public python2-urllib3
9316 (package-with-python2 python-urllib3))
9317
9318 (define-public python-colorama
9319 (package
9320 (name "python-colorama")
9321 (version "0.3.7")
9322 (source
9323 (origin
9324 (method url-fetch)
9325 (uri (pypi-uri "colorama" version))
9326 (sha256
9327 (base32
9328 "0avqkn6362v7k2kg3afb35g4sfdvixjgy890clip4q174p9whhz0"))))
9329 (build-system python-build-system)
9330 (synopsis "Colored terminal text rendering for Python")
9331 (description "Colorama is a Python library for rendering colored terminal
9332 text.")
9333 (home-page "https://pypi.python.org/pypi/colorama")
9334 (license license:bsd-3)))
9335
9336 (define-public python2-colorama
9337 (package-with-python2 python-colorama))
9338
9339 (define-public python-rsa
9340 (package
9341 (name "python-rsa")
9342 (version "3.4.2")
9343 (source
9344 (origin
9345 (method url-fetch)
9346 (uri (pypi-uri "rsa" version))
9347 (sha256
9348 (base32
9349 "1dcxvszbikgzh99ybdc7jq0zb9wspy2ds8z9mjsqiyv3q884xpr5"))))
9350 (build-system python-build-system)
9351 (propagated-inputs
9352 `(("python-pyasn1" ,python-pyasn1)))
9353 (synopsis "Pure-Python RSA implementation")
9354 (description "Python-RSA is a pure-Python RSA implementation. It supports
9355 encryption and decryption, signing and verifying signatures, and key
9356 generation according to PKCS#1 version 1.5. It can be used as a Python
9357 library as well as on the command line.")
9358 (home-page "http://stuvel.eu/rsa")
9359 (license license:asl2.0)))
9360
9361 (define-public python2-rsa
9362 (package-with-python2 python-rsa))
9363
9364 (define-public python-pluggy
9365 (package
9366 (name "python-pluggy")
9367 (version "0.3.1")
9368 (source
9369 (origin
9370 (method url-fetch)
9371 (uri (pypi-uri "pluggy" version))
9372 (sha256
9373 (base32
9374 "18qfzfm40bgx672lkg8q9x5hdh76n7vax99aank7vh2nw21wg70m"))))
9375 (build-system python-build-system)
9376 (synopsis "Plugin and hook calling mechanism for Python")
9377 (description "Pluggy is an extraction of the plugin manager as used by
9378 Pytest but stripped of Pytest specific details.")
9379 (home-page "https://pypi.python.org/pypi/pluggy")
9380 (license license:expat)))
9381
9382 (define-public python2-pluggy
9383 (package-with-python2 python-pluggy))
9384
9385 (define-public python-tox
9386 (package
9387 (name "python-tox")
9388 (version "2.3.1")
9389 (source
9390 (origin
9391 (method url-fetch)
9392 (uri (pypi-uri "tox" version))
9393 (sha256
9394 (base32
9395 "1vj73ar4rimq3fwy5r2z3jv4g9qbh8rmpmncsc00g0k310acqzxz"))))
9396 (build-system python-build-system)
9397 (arguments
9398 ;; FIXME: Tests require pytest-timeout, which itself requires
9399 ;; pytest>=2.8.0 for installation.
9400 '(#:tests? #f))
9401 (propagated-inputs
9402 `(("python-pluggy" ,python-pluggy) ; >=0.3.0,<0.4.0
9403 ("python-py" ,python-py)
9404 ("python-virtualenv" ,python-virtualenv)))
9405 (native-inputs
9406 `(; FIXME: Missing: ("python-pytest-timeout" ,python-pytest-timeout)
9407 ("python-pytest" ,python-pytest))) ; >= 2.3.5
9408 (home-page "http://tox.testrun.org/")
9409 (synopsis "Virtualenv-based automation of test activities")
9410 (description "Tox is a generic virtualenv management and test command line
9411 tool. It can be used to check that a package installs correctly with
9412 different Python versions and interpreters, or run tests in each type of
9413 supported environment, or act as a frontend to continuous integration
9414 servers.")
9415 (license license:expat)))
9416
9417 (define-public python2-tox
9418 (package-with-python2 python-tox))
9419
9420 (define-public python-jmespath
9421 (package
9422 (name "python-jmespath")
9423 (version "0.9.0")
9424 (source
9425 (origin
9426 (method url-fetch)
9427 (uri (pypi-uri "jmespath" version))
9428 (sha256
9429 (base32
9430 "0g9xvl69y7nr3w7ag4fsp6sm4fqf6vrqjw7504x2hzrrsh3ampq8"))))
9431 (build-system python-build-system)
9432 (native-inputs
9433 `(("python-nose" ,python-nose)))
9434 (synopsis "JSON Matching Expressions")
9435 (description "JMESPath (pronounced “james path”) is a Python library that
9436 allows one to declaratively specify how to extract elements from a JSON
9437 document.")
9438 (home-page "https://github.com/jmespath/jmespath.py")
9439 (license license:expat)))
9440
9441 (define-public python2-jmespath
9442 (package-with-python2 python-jmespath))
9443
9444 (define-public python-botocore
9445 (package
9446 (name "python-botocore")
9447 (version "1.5.26")
9448 (source
9449 (origin
9450 (method url-fetch)
9451 (uri (pypi-uri "botocore" version))
9452 (sha256
9453 (base32
9454 "1b7l48hr88galrrc5q6k21z3sdadzxc87ppzs7k9fz4p1w8bfnvb"))))
9455 (build-system python-build-system)
9456 (arguments
9457 ;; FIXME: Many tests are failing.
9458 '(#:tests? #f))
9459 (propagated-inputs
9460 `(("python-dateutil" ,python-dateutil)
9461 ("python-docutils" ,python-docutils)
9462 ("python-jmespath" ,python-jmespath)))
9463 (native-inputs
9464 `(("python-mock" ,python-mock)
9465 ("python-nose" ,python-nose)
9466 ("behave" ,behave)
9467 ("python-tox" ,python-tox)
9468 ("python-wheel" ,python-wheel)))
9469 (home-page "https://github.com/boto/botocore")
9470 (synopsis "Low-level interface to AWS")
9471 (description "Botocore is a Python library that provides a low-level
9472 interface to the Amazon Web Services (AWS) API.")
9473 (license license:asl2.0)))
9474
9475 (define-public python2-botocore
9476 (package-with-python2 python-botocore))
9477
9478 (define-public awscli
9479 (package
9480 (name "awscli")
9481 (version "1.11.63")
9482 (source
9483 (origin
9484 (method url-fetch)
9485 (uri (pypi-uri name version))
9486 (sha256
9487 (base32
9488 "1r8aqv8w27k76lcsfk83w6qw9lz8gk2ibzwacp5wjhpp2gik911m"))))
9489 (build-system python-build-system)
9490 (propagated-inputs
9491 `(("python-colorama" ,python-colorama)
9492 ("python-botocore" ,python-botocore)
9493 ("python-s3transfer" ,python-s3transfer)
9494 ("python-docutils" ,python-docutils)
9495 ("python-pyyaml" ,python-pyyaml)
9496 ("python-rsa" ,python-rsa)))
9497 (arguments
9498 ;; FIXME: The 'pypi' release does not contain tests.
9499 '(#:tests? #f))
9500 (home-page "https://aws.amazon.com/cli/")
9501 (synopsis "Command line client for AWS")
9502 (description "AWS CLI provides a unified command line interface to the
9503 Amazon Web Services (AWS) API.")
9504 (license license:asl2.0)))
9505
9506 (define-public python-hypothesis
9507 (package
9508 (name "python-hypothesis")
9509 (version "3.1.0")
9510 (source (origin
9511 (method url-fetch)
9512 (uri (pypi-uri "hypothesis" version))
9513 (sha256
9514 (base32
9515 "0qyqq9akm4vshhn8cngjc1qykcvsn7cz6dlm6njfsgpbraqrmbbw"))))
9516 (build-system python-build-system)
9517 (native-inputs
9518 `(("python-flake8" ,python-flake8)
9519 ("python-pytest" ,python-pytest)))
9520 (synopsis "Library for property based testing")
9521 (description "Hypothesis is a library for testing your Python code against a
9522 much larger range of examples than you would ever want to write by hand. It’s
9523 based on the Haskell library, Quickcheck, and is designed to integrate
9524 seamlessly into your existing Python unit testing work flow.")
9525 (home-page "https://github.com/DRMacIver/hypothesis")
9526 (license license:mpl2.0)
9527 (properties `((python2-variant . ,(delay python2-hypothesis))))))
9528
9529 (define-public python2-hypothesis
9530 (let ((hypothesis (package-with-python2
9531 (strip-python2-variant python-hypothesis))))
9532 (package (inherit hypothesis)
9533 (native-inputs
9534 `(("python2-enum34" ,python2-enum34)
9535 ,@(package-native-inputs hypothesis))))))
9536
9537 (define-public python-pytest-subtesthack
9538 (package
9539 (name "python-pytest-subtesthack")
9540 (version "0.1.1")
9541 (source (origin
9542 (method url-fetch)
9543 (uri (pypi-uri "pytest-subtesthack" version))
9544 (sha256
9545 (base32
9546 "15kzcr5pchf3id4ikdvlv752rc0j4d912n589l4rifp8qsj19l1x"))))
9547 (build-system python-build-system)
9548 (propagated-inputs
9549 `(("python-pytest" ,python-pytest)))
9550 (synopsis "Set-up and tear-down fixtures for unit tests")
9551 (description "This plugin allows you to set up and tear down fixtures within
9552 unit test functions that use @code{py.test}. This is useful for using
9553 @command{hypothesis} inside py.test, as @command{hypothesis} will call the test
9554 function multiple times, without setting up or tearing down fixture state as is
9555 normally the case.")
9556 (home-page "https://github.com/untitaker/pytest-subtesthack/")
9557 (license license:unlicense)))
9558
9559 (define-public python2-pytest-subtesthack
9560 (package-with-python2 python-pytest-subtesthack))
9561
9562 (define-public python-xdo
9563 (package
9564 (name "python-xdo")
9565 (version "0.3")
9566 (source (origin
9567 (method url-fetch)
9568 (uri (string-append
9569 "http://http.debian.net/debian/pool/main/p/python-xdo/"
9570 "python-xdo_" version ".orig.tar.gz"))
9571 (sha256
9572 (base32
9573 "1vqh1n5yy5dhnq312kwrl90fnck4v26is3lq3lxdvcn60vv19da0"))))
9574 (build-system python-build-system)
9575 (arguments
9576 '(#:phases
9577 (modify-phases %standard-phases
9578 (add-before 'install 'patch-libxdo-path
9579 ;; Hardcode the path of dynamically loaded libxdo library.
9580 (lambda* (#:key inputs #:allow-other-keys)
9581 (let ((libxdo (string-append
9582 (assoc-ref inputs "xdotool")
9583 "/lib/libxdo.so")))
9584 (substitute* "xdo/_xdo.py"
9585 (("find_library\\(\"xdo\"\\)")
9586 (simple-format #f "\"~a\"" libxdo)))
9587 #t))))
9588 #:tests? #f)) ; no tests provided
9589 (propagated-inputs
9590 `(("python-six" ,python-six)))
9591 (inputs
9592 `(("xdotool" ,xdotool)
9593 ("libX11" ,libx11)))
9594 (home-page "https://tracker.debian.org/pkg/python-xdo")
9595 (synopsis "Python library for simulating X11 keyboard/mouse input")
9596 (description "Provides bindings to libxdo for manipulating X11 via simulated
9597 input. (Note that this is mostly a legacy library; you may wish to look at
9598 python-xdo for newer bindings.)")
9599 (license license:bsd-3)))
9600
9601 (define-public python2-xdo
9602 (package-with-python2 python-xdo))
9603
9604 (define-public python-wtforms
9605 (package
9606 (name "python-wtforms")
9607 (version "2.1")
9608 (source
9609 (origin
9610 (method url-fetch)
9611 (uri (pypi-uri "WTForms" version ".zip"))
9612 (sha256
9613 (base32
9614 "0vyl26y9cg409cfyj8rhqxazsdnd0jipgjw06civhrd53yyi1pzz"))))
9615 (build-system python-build-system)
9616 (arguments
9617 '(#:phases
9618 (modify-phases %standard-phases
9619 (add-after 'unpack 'remove-django-test
9620 ;; Don't fail the tests when the inputs for the optional tests cannot be found.
9621 (lambda _
9622 (substitute*
9623 "tests/runtests.py"
9624 (("'ext_django.tests', 'ext_sqlalchemy', 'ext_dateutil', 'locale_babel'") "")
9625 (("sys.stderr.write(\"### Disabled test '%s', dependency not found\n\" % name)") ""))
9626 #t)))))
9627 (native-inputs
9628 `(("unzip" ,unzip)))
9629 (home-page "http://wtforms.simplecodes.com/")
9630 (synopsis
9631 "Form validation and rendering library for Python web development")
9632 (description
9633 "WTForms is a flexible forms validation and rendering library
9634 for Python web development. It is very similar to the web form API
9635 available in Django, but is a standalone package.")
9636 (license license:bsd-3)))
9637
9638 (define-public python2-wtforms
9639 (package-with-python2 python-wtforms))
9640
9641 (define-public python-mako
9642 (package
9643 (name "python-mako")
9644 (version "1.0.6")
9645 (source
9646 (origin
9647 (method url-fetch)
9648 (uri (pypi-uri "Mako" version))
9649 (sha256
9650 (base32
9651 "03dyxgjknp4ffsv7vwfd28l5bbpzi0ylp20543wpg3iahyyrwma8"))))
9652 (build-system python-build-system)
9653 (propagated-inputs
9654 `(("python-markupsafe" ,python-markupsafe)))
9655 (native-inputs
9656 `(("python-mock" ,python-mock)
9657 ("python-nose" ,python-nose)
9658 ("python-pytest" ,python-pytest)))
9659 (home-page "http://www.makotemplates.org/")
9660 (synopsis "Templating language for Python")
9661 (description "Mako is a templating language for Python that compiles
9662 templates into Python modules.")
9663 (license license:expat)))
9664
9665 (define-public python2-mako
9666 (package-with-python2 python-mako))
9667
9668 (define-public python-waitress
9669 (package
9670 (name "python-waitress")
9671 (version "0.8.10")
9672 (source
9673 (origin
9674 (method url-fetch)
9675 (uri (pypi-uri "waitress" version))
9676 (sha256
9677 (base32
9678 "017n9ra6vvmq9d5sfhdzyzr1mg15x2hj2dhm4pdlw98c1ypw2h3w"))))
9679 (build-system python-build-system)
9680 (home-page "https://github.com/Pylons/waitress")
9681 (synopsis "Waitress WSGI server")
9682 (description "Waitress is meant to be a production-quality pure-Python WSGI
9683 server with very acceptable performance.")
9684 (license license:zpl2.1)))
9685
9686 (define-public python2-waitress
9687 (package-with-python2 python-waitress))
9688
9689 (define-public python-wsgiproxy2
9690 (package
9691 (name "python-wsgiproxy2")
9692 (version "0.4.2")
9693 (source
9694 (origin
9695 (method url-fetch)
9696 (uri (pypi-uri "WSGIProxy2" version ".zip"))
9697 (sha256
9698 (base32
9699 "13kf9bdxrc95y9vriaz0viry3ah11nz4rlrykcfvb8nlqpx3dcm4"))))
9700 (build-system python-build-system)
9701 (arguments
9702 '(;; Wsgiproxy2's test suite requires Restkit, which does not yet fully
9703 ;; support Python 3:
9704 ;; https://github.com/benoitc/restkit/issues/140
9705 #:tests? #f))
9706 (native-inputs
9707 `(("unzip" ,unzip)
9708 ("python-nose" ,python-nose)
9709 ("python-coverage" ,python-coverage)))
9710 (propagated-inputs
9711 `(("python-six" ,python-six)
9712 ("python-webob" ,python-webob)))
9713 (home-page
9714 "https://github.com/gawel/WSGIProxy2/")
9715 (synopsis "WSGI Proxy with various http client backends")
9716 (description "WSGI turns HTTP requests into WSGI function calls.
9717 WSGIProxy turns WSGI function calls into HTTP requests.
9718 It also includes code to sign requests and pass private data,
9719 and to spawn subprocesses to handle requests.")
9720 (license license:expat)))
9721
9722 (define-public python2-wsgiproxy2
9723 (package-with-python2 python-wsgiproxy2))
9724
9725 (define-public python-pastedeploy
9726 (package
9727 (name "python-pastedeploy")
9728 (version "1.5.2")
9729 (source
9730 (origin
9731 (method url-fetch)
9732 (uri (pypi-uri "PasteDeploy" version))
9733 (sha256
9734 (base32
9735 "1jz3m4hq8v6hyhfjz9425nd3nvn52cvbfipdcd72krjmla4qz1fm"))))
9736 (build-system python-build-system)
9737 (native-inputs
9738 `(("python-nose" ,python-nose)))
9739 (home-page "http://pythonpaste.org/deploy/")
9740 (synopsis
9741 "Load, configure, and compose WSGI applications and servers")
9742 (description
9743 "This tool provides code to load WSGI applications and servers from URIs;
9744 these URIs can refer to Python Eggs for INI-style configuration files. Paste
9745 Script provides commands to serve applications based on this configuration
9746 file.")
9747 (license license:expat)))
9748
9749 (define-public python2-pastedeploy
9750 (package-with-python2 python-pastedeploy))
9751
9752 (define-public python-paste
9753 (package
9754 (name "python-paste")
9755 (version "2.0.3")
9756 (source
9757 (origin
9758 (method url-fetch)
9759 (uri (pypi-uri "Paste" version))
9760 (sha256
9761 (base32
9762 "062jk0nlxf6lb2wwj6zc20rlvrwsnikpkh90y0dn8cjch93s6ii3"))
9763 (patches (search-patches "python-paste-remove-website-test.patch"
9764 "python-paste-remove-timing-test.patch"))))
9765 (build-system python-build-system)
9766 (native-inputs
9767 `(("python-nose" ,python-nose)))
9768 (propagated-inputs
9769 `(("python-six" ,python-six)))
9770 (home-page "http://pythonpaste.org")
9771 (synopsis
9772 "Python web development tools, focusing on WSGI")
9773 (description
9774 "Paste provides a variety of web development tools and middleware which
9775 can be nested together to build web applications. Paste's design closely
9776 follows ideas flowing from WSGI (Web Standard Gateway Interface).")
9777 (license license:expat)))
9778
9779 (define-public python2-paste
9780 (package-with-python2 python-paste))
9781
9782 (define-public python-pastescript
9783 (package
9784 (name "python-pastescript")
9785 (version "2.0.2")
9786 (source
9787 (origin
9788 (method url-fetch)
9789 (uri (pypi-uri "PasteScript" version))
9790 (sha256
9791 (base32
9792 "1h3nnhn45kf4pbcv669ik4faw04j58k8vbj1hwrc532k0nc28gy0"))))
9793 (build-system python-build-system)
9794 (native-inputs
9795 `(("python-nose" ,python-nose)))
9796 (propagated-inputs
9797 `(("python-paste" ,python-paste)
9798 ("python-pastedeploy" ,python-pastedeploy)))
9799 (home-page "http://pythonpaste.org/script/")
9800 (arguments
9801 '(;; Unfortunately, this requires the latest unittest2,
9802 ;; but that requires traceback2 which requires linecache2 which requires
9803 ;; unittest2. So we're skipping tests for now.
9804 ;; (Note: Apparently linetest2 only needs unittest2 for its tests,
9805 ;; so in theory we could get around this situation somehow.)
9806 #:tests? #f))
9807 (synopsis
9808 "Pluggable command line tool for serving web applications and more")
9809 (description
9810 "PasteScript is a plugin-friendly command line tool which provides a
9811 variety of features, from launching web applications to bootstrapping project
9812 layouts.")
9813 (license license:expat)))
9814
9815 (define-public python2-pastescript
9816 (package-with-python2 python-pastescript))
9817
9818 (define-public python-pyquery
9819 (package
9820 (name "python-pyquery")
9821 (version "1.2.17")
9822 (source
9823 (origin
9824 (method url-fetch)
9825 (uri (pypi-uri "pyquery" version))
9826 (sha256
9827 (base32
9828 "1xia20wm0vx5dk85kcwgh13bylz8qh47ffjxssd2586r60xi783a"))))
9829 (build-system python-build-system)
9830 (native-inputs
9831 `(("python-webob" ,python-webob)
9832 ("python-webtest" ,python-webtest)))
9833 (propagated-inputs
9834 `(("python-lxml" ,python-lxml)
9835 ("python-cssselect" ,python-cssselect)))
9836 (home-page "https://github.com/gawel/pyquery")
9837 (synopsis "Make jQuery-like queries on xml documents")
9838 (description "pyquery allows you to make jQuery queries on xml documents.
9839 The API is as much as possible the similar to jQuery. pyquery uses lxml for
9840 fast xml and html manipulation.")
9841 (license license:bsd-3)))
9842
9843 (define-public python2-pyquery
9844 (package-with-python2 python-pyquery))
9845
9846 (define-public python-webtest
9847 (package
9848 (name "python-webtest")
9849 (version "2.0.20")
9850 (source
9851 (origin
9852 (method url-fetch)
9853 (uri (pypi-uri "WebTest" version))
9854 (sha256
9855 (base32
9856 "0bv0qhdjakdsdgj4sk21gnpp8xp8bga4x03p6gjb83ihrsb7n4xv"))))
9857 (build-system python-build-system)
9858 (arguments
9859 `(;; Unfortunately we have to disable tests!
9860 ;; This release of WebTest is pinned to python-nose < 1.3,
9861 ;; but older versions of python-nose are plagued with the following
9862 ;; bug(s), which rears its ugly head during test execution:
9863 ;; https://github.com/nose-devs/nose/issues/759
9864 ;; https://github.com/nose-devs/nose/pull/811
9865 #:tests? #f))
9866 ;; Commented out code is no good, but in this case, once tests
9867 ;; are ready to be enabled again, we should put the following
9868 ;; in place:
9869 ;; (native-inputs
9870 ;; `(("python-nose" ,python-nose) ; technially < 1.3,
9871 ;; ; but see above comment
9872 ;; ("python-coverage" ,python-coverage)
9873 ;; ("python-mock" ,python-mock)
9874 ;; ("python-pastedeploy" ,python-pastedeploy)
9875 ;; ("python-wsgiproxy2" ,python-wsgiproxy2)
9876 ;; ("python-pyquery" ,python-pyquery)))
9877 (propagated-inputs
9878 `(("python-waitress" ,python-waitress)
9879 ("python-webob" ,python-webob)
9880 ("python-six" ,python-six)
9881 ("python-beautifulsoup4" ,python-beautifulsoup4)))
9882 (home-page "http://webtest.pythonpaste.org/")
9883 (synopsis "Helper to test WSGI applications")
9884 (description "Webtest allows you to test your Python web applications
9885 without starting an HTTP server. It supports anything that supports the
9886 minimum of WSGI.")
9887 (license license:expat)))
9888
9889 (define-public python2-webtest
9890 (package-with-python2 python-webtest))
9891
9892 (define-public python-anyjson
9893 (package
9894 (name "python-anyjson")
9895 (version "0.3.3")
9896 (source
9897 (origin
9898 (method url-fetch)
9899 (uri (pypi-uri "anyjson" version))
9900 (sha256
9901 (base32
9902 "1fjph4alvcscsl5d4b6qpv1yh31jy05jxi1l0xff7lws7j32v09p"))))
9903 (build-system python-build-system)
9904 (arguments
9905 `(;; We could possibly get tests working, but on Python 3 it's not so easy.
9906 ;; Very strangely, 2to3 is run *during setup.py install* (or bdist, or
9907 ;; whatever) so this transformation needs to be done before the tests
9908 ;; can be run. Maybe we could add a build step to transform beforehand
9909 ;; but it could be annoying/difficult.
9910 ;; We can enable tests for the Python 2 version, though, and do below.
9911 #:tests? #f))
9912 (home-page "http://bitbucket.org/runeh/anyjson/")
9913 (synopsis
9914 "Wraps best available JSON implementation in a common interface")
9915 (description
9916 "Anyjson loads whichever is the fastest JSON module installed
9917 and provides a uniform API regardless of which JSON implementation is used.")
9918 (license license:bsd-3)
9919 (properties `((python2-variant . ,(delay python2-anyjson))))))
9920
9921 (define-public python2-anyjson
9922 (let ((anyjson (package-with-python2
9923 (strip-python2-variant python-anyjson))))
9924 (package
9925 (inherit anyjson)
9926 (arguments `(;; Unlike the python 3 variant, we do run tests. See above!
9927 #:tests? #t
9928 ,@(package-arguments anyjson)))
9929 (native-inputs `(("python2-nose" ,python2-nose))))))
9930
9931 (define-public python-amqp
9932 (package
9933 (name "python-amqp")
9934 (version "1.4.9")
9935 (source
9936 (origin
9937 (method url-fetch)
9938 (uri (pypi-uri "amqp" version))
9939 (sha256
9940 (base32
9941 "06n6q0kxhjnbfz3vn8x9yz09lwmn1xi9d6wxp31h5jbks0b4vsid"))))
9942 (build-system python-build-system)
9943 (native-inputs
9944 `(("python-nose" ,python-nose)
9945 ("python-mock" ,python-mock)))
9946 (home-page "https://github.com/celery/py-amqp")
9947 (synopsis
9948 "Low-level AMQP client for Python (fork of amqplib)")
9949 (description
9950 "This is a fork of amqplib which was originally written by Barry Pederson.
9951 It is maintained by the Celery project, and used by kombu as a pure python
9952 alternative when librabbitmq is not available.")
9953 (license license:lgpl2.1+)
9954 (properties `((python2-variant . ,(delay python2-amqp))))))
9955
9956 (define-public python2-amqp
9957 (let ((amqp (package-with-python2
9958 (strip-python2-variant python-amqp))))
9959 (package
9960 (inherit amqp)
9961 (arguments `(;; Tries to run coverage tests with nose-cover3, which seems
9962 ;; unmaintained. Weirdly, does not do this on the python 3
9963 ;; version?
9964 #:tests? #f
9965 ,@(package-arguments amqp))))))
9966
9967 (define-public python-kombu
9968 (package
9969 (name "python-kombu")
9970 (version "3.0.37")
9971 (source
9972 (origin
9973 (method url-fetch)
9974 (uri (pypi-uri "kombu" version))
9975 (sha256
9976 (base32
9977 "0l16chb314gpq2v7fh94a22c30lcv6w3ylmhsa60bldlcq6a0r70"))))
9978 (build-system python-build-system)
9979 (native-inputs
9980 `(("python-mock" ,python-mock)
9981 ("python-nose" ,python-nose)))
9982 (propagated-inputs
9983 `(("python-anyjson" ,python-anyjson)
9984 ("python-amqp" ,python-amqp)
9985 ("python-redis" ,python-redis)))
9986 (home-page "http://kombu.readthedocs.org")
9987 (synopsis "Message passing library for Python")
9988 (description "The aim of Kombu is to make messaging in Python as easy as
9989 possible by providing an idiomatic high-level interface for the AMQ protocol,
9990 and also provide proven and tested solutions to common messaging problems.
9991 AMQP is the Advanced Message Queuing Protocol, an open standard protocol for
9992 message orientation, queuing, routing, reliability and security, for which the
9993 RabbitMQ messaging server is the most popular implementation.")
9994 (license license:bsd-3)
9995 (properties `((python2-variant . ,(delay python2-kombu))))))
9996
9997 (define-public python2-kombu
9998 (let ((kombu (package-with-python2
9999 (strip-python2-variant python-kombu))))
10000 (package
10001 (inherit kombu)
10002 (arguments `(;; FIXME: 'TestTransport.test_del_sync' fails on python2.
10003 ;; It works fine on the python3 variant.
10004 #:tests? #f
10005 ,@(package-arguments kombu)))
10006 (native-inputs `(("python2-unittest2" ,python2-unittest2)
10007 ,@(package-native-inputs kombu))))))
10008
10009 (define-public python-billiard
10010 (package
10011 (name "python-billiard")
10012 (version "3.3.0.23")
10013 (source
10014 (origin
10015 (method url-fetch)
10016 (uri (pypi-uri "billiard" version))
10017 (sha256
10018 (base32
10019 "02wxsc6bhqvzh8j6w758kvgqbnj14l796mvmrcms8fgfamd2lak9"))))
10020 (build-system python-build-system)
10021 (native-inputs
10022 `(("python-nose" ,python-nose)))
10023 (home-page "https://github.com/celery/billiard")
10024 (synopsis
10025 "Python multiprocessing fork with improvements and bugfixes")
10026 (description
10027 "Billiard is a fork of the Python 2.7 multiprocessing package. The
10028 multiprocessing package itself is a renamed and updated version of R Oudkerk's
10029 pyprocessing package. This standalone variant is intended to be compatible with
10030 Python 2.4 and 2.5, and will draw its fixes/improvements from python-trunk.")
10031 (license license:bsd-3)
10032 (properties `((python2-variant . ,(delay python2-billiard))))))
10033
10034 (define-public python2-billiard
10035 (let ((billiard (package-with-python2
10036 (strip-python2-variant python-billiard))))
10037 (package
10038 (inherit billiard)
10039 (native-inputs `(("python2-unittest2" ,python2-unittest2)
10040 ("python2-mock" ,python2-mock)
10041 ,@(package-native-inputs billiard))))))
10042
10043 (define-public python-celery
10044 (package
10045 (name "python-celery")
10046 (version "3.1.24")
10047 (source
10048 (origin
10049 (method url-fetch)
10050 (uri (pypi-uri "celery" version))
10051 (sha256
10052 (base32
10053 "0yh2prhdnx2dgkb67a5drj12hh2zvzx5f611p7mqqg01ydghif4r"))))
10054 (build-system python-build-system)
10055 (arguments
10056 `(#:phases
10057 (modify-phases %standard-phases
10058 ;; These tests break with Python 3.5:
10059 ;; https://github.com/celery/celery/issues/2897#issuecomment-253066295
10060 (replace 'check
10061 (lambda _
10062 (zero?
10063 (system* "nosetests" "--exclude=^test_safe_to_remove.*")))))))
10064 (native-inputs
10065 `(("python-nose" ,python-nose)))
10066 (propagated-inputs
10067 `(("python-pytz" ,python-pytz)
10068 ("python-billiard" ,python-billiard)
10069 ("python-kombu" ,python-kombu)))
10070 (home-page "http://celeryproject.org")
10071 (synopsis "Distributed Task Queue")
10072 (description "Celery is an asynchronous task queue/job queue based on
10073 distributed message passing. It is focused on real-time operation, but
10074 supports scheduling as well. The execution units, called tasks, are executed
10075 concurrently on a single or more worker servers using multiprocessing,
10076 Eventlet, or gevent. Tasks can execute asynchronously (in the background) or
10077 synchronously (wait until ready).")
10078 (license license:bsd-3)
10079 (properties `((python2-variant . ,(delay python2-celery))))))
10080
10081 (define-public python2-celery
10082 (let ((celery (package-with-python2
10083 (strip-python2-variant python-celery))))
10084 (package
10085 (inherit celery)
10086 (native-inputs `(("python2-unittest2" ,python2-unittest2)
10087 ("python2-mock" ,python2-mock)
10088 ,@(package-native-inputs celery))))))
10089
10090 (define-public python-translitcodec
10091 (package
10092 (name "python-translitcodec")
10093 (version "0.4.0")
10094 (source
10095 (origin
10096 (method url-fetch)
10097 (uri (pypi-uri "translitcodec" version))
10098 (sha256
10099 (base32
10100 "10x6pvblkzky1zhjs8nmx64nb9jdzxad4bxhq4iwv0j4z2aqjnki"))))
10101 (build-system python-build-system)
10102 (arguments
10103 `(#:tests? #f)) ; no tests provided
10104 (home-page
10105 "https://github.com/claudep/translitcodec")
10106 (synopsis
10107 "Unicode to 8-bit charset transliteration codec")
10108 (description
10109 "This package contains codecs for transliterating ISO 10646 texts into
10110 best-effort representations using smaller coded character sets (ASCII,
10111 ISO 8859, etc.).")
10112 (license license:expat)))
10113
10114 (define-public python2-translitcodec
10115 (package-with-python2 python-translitcodec))
10116
10117 (define-public python-editor
10118 (package
10119 (name "python-editor")
10120 (version "0.5")
10121 (source
10122 (origin
10123 (method url-fetch)
10124 (uri (pypi-uri "python-editor" version))
10125 (sha256
10126 (base32
10127 "1ypnpgvzpkbwsg4rdvy4sy51j28b5xq9v8pnkwxncn07vqz06p7n"))))
10128 (build-system python-build-system)
10129 (home-page
10130 "https://github.com/fmoo/python-editor")
10131 (synopsis
10132 "Programmatically open an editor, capture the result")
10133 (description
10134 "python-editor is a library that provides the editor module for
10135 programmatically interfacing with your system's $EDITOR.")
10136 (license license:asl2.0)))
10137
10138 (define-public python2-editor
10139 (package-with-python2 python-editor))
10140
10141 (define-public python-sphinxcontrib-programoutput
10142 (package
10143 (name "python-sphinxcontrib-programoutput")
10144 (version "0.10")
10145 (source (origin
10146 (method url-fetch)
10147 (uri (pypi-uri "sphinxcontrib-programoutput" version))
10148 (sha256
10149 (base32
10150 "153hhnlbx4688zj9wd64819ps5znc2jlyp5crkgzvn5hxgy99vpx"))))
10151 (build-system python-build-system)
10152 (arguments
10153 ;; FIXME: Many tests are failing and the upstream is gone.
10154 '(#:tests? #f))
10155 (propagated-inputs
10156 `(("python-sphinx" ,python-sphinx)))
10157 (synopsis "Sphinx extension to include program output")
10158 (description "A Sphinx extension to literally insert the output of arbitrary
10159 commands into documents, helping you to keep your command examples up to date.")
10160 (home-page "https://github.com/lunaryorn/sphinxcontrib-programoutput")
10161 (license license:bsd-2)))
10162
10163 (define-public python2-sphinxcontrib-programoutput
10164 (package-with-python2 python-sphinxcontrib-programoutput))
10165
10166 (define-public python-sphinx-repoze-autointerface
10167 (package
10168 (name "python-sphinx-repoze-autointerface")
10169 (version "0.8")
10170 (source (origin
10171 (method url-fetch)
10172 (uri (pypi-uri "repoze.sphinx.autointerface" version))
10173 (sha256
10174 (base32
10175 "08ycivzf7bh4a1zcyp31hbyqs1b2c9r26raa3vxjwwmbfqr3iw4f"))))
10176 (build-system python-build-system)
10177 (arguments '(#:tests? #f)) ; No tests.
10178 (propagated-inputs
10179 `(("python-sphinx" ,python-sphinx)
10180 ("python-zope-interface" ,python-zope-interface)))
10181 (synopsis "Auto-generate Sphinx API docs from Zope interfaces")
10182 (description "This package defines an extension for the Sphinx documentation
10183 system. The extension allows generation of API documentation by
10184 introspection of @code{zope.interface} instances in code.")
10185 (home-page "https://github.com/repoze/repoze.sphinx.autointerface")
10186 (license license:repoze)))
10187
10188 (define-public python2-sphinx-repoze-autointerface
10189 (package-with-python2 python-sphinx-repoze-autointerface))
10190
10191 (define-public python-psycopg2
10192 (package
10193 (name "python-psycopg2")
10194 (version "2.6.2")
10195 (source
10196 (origin
10197 (method url-fetch)
10198 (uri (pypi-uri "psycopg2" version))
10199 (sha256
10200 (base32
10201 "0p60z2gwfcal30y2w8gprflchp1kcg9qblc5rn782p4wxl90wjbh"))))
10202 (build-system python-build-system)
10203 (arguments
10204 ;; Tests would require a postgresql database "psycopg2_test"
10205 ;; and a running postgresql database management service.
10206 `(#:tests? #f)) ; TODO re-enable after providing a test-db.
10207 (inputs
10208 `(("postgresql" ,postgresql))) ; libpq
10209 (home-page "http://initd.org/psycopg/")
10210 (synopsis "Python PostgreSQL adapter")
10211 (description
10212 "psycopg2 is a thread-safe PostgreSQL adapter that implements DB-API 2.0. ")
10213 (license license:lgpl3+)))
10214
10215 (define-public python2-psycopg2
10216 (package-with-python2 python-psycopg2))
10217
10218 (define-public python-vobject
10219 (package
10220 (name "python-vobject")
10221 (version "0.9.5")
10222 (source (origin
10223 (method url-fetch)
10224 (uri (pypi-uri "vobject" version))
10225 (sha256
10226 (base32
10227 "0hqjgf3ay1m5w1c0k00g5yfpdz1zni5qnr5rh9b8fg9hjvhwlmhg"))))
10228 (build-system python-build-system)
10229 (arguments
10230 '(;; The test suite relies on some non-portable Windows interfaces.
10231 #:tests? #f))
10232 (propagated-inputs
10233 `(("python-dateutil" ,python-dateutil)
10234 ("python-pyicu" ,python-pyicu)))
10235 (synopsis "Parse and generate vCard and vCalendar files")
10236 (description "Vobject is intended to be a full featured Python package for
10237 parsing and generating vCard and vCalendar files. Currently, iCalendar files
10238 are supported and well tested. vCard 3.0 files are supported, and all data
10239 should be imported, but only a few components are understood in a sophisticated
10240 way.")
10241 (home-page "http://eventable.github.io/vobject/")
10242 (license license:asl2.0)))
10243
10244 (define-public python2-vobject
10245 (package-with-python2 python-vobject))
10246
10247 (define-public python-munkres
10248 (package
10249 (name "python-munkres")
10250 (version "1.0.8")
10251 (source (origin
10252 (method url-fetch)
10253 (uri (pypi-uri "munkres" version))
10254 (sha256
10255 (base32
10256 "0mbspx4zv8id4x6pim6ybsa1xh96qwpbqj7skbqz4c9c9nf1lpqq"))))
10257 (build-system python-build-system)
10258 (arguments
10259 '(#:tests? #f)) ; no test suite
10260 (home-page "http://software.clapper.org/munkres/")
10261 (synopsis "Implementation of the Munkres algorithm")
10262 (description "The Munkres module provides an implementation of the Munkres
10263 algorithm (also called the Hungarian algorithm or the Kuhn-Munkres algorithm),
10264 useful for solving the Assignment Problem.")
10265 (license license:bsd-3)))
10266
10267 (define-public python2-munkres
10268 (package-with-python2 python-munkres))
10269
10270 (define-public python-flask
10271 (package
10272 (name "python-flask")
10273 (version "0.11.1")
10274 (source (origin
10275 (method url-fetch)
10276 (uri (pypi-uri "Flask" version))
10277 (sha256
10278 (base32
10279 "03kbfll4sj3v5z7r31c7bhfpi11r1np076d4p1k2kg4yzcmkywdl"))))
10280 (build-system python-build-system)
10281 (propagated-inputs
10282 `(("python-itsdangerous" ,python-itsdangerous)
10283 ("python-jinja2" ,python-jinja2)
10284 ("python-click" ,python-click)
10285 ("python-werkzeug" ,python-werkzeug)))
10286 (home-page "https://github.com/mitsuhiko/flask/")
10287 (synopsis "Microframework based on Werkzeug, Jinja2 and good intentions")
10288 (description "Flask is a micro web framework based on the Werkzeug toolkit
10289 and Jinja2 template engine. It is called a micro framework because it does not
10290 presume or force a developer to use a particular tool or library.")
10291 (license license:bsd-3)))
10292
10293 (define-public python2-flask
10294 (package-with-python2 python-flask))
10295
10296 (define-public python-flask-wtf
10297 (package
10298 (name "python-flask-wtf")
10299 (version "0.13.1")
10300 (source
10301 (origin
10302 (method url-fetch)
10303 (uri (pypi-uri "Flask-WTF" version))
10304 (sha256
10305 (base32
10306 "04l5743j2dici46038sqlzvf0xzpg8rf7s9ld2x24xv7f4idg990"))))
10307 (build-system python-build-system)
10308 (arguments
10309 '(#:phases
10310 (modify-phases %standard-phases
10311 (add-before 'check 'drop-failing-test
10312 (lambda _
10313 ;; FIXME: This file tries resolving an external server, which
10314 ;; fails. Try to patch out the offending section instead of
10315 ;; deleting the whole thing.
10316 (delete-file "tests/test_recaptcha.py")
10317 #t)))))
10318 (propagated-inputs
10319 `(("python-flask-babel" ,python-flask-babel)
10320 ("python-babel" ,python-babel)
10321 ("python-wtforms" ,python-wtforms)))
10322 (native-inputs
10323 `(("python-nose" ,python-nose)))
10324 (home-page "https://github.com/lepture/flask-wtf")
10325 (synopsis "Simple integration of Flask and WTForms")
10326 (description "Flask-WTF integrates Flask and WTForms, including CSRF, file
10327 upload, and reCAPTCHA.")
10328 (license license:bsd-3)))
10329
10330 (define-public python2-flask-wtf
10331 (package-with-python2 python-flask-wtf))
10332
10333 (define-public python-flask-multistatic
10334 (package
10335 (name "python-flask-multistatic")
10336 (version "1.0")
10337 (source
10338 (origin
10339 (method url-fetch)
10340 (uri (pypi-uri "flask-multistatic" version))
10341 (sha256
10342 (base32
10343 "0p4v50rwv64wcd0zlq7rzl4waprwr4hj19s3cgf1isywa7jcisgm"))))
10344 (build-system python-build-system)
10345 (propagated-inputs
10346 `(("python-flask" ,python-flask)))
10347 (home-page "https://pagure.io/flask-multistatic")
10348 (synopsis "Flask plugin to allow overriding static files")
10349 (description "@code{flask-multistatic} is a flask plugin that adds support
10350 for overriding static files.")
10351 (license license:gpl3+)))
10352
10353 (define-public python2-flask-multistatic
10354 (package-with-python2 python-flask-multistatic))
10355
10356 (define-public python-cookies
10357 (package
10358 (name "python-cookies")
10359 (version "2.2.1")
10360 (source (origin
10361 (method url-fetch)
10362 (uri (pypi-uri "cookies" version))
10363 (sha256
10364 (base32
10365 "13pfndz8vbk4p2a44cfbjsypjarkrall71pgc97glk5fiiw9idnn"))))
10366 (build-system python-build-system)
10367 (arguments
10368 `(;; test are broken: https://gitlab.com/sashahart/cookies/issues/3
10369 #:tests? #f))
10370 (native-inputs
10371 `(("python-pytest" ,python2-pytest)))
10372 (synopsis "HTTP cookie parser and renderer")
10373 (description "A RFC 6265-compliant HTTP cookie parser and renderer in
10374 Python.")
10375 (home-page "https://gitlab.com/sashahart/cookies")
10376 (license license:expat)))
10377
10378 (define-public python2-cookies
10379 (package-with-python2 python-cookies))
10380
10381 (define-public python-responses
10382 (package
10383 (name "python-responses")
10384 (version "0.5.1")
10385 (source (origin
10386 (method url-fetch)
10387 (uri (pypi-uri "responses" version))
10388 (sha256
10389 (base32
10390 "1spcfxixyk9k7pk82jm6zqkwk031s95lh8q0mz7539jrb7269bcc"))))
10391 (build-system python-build-system)
10392 (arguments
10393 `(;; Test suite is not distributed:
10394 ;; https://github.com/getsentry/responses/issues/38
10395 #:tests? #f))
10396 (native-inputs
10397 `(("python-mock" ,python-mock)))
10398 (propagated-inputs
10399 `(("python-requests" ,python-requests)
10400 ("python-cookies" ,python-cookies)
10401 ("python-six" ,python-six)))
10402 (home-page "https://github.com/getsentry/responses")
10403 (synopsis "Utility for mocking out the `requests` Python library")
10404 (description "A utility library for mocking out the `requests` Python
10405 library.")
10406 (license license:asl2.0)))
10407
10408 (define-public python2-responses
10409 (package-with-python2 python-responses))
10410
10411 (define-public python-whoosh
10412 (package
10413 (name "python-whoosh")
10414 (version "2.7.4")
10415 (source
10416 (origin
10417 (method url-fetch)
10418 (uri (pypi-uri "Whoosh" version))
10419 (sha256
10420 (base32
10421 "10qsqdjpbc85fykc1vgcs8xwbgn4l2l52c8d83xf1q59pwyn79bw"))))
10422 (build-system python-build-system)
10423 (native-inputs
10424 `(("python-pytest" ,python-pytest)))
10425 (home-page "http://bitbucket.org/mchaput/whoosh")
10426 (synopsis "Full text indexing, search, and spell checking library")
10427 (description
10428 "Whoosh is a fast, pure-Python full text indexing, search, and spell
10429 checking library.")
10430 (license license:bsd-2)))
10431
10432 (define-public python2-whoosh
10433 (let ((whoosh (package-with-python2 (strip-python2-variant python-whoosh))))
10434 (package (inherit whoosh)
10435 (propagated-inputs
10436 `(("python2-backport-ssl-match-hostname"
10437 ,python2-backport-ssl-match-hostname)
10438 ,@(package-propagated-inputs whoosh))))))
10439
10440 (define-public python-pathlib
10441 (package
10442 (name "python-pathlib")
10443 (version "1.0.1")
10444 (source (origin
10445 (method url-fetch)
10446 (uri (pypi-uri "pathlib" version))
10447 (sha256
10448 (base32
10449 "17zajiw4mjbkkv6ahp3xf025qglkj0805m9s41c45zryzj6p2h39"))))
10450 (build-system python-build-system)
10451 ;; The tests depend on the internal "test" module, which does not provide
10452 ;; a stable interface.
10453 (arguments `(#:tests? #f))
10454 (home-page "https://pathlib.readthedocs.org/")
10455 (synopsis "Object-oriented file system paths")
10456 (description "Pathlib offers a set of classes to handle file system paths.
10457 It offers the following advantages over using string objects:
10458
10459 @enumerate
10460 @item No more cumbersome use of os and os.path functions. Everything can
10461 be done easily through operators, attribute accesses, and method calls.
10462 @item Embodies the semantics of different path types. For example,
10463 comparing Windows paths ignores casing.
10464 @item Well-defined semantics, eliminating any inconsistencies or
10465 ambiguities (forward vs. backward slashes, etc.).
10466 @end enumerate
10467
10468 Note: In Python 3.4, pathlib is now part of the standard library. For other
10469 Python versions please consider python-pathlib2 instead, which tracks the
10470 standard library module. This module (python-pathlib) isn't maintained
10471 anymore.")
10472 (license license:expat)))
10473
10474 (define-public python2-pathlib
10475 (package-with-python2 python-pathlib))
10476
10477 (define-public python2-pathlib2
10478 (package
10479 (name "python2-pathlib2")
10480 (version "2.1.0")
10481 (source (origin
10482 (method url-fetch)
10483 (uri (pypi-uri "pathlib2" version))
10484 (sha256
10485 (base32
10486 "0p050msg5c8d0kadv702jnfshaxrb0il765cpkgnhn6mq5hakcyy"))))
10487 (build-system python-build-system)
10488 ;; We only need the the Python 2 variant, since for Python 3 our minimum
10489 ;; version is 3.4 which already includes this package as part of the
10490 ;; standard library.
10491 (arguments
10492 `(#:python ,python-2))
10493 (native-inputs
10494 `(("python2-six" ,python2-six)))
10495 (home-page "http://pypi.python.org/pypi/pathlib2/")
10496 (synopsis "Object-oriented file system paths - backport of standard
10497 pathlib module")
10498 (description "The goal of pathlib2 is to provide a backport of standard
10499 pathlib module which tracks the standard library module, so all the newest
10500 features of the standard pathlib can be used also on older Python versions.
10501
10502 Pathlib offers a set of classes to handle file system paths. It offers the
10503 following advantages over using string objects:
10504
10505 @enumerate
10506 @item No more cumbersome use of os and os.path functions. Everything can
10507 be done easily through operators, attribute accesses, and method calls.
10508 @item Embodies the semantics of different path types. For example,
10509 comparing Windows paths ignores casing.
10510 @item Well-defined semantics, eliminating any inconsistencies or
10511 ambiguities (forward vs. backward slashes, etc.).
10512 @end enumerate")
10513 (license license:expat)))
10514
10515 (define-public python-jellyfish
10516 (package
10517 (name "python-jellyfish")
10518 (version "0.5.6")
10519 (source (origin
10520 (method url-fetch)
10521 (uri (pypi-uri "jellyfish" version))
10522 (sha256
10523 (base32
10524 "1j9rplb16ba2prjj6mip46z0w9pnhnqpwgiwi0x93vnas14rlyl8"))))
10525 (build-system python-build-system)
10526 (native-inputs
10527 `(("python-pytest" ,python-pytest)))
10528 (home-page "https://github.com/jamesturk/jellyfish")
10529 (synopsis "Approximate and phonetic matching of strings")
10530 (description "Jellyfish uses a variety of string comparison and phonetic
10531 encoding algorithms to do fuzzy string matching.")
10532 (license license:bsd-2)
10533 (properties `((python2-variant . ,(delay python2-jellyfish))))))
10534
10535 (define-public python2-jellyfish
10536 (let ((jellyfish (package-with-python2
10537 (strip-python2-variant python-jellyfish))))
10538 (package (inherit jellyfish)
10539 (native-inputs `(("python2-unicodecsv" ,python2-unicodecsv)
10540 ,@(package-native-inputs jellyfish))))))
10541
10542 (define-public python2-unicodecsv
10543 (package
10544 (name "python2-unicodecsv")
10545 (version "0.14.1")
10546 (source (origin
10547 (method url-fetch)
10548 ;; The test suite is not included in the PyPi release.
10549 ;; https://github.com/jdunck/python-unicodecsv/issues/19
10550 (uri (string-append "https://github.com/jdunck/python-unicodecsv/"
10551 "archive/" version ".tar.gz"))
10552 (file-name (string-append name "-" version ".tar.gz"))
10553 (sha256
10554 (base32
10555 "087nqanfcyp6mlfbbr5lva5f3w6iz1bybls9xlrb8icmc474wh4w"))))
10556 (build-system python-build-system)
10557 (arguments
10558 `(;; It supports Python 3, but Python 3 can already do Unicode CSV.
10559 #:python ,python-2))
10560 (native-inputs
10561 `(("python2-unittest2" ,python2-unittest2)))
10562 (home-page "https://github.com/jdunck/python-unicodecsv")
10563 (synopsis "Unicode CSV module for Python 2")
10564 (description "Unicodecsv is a drop-in replacement for Python 2.7's CSV
10565 module, adding support for Unicode strings.")
10566 (license license:bsd-2)))
10567
10568 (define-public python-rarfile
10569 (package
10570 (name "python-rarfile")
10571 (version "2.8")
10572 (source (origin
10573 (method url-fetch)
10574 (uri (pypi-uri "rarfile" version))
10575 (sha256
10576 (base32
10577 "0qfad483kcbga0bn4qmcz953xjk16r52fahiy46zzn56v80y89ra"))))
10578 (build-system python-build-system)
10579 (arguments
10580 '(#:phases
10581 (modify-phases %standard-phases
10582 (replace 'check
10583 ;; Many tests fail, but the installation proceeds.
10584 (lambda _ (zero? (system* "make" "-C" "test" "test")))))))
10585 (native-inputs
10586 `(("which" ,which))) ; required for tests
10587 (propagated-inputs
10588 `(("libarchive" ,libarchive)))
10589 (home-page "https://github.com/markokr/rarfile")
10590 (synopsis "RAR archive reader for Python")
10591 (description "This is Python module for RAR archive reading. The interface
10592 is made as zipfile like as possible.")
10593 (license license:isc)))
10594
10595 (define-public python2-rarfile
10596 (package-with-python2 python-rarfile))
10597
10598 (define-public python-magic
10599 (package
10600 (name "python-magic")
10601 (version "0.4.3")
10602 (source
10603 (origin
10604 (method url-fetch)
10605 (uri (string-append "https://github.com/ahupp/python-magic/archive/"
10606 version ".tar.gz"))
10607 (sha256
10608 (base32
10609 "17bgy92i7sb021f2s4mw1dcvpm6p1mi9jihridwy1pyn8mzvpjgk"))
10610 (file-name (string-append name "-" version "-checkout"))))
10611 (build-system python-build-system)
10612 (arguments
10613 ;; The tests are unreliable, so don't run them. The tests fail
10614 ;; under Python3 because they were written for Python2 and
10615 ;; contain import statements that do not work in Python3. One of
10616 ;; the tests fails under Python2 because its assertions are
10617 ;; overly stringent; it relies on comparing output strings which
10618 ;; are brittle and can change depending on the version of
10619 ;; libmagic being used and the system on which the test is
10620 ;; running. In my case, under GuixSD 0.10.0, only one test
10621 ;; failed, and it seems to have failed only because the version
10622 ;; of libmagic that is packaged in Guix outputs a slightly
10623 ;; different (but not wrong) string than the one that the test
10624 ;; expected.
10625 '(#:tests? #f
10626 #:phases (modify-phases %standard-phases
10627 ;; Replace a specific method call with a hard-coded
10628 ;; path to the necessary libmagic.so file in the
10629 ;; store. If we don't do this, then the method call
10630 ;; will fail to find the libmagic.so file, which in
10631 ;; turn will cause any application using
10632 ;; python-magic to fail.
10633 (add-before 'build 'hard-code-path-to-libmagic
10634 (lambda* (#:key inputs #:allow-other-keys)
10635 (let ((file (assoc-ref inputs "file")))
10636 (substitute* "magic.py"
10637 (("ctypes.util.find_library\\('magic'\\)")
10638 (string-append "'" file "/lib/libmagic.so'")))
10639 #t)))
10640 (add-before 'install 'disable-egg-compression
10641 (lambda _
10642 (let ((port (open-file "setup.cfg" "a")))
10643 (display "\n[easy_install]\nzip_ok = 0\n"
10644 port)
10645 (close-port port)
10646 #t))))))
10647 (inputs
10648 ;; python-magic needs to be able to find libmagic.so.
10649 `(("file" ,file)))
10650 (home-page "https://github.com/ahupp/python-magic")
10651 (synopsis "File type identification using libmagic")
10652 (description
10653 "This module uses ctypes to access the libmagic file type
10654 identification library. It makes use of the local magic database and
10655 supports both textual and MIME-type output. Note that this module and
10656 the python-file module both provide a \"magic.py\" file; these two
10657 modules, which are different and were developed separately, both serve
10658 the same purpose: to provide Python bindings for libmagic.")
10659 (license license:expat)))
10660
10661 (define-public python2-magic
10662 (package-with-python2 python-magic))
10663
10664 (define-public python2-s3cmd
10665 (package
10666 (name "python2-s3cmd")
10667 (version "1.6.1")
10668 (source
10669 (origin
10670 (method url-fetch)
10671 (uri (string-append "mirror://sourceforge/s3tools/s3cmd/" version "/"
10672 "s3cmd-" version ".tar.gz"))
10673 (sha256
10674 (base32
10675 "0ki1rzhm5icvi9ry5jswi4b22yqwyj0d2wsqsgilwx6qhi7pjxa6"))))
10676 (build-system python-build-system)
10677 (arguments
10678 ;; s3cmd is written for python2 only and contains no tests.
10679 `(#:python ,python-2
10680 #:tests? #f))
10681 (propagated-inputs
10682 `(("python2-dateutil" ,python2-dateutil)
10683 ;; The python-file package also provides a magic.py module.
10684 ;; This is an unfortunate state of affairs; however, s3cmd
10685 ;; fails to install if it cannot find specifically the
10686 ;; python-magic package. Thus we include it, instead of using
10687 ;; python-file. Ironically, s3cmd sometimes works better
10688 ;; without libmagic bindings at all:
10689 ;; https://github.com/s3tools/s3cmd/issues/198
10690 ("python2-magic" ,python2-magic)))
10691 (home-page "http://s3tools.org/s3cmd")
10692 (synopsis "Command line tool for S3-compatible storage services")
10693 (description
10694 "S3cmd is a command line tool for uploading, retrieving and managing data
10695 in storage services that are compatible with the Amazon Simple Storage
10696 Service (S3) protocol, including S3 itself. It supports rsync-like backup,
10697 GnuPG encryption, and more. It also supports management of Amazon's
10698 CloudFront content delivery network.")
10699 (license license:gpl2+)))
10700
10701 (define-public python-pkgconfig
10702 (package
10703 (name "python-pkgconfig")
10704 (version "1.1.0")
10705 (source
10706 (origin
10707 (method url-fetch)
10708 (uri (pypi-uri "pkgconfig" version))
10709 (sha256
10710 (base32
10711 "1pw0kmvc57sjmaxi6c54fqsnihqj6hvhc9y1vaz36axafzqam7bh"))))
10712 (build-system python-build-system)
10713 (native-inputs
10714 `(("python-nose" ,python-nose)))
10715 (inputs
10716 `(("pkg-config" ,pkg-config)))
10717 (arguments
10718 `(;; Tests fail with "ValueError: _type_ 'v' not supported" on Python 3,
10719 ;; and on Python 2 they need the dl module deprecated since Python 2.6.
10720 #:tests? #f
10721 ;; Hard-code the path to pkg-config.
10722 #:phases
10723 (modify-phases %standard-phases
10724 (add-before
10725 'build 'patch
10726 (lambda _
10727 (substitute* "pkgconfig/pkgconfig.py"
10728 (("cmd = 'pkg-config")
10729 (string-append "cmd = '" (which "pkg-config"))))
10730 #t)))))
10731 (home-page "https://github.com/matze/pkgconfig")
10732 (synopsis "Python interface for pkg-config")
10733 (description "This module provides a Python interface to pkg-config. It
10734 can be used to find all pkg-config packages, check if a package exists,
10735 check if a package meets certain version requirements, query CFLAGS and
10736 LDFLAGS and parse the output to build extensions with setup.py.")
10737 (license license:expat)))
10738
10739 (define-public python2-pkgconfig
10740 (package-with-python2 python-pkgconfig))
10741
10742 (define-public python-bz2file
10743 (package
10744 (name "python-bz2file")
10745 (version "0.98")
10746 (source
10747 (origin
10748 (method url-fetch)
10749 (uri (pypi-uri "bz2file" version))
10750 (sha256
10751 (base32
10752 "126s53fkpx04f33a829yqqk8fj4png3qwg4m66cvlmhmwc8zihb4"))))
10753 (build-system python-build-system)
10754 (arguments
10755 `(#:tests? #f)) ; Tests use deprecated python modules.
10756 (home-page "https://github.com/nvawda/bz2file")
10757 (synopsis "Read and write bzip2-compressed files")
10758 (description
10759 "Bz2file is a Python library for reading and writing bzip2-compressed
10760 files. It contains a drop-in replacement for the I/O interface in the
10761 standard library's @code{bz2} module, including features from the latest
10762 development version of CPython that are not available in older releases.")
10763 (license license:asl2.0)
10764 (properties `((python2-variant . ,(delay python2-bz2file))))))
10765
10766 (define-public python2-bz2file
10767 (let ((base (package-with-python2
10768 (strip-python2-variant python-bz2file))))
10769 (package
10770 (inherit base)
10771 (arguments
10772 `(#:python ,python-2
10773 #:phases
10774 (modify-phases %standard-phases
10775 ;; 'python setup.py test' does not work as of 0.98.
10776 ;; There is only the one test file, so we run it directly.
10777 (replace 'check
10778 (lambda _ (zero? (system* "python"
10779 "test_bz2file.py"))))))))))
10780
10781 (define-public python-future
10782 (package
10783 (name "python-future")
10784 (version "0.16.0")
10785 (source
10786 (origin
10787 (method url-fetch)
10788 (uri (pypi-uri "future" version))
10789 (sha256
10790 (base32
10791 "1nzy1k4m9966sikp0qka7lirh8sqrsyainyf8rk97db7nwdfv773"))))
10792 (build-system python-build-system)
10793 ;; Many tests connect to the network or are otherwise flawed.
10794 ;; https://github.com/PythonCharmers/python-future/issues/210
10795 (arguments
10796 `(#:tests? #f))
10797 (home-page "http://python-future.org")
10798 (synopsis "Single-source support for Python 3 and 2")
10799 (description
10800 "@code{python-future} is the missing compatibility layer between Python 2 and
10801 Python 3. It allows you to use a single, clean Python 3.x-compatible codebase
10802 to support both Python 2 and Python 3 with minimal overhead.")
10803 (license license:expat)))
10804
10805 (define-public python2-future
10806 (package-with-python2 python-future))
10807
10808 (define-public python-cysignals
10809 (package
10810 (name "python-cysignals")
10811 (version "1.1.0")
10812 (source
10813 (origin
10814 (method url-fetch)
10815 (uri (pypi-uri "cysignals" version ".tar.bz2"))
10816 (sha256
10817 (base32
10818 "14cbyd9znlz6cxy1s3g6v6dv5jj45hn27pywkidd9b1zanaysqc6"))))
10819 (build-system python-build-system)
10820 (native-inputs
10821 `(("python-cython" ,python-cython)
10822 ("python-sphinx" ,python-sphinx)))
10823 (inputs
10824 `(("pari-gp" ,pari-gp)))
10825 (arguments
10826 `(#:modules ((guix build python-build-system)
10827 ((guix build gnu-build-system) #:prefix gnu:)
10828 (guix build utils))
10829 ;; FIXME: Tests are executed after installation and currently fail
10830 ;; when not installing into standard locations; the author is working
10831 ;; on a fix.
10832 #:tests? #f
10833 #:phases
10834 (modify-phases %standard-phases
10835 (add-before
10836 'build 'configure
10837 (assoc-ref gnu:%standard-phases 'configure)))))
10838 (home-page
10839 "https://github.com/sagemath/cysignals")
10840 (synopsis
10841 "Handling of interrupts and signals for Cython")
10842 (description
10843 "The cysignals package provides mechanisms to handle interrupts (and
10844 other signals and errors) in Cython code, using two related approaches,
10845 for mixed Cython/Python code or external C libraries and pure Cython code,
10846 respectively.")
10847 (license license:lgpl3+)))
10848
10849 (define-public python2-cysignals
10850 (package-with-python2 python-cysignals))
10851
10852 (define-public python2-shedskin
10853 (package
10854 (name "python2-shedskin")
10855 (version "0.9.4")
10856 (source
10857 (origin
10858 (method url-fetch)
10859 (uri (string-append "https://github.com/shedskin/shedskin/"
10860 "releases/download/v" version
10861 "/shedskin-" version ".tgz"))
10862 (sha256
10863 (base32
10864 "0nzwrzgw1ga8rw6f0ryq7zr9kkiavd1cqz5hzxkcbicl1dk7kz41"))))
10865 (build-system python-build-system)
10866 (arguments
10867 `(#:python ,python-2
10868 #:phases (modify-phases %standard-phases
10869 (add-after 'unpack 'fix-resulting-include-libs
10870 (lambda* (#:key inputs #:allow-other-keys)
10871 (let ((libgc (assoc-ref inputs "libgc"))
10872 (pcre (assoc-ref inputs "pcre")))
10873 (substitute* "shedskin/makefile.py"
10874 (("variable == 'CCFLAGS':[ ]*")
10875 (string-append "variable == 'CCFLAGS':\n"
10876 " line += ' -I " pcre "/include"
10877 " -I " libgc "/include'"))
10878 (("variable == 'LFLAGS':[ ]*")
10879 (string-append "variable == 'LFLAGS':\n"
10880 " line += ' -L" pcre "/lib"
10881 " -L " libgc "/lib'")))
10882 #t))))))
10883 (inputs `(("pcre" ,pcre)
10884 ("libgc" ,libgc)))
10885 (home-page "https://shedskin.github.io/")
10886 (synopsis "Experimental Python-2 to C++ Compiler")
10887 (description (string-append "This is an experimental compiler for a subset of
10888 Python. It generates C++ code and a Makefile."))
10889 (license (list license:gpl3 license:bsd-3 license:expat))))
10890
10891 (define-public python2-rope
10892 (package
10893 (name "python2-rope")
10894 (version "0.10.3")
10895 (source
10896 (origin
10897 (method url-fetch)
10898 (uri (pypi-uri "rope" version))
10899 (sha256
10900 (base32
10901 "18k5znhpwvrfck3yp0jmhd5j8r0f0s8bk1zh5yhs2cfgmfhbwigb"))))
10902 (arguments
10903 ;; Rope is currently python-2 only.
10904 ;; https://github.com/python-rope/rope/issues/57
10905 `(#:python ,python-2))
10906 (build-system python-build-system)
10907 (native-inputs
10908 `(("python2-unittest2" ,python2-unittest2)))
10909 (home-page "https://github.com/python-rope/rope")
10910 (synopsis "Refactoring library for Python")
10911 (description "Rope is a refactoring library for Python. It facilitates
10912 the renaming, moving and extracting of attributes, functions, modules, fields
10913 and parameters in Python 2 source code. These refactorings can also be applied
10914 to occurrences in strings and comments.")
10915 (license license:gpl2)))
10916
10917 (define-public python-py3status
10918 (package
10919 (name "python-py3status")
10920 (version "3.1")
10921 (source
10922 (origin
10923 (method url-fetch)
10924 (uri (pypi-uri "py3status" version))
10925 (sha256
10926 (base32
10927 "0i283z1pivmir61z8kbiycigc94l61v33ygzkhczf1ifq7cppyds"))))
10928 (build-system python-build-system)
10929 (arguments
10930 '(#:tests? #f)) ; TODO: Requires many libraries not in Guix.
10931 (home-page "https://github.com/ultrabug/py3status")
10932 (synopsis "Extensible i3status wrapper written in Python")
10933 (description "py3status is an i3status wrapper which extends i3status
10934 functionality in a modular way, allowing you to extend your panel with your
10935 own code, responding to click events and updating clock every second.")
10936 (license license:bsd-3)))
10937
10938 (define-public python-tblib
10939 (package
10940 (name "python-tblib")
10941 (version "1.3.0")
10942 (source (origin
10943 (method url-fetch)
10944 (uri (pypi-uri "tblib" version))
10945 (sha256 (base32
10946 "02iahfkfa927hb4jq2bak36ldihwapzacfiq5lyxg8llwn98a1yi"))))
10947 (build-system python-build-system)
10948 (arguments
10949 `(#:phases
10950 (modify-phases %standard-phases
10951 (replace 'check
10952 (lambda _
10953 ;; Upstream runs tests after installation and the package itself
10954 ;; resides in a subdirectory. Extend PYTHONPATH so it will be
10955 ;; found.
10956 (setenv "PYTHONPATH"
10957 (string-append (getcwd) "/build/lib:"
10958 (getenv "PYTHONPATH")))
10959 (zero? (system* "py.test" "-vv" "tests" "README.rst")))))))
10960 (native-inputs
10961 `(("python-pytest" ,python-pytest)
10962 ("python-six" ,python-six)))
10963 (home-page "https://github.com/ionelmc/python-tblib")
10964 (synopsis "Traceback serialization library")
10965 (description
10966 "Traceback serialization allows you to:
10967
10968 @enumerate
10969 @item Pickle tracebacks and raise exceptions with pickled tracebacks in
10970 different processes. This allows better error handling when running code over
10971 multiple processes (imagine multiprocessing, billiard, futures, celery etc).
10972
10973 @item Parse traceback strings and raise with the parsed tracebacks.
10974 @end enumerate\n")
10975 (license license:bsd-3)))
10976
10977 (define-public python2-tblib
10978 (package-with-python2 python-tblib))
10979
10980 (define-public python-sqlparse
10981 (package
10982 (name "python-sqlparse")
10983 (version "0.1.19")
10984 (source (origin
10985 (method url-fetch)
10986 (uri (pypi-uri "sqlparse" version))
10987 (sha256
10988 (base32
10989 "1s2fvaxgh9kqzrd6iwy5h7i61ckn05plx9np13zby93z3hdbx5nq"))))
10990 (build-system python-build-system)
10991 (arguments
10992 `(#:phases
10993 (modify-phases %standard-phases
10994 (replace 'check
10995 (lambda* _
10996 ;; setup.py-integrated 2to3 only affects the build files, but
10997 ;; py.test is using the source files. So we need to convert them
10998 ;; manually.
10999 (when (zero? (system* "python3"))
11000 (system* "2to3" "--no-diff" "-wn" "sqlparse" "tests"))
11001 (zero? (system* "py.test")))))))
11002 (native-inputs
11003 `(("python-pytest" ,python-pytest)))
11004 (home-page "https://github.com/andialbrecht/sqlparse")
11005 (synopsis "Non-validating SQL parser")
11006 (description "Sqlparse is a non-validating SQL parser for Python. It
11007 provides support for parsing, splitting and formatting SQL statements.")
11008 (license license:bsd-3)))
11009
11010 (define-public python2-sqlparse
11011 (package-with-python2 python-sqlparse))
11012
11013 (define-public python-greenlet
11014 (package
11015 (name "python-greenlet")
11016 (version "0.4.11")
11017 (source (origin
11018 (method url-fetch)
11019 (uri (pypi-uri "greenlet" version))
11020 (sha256
11021 (base32
11022 "1xhik26j4f3kc4qw9xmj0c567rb5h1zryb4ijwqnqwwjvfhbv59h"))))
11023 (build-system python-build-system)
11024 (home-page "https://greenlet.readthedocs.io/")
11025 (synopsis "Lightweight in-process concurrent programming")
11026 (description
11027 "Greenlet package is a spin-off of Stackless, a version of CPython
11028 that supports micro-threads called \"tasklets\". Tasklets run
11029 pseudo-concurrently (typically in a single or a few OS-level threads) and
11030 are synchronized with data exchanges on \"channels\".")
11031 (license (list license:psfl license:expat))))
11032
11033 (define-public python2-greenlet
11034 (package-with-python2 python-greenlet))
11035
11036 (define-public python-gevent
11037 (package
11038 (name "python-gevent")
11039 (version "1.1.1")
11040 (source (origin
11041 (method url-fetch)
11042 (uri (pypi-uri "gevent" version))
11043 (sha256
11044 (base32
11045 "1smf3kvidpdiyi2c81alal74p2zm0clrm6xbyy6y1k9a3f2vkrbf"))
11046 (modules '((guix build utils)))
11047 (snippet
11048 '(begin
11049 ;; unbunding libev and c-ares
11050 (for-each delete-file-recursively '("libev" "c-ares"))
11051 ;; fixing testsuite
11052 (call-with-output-file "greentest/__init__.py" noop)
11053 (substitute* "greentest/testrunner.py"
11054 (("import util") "from . import util")
11055 (("from util import log") "from .util import log"))))))
11056 (build-system python-build-system)
11057 (propagated-inputs
11058 `(("python-greenlet" ,python-greenlet)))
11059 (native-inputs
11060 `(("python-six" ,python-six)))
11061 (inputs
11062 `(("c-ares" ,c-ares)
11063 ("libev" ,libev)))
11064 (home-page "http://www.gevent.org/")
11065 (synopsis "Coroutine-based network library")
11066 (description
11067 "gevent is a coroutine-based Python networking library that uses greenlet
11068 to provide a high-level synchronous API on top of the libev event loop.")
11069 (license license:expat)))
11070
11071 (define-public python2-gevent
11072 (package-with-python2 python-gevent))
11073
11074 (define-public python-geventhttpclient
11075 (package
11076 (name "python-geventhttpclient")
11077 (version "1.3.1")
11078 (source (origin
11079 (method url-fetch)
11080 (uri (pypi-uri "geventhttpclient" version))
11081 (sha256
11082 (base32
11083 "07d0q3wzmml75227r6y6mrl5a0zpf4v9gj0ni5rhbyzmaj4az1xx"))
11084 (modules '((guix build utils)))
11085 (snippet
11086 '(begin
11087 ;; Delete pre-compiled files.
11088 (for-each delete-file (find-files "src/geventhttpclient"
11089 ".*\\.pyc"))
11090 #t))))
11091 (build-system python-build-system)
11092 (arguments
11093 '(#:phases
11094 (modify-phases %standard-phases
11095 (add-after 'unpack 'delete-network-tests
11096 (lambda _
11097 (delete-file "src/geventhttpclient/tests/test_client.py")
11098 #t))
11099 (delete 'check)
11100 (add-after 'install 'check
11101 (lambda* (#:key inputs outputs #:allow-other-keys)
11102 (add-installed-pythonpath inputs outputs)
11103 (zero? (system* "py.test" "src/geventhttpclient/tests" "-v")))))))
11104 (native-inputs
11105 `(("python-pytest" ,python-pytest)))
11106 (propagated-inputs
11107 `(("python-certifi" ,python-certifi)
11108 ("python-gevent" ,python-gevent)
11109 ("python-six" ,python-six)))
11110 (home-page "https://github.com/gwik/geventhttpclient")
11111 (synopsis "HTTP client library for gevent")
11112 (description "@code{python-geventhttpclient} is a high performance,
11113 concurrent HTTP client library for python using @code{gevent}.")
11114 (license license:expat)))
11115
11116 (define-public python2-geventhttpclient
11117 (package-with-python2 python-geventhttpclient))
11118
11119 (define-public python-fastimport
11120 (package
11121 (name "python-fastimport")
11122 (version "0.9.6")
11123 (source
11124 (origin
11125 (method url-fetch)
11126 (uri (pypi-uri "fastimport" version))
11127 (sha256
11128 (base32 "1aqjsin4rmqm7ln4j0p73fzxifws6c6ikgyhav7r137m2ixsxl43"))))
11129 (build-system python-build-system)
11130 (home-page "https://github.com/jelmer/python-fastimport")
11131 (synopsis "VCS fastimport parser and generator in Python")
11132 (description "This package provides a parser for and generator of the Git
11133 @url{https://www.kernel.org/pub/software/scm/git/docs/git-fast-import.html,fastimport}
11134 format.")
11135 (license license:gpl2+)))
11136
11137 (define-public python2-fastimport
11138 (package-with-python2 python-fastimport))
11139
11140 (define-public python-twisted
11141 (package
11142 (name "python-twisted")
11143 (version "16.2.0")
11144 (source (origin
11145 (method url-fetch)
11146 (uri (pypi-uri "Twisted" version ".tar.bz2"))
11147 (sha256
11148 (base32
11149 "0ydxrp9myw1mvsz3qfzx5579y5llmqa82pxvqchgp5syczffi450"))))
11150 (build-system python-build-system)
11151 (arguments
11152 '(#:tests? #f)) ; FIXME: Some tests are failing.
11153 ;; #:phases
11154 ;; (modify-phases %standard-phases
11155 ;; (replace 'check
11156 ;; (lambda _
11157 ;; (zero? (system* "./bin/trial" "twisted")))))
11158 (propagated-inputs
11159 `(("python-zope-interface" ,python-zope-interface)))
11160 (home-page "https://twistedmatrix.com/")
11161 (synopsis "Asynchronous networking framework written in Python")
11162 (description
11163 "Twisted is an extensible framework for Python programming, with special
11164 focus on event-based network programming and multiprotocol integration.")
11165 (license license:expat)))
11166
11167 (define-public python2-twisted
11168 (package-with-python2 python-twisted))
11169
11170 (define-public python-pika
11171 (package
11172 (name "python-pika")
11173 (version "0.10.0")
11174 (source
11175 (origin
11176 (method url-fetch)
11177 (uri (pypi-uri "pika" version))
11178 (sha256
11179 (base32
11180 "0nb4h08di432lv7dy2v9kpwgk0w92f24sqc2hw2s9vwr5b8v8xvj"))))
11181 (build-system python-build-system)
11182 (native-inputs
11183 `(("python-pyev" ,python-pyev)
11184 ("python-tornado" ,python-tornado)
11185 ("python-twisted" ,python-twisted)))
11186 (home-page "https://pika.readthedocs.org")
11187 (synopsis "Pure Python AMQP Client Library")
11188 (description
11189 "Pika is a pure-Python implementation of the AMQP (Advanced Message Queuing
11190 Protocol) 0-9-1 protocol that tries to stay fairly independent of the underlying
11191 network support library.")
11192 (license license:bsd-3)))
11193
11194 (define-public python2-pika
11195 (package-with-python2 python-pika))
11196
11197 (define-public python-ply
11198 (package
11199 (name "python-ply")
11200 (version "3.9")
11201 (source
11202 (origin
11203 (method url-fetch)
11204 (uri (pypi-uri "ply" version))
11205 (sha256
11206 (base32
11207 "0gpl0yli3w03ipyqfrp3w5nf0iawhsq65anf5wwm2wf5p502jzhd"))))
11208 (build-system python-build-system)
11209 (home-page "http://www.dabeaz.com/ply/")
11210 (synopsis "Python Lex & Yacc")
11211 (description "PLY is a @code{lex}/@code{yacc} implemented purely in Python.
11212 It uses LR parsing and does extensive error checking.")
11213 (license license:bsd-3)))
11214
11215 (define-public python2-ply
11216 (package-with-python2 python-ply))
11217
11218 (define-public python-tabulate
11219 (package
11220 (name "python-tabulate")
11221 (version "0.7.7")
11222 (source (origin
11223 (method url-fetch)
11224 (uri (pypi-uri "tabulate" version))
11225 (sha256
11226 (base32
11227 "1inqhspd4frxnp08c32yndr0lc4px1xfkqah184i5w09gkhvi843"))))
11228 (build-system python-build-system)
11229 (arguments
11230 ;; FIXME: The pypi release tarball is missing a 'test/common.py'
11231 ;; and the latest release is not tagged in the upstream repository.
11232 '(#:tests? #f))
11233 (home-page "https://bitbucket.org/astanin/python-tabulate")
11234 (synopsis "Pretty-print tabular data")
11235 (description
11236 "Tabulate is a library and command-line utility to pretty-print tabular
11237 data in Python.")
11238 (license license:expat)))
11239
11240 (define-public python2-tabulate
11241 (package-with-python2 python-tabulate))
11242
11243 (define-public python-kazoo
11244 (package
11245 (name "python-kazoo")
11246 (version "2.2.1")
11247 (source
11248 (origin
11249 (method url-fetch)
11250 (uri (pypi-uri "kazoo" version))
11251 (sha256
11252 (base32
11253 "10pb864if9qi2pq9lfb9m8f7z7ss6rml80gf1d9h64lap5crjnjj"))))
11254 (build-system python-build-system)
11255 (arguments '(#:tests? #f)) ; XXX: needs zookeeper
11256 (propagated-inputs
11257 `(("python-six" ,python-six)))
11258 (home-page "https://kazoo.readthedocs.org")
11259 (synopsis "High-level Zookeeper client library")
11260 (description
11261 "Kazoo is a Python client library for the Apache Zookeeper distributed
11262 application service. It is designed to be easy to use and to avoid common
11263 programming errors.")
11264 (license license:asl2.0)))
11265
11266 (define-public python2-kazoo
11267 (package-with-python2 python-kazoo))
11268
11269 (define-public python-pykafka
11270 (package
11271 (name "python-pykafka")
11272 (version "2.4.0")
11273 (source (origin
11274 (method url-fetch)
11275 (uri (string-append
11276 "https://pypi.python.org/packages/8b/3e/"
11277 "384eeff406b06315738b62483fd2126c6e4f544167116b17cc04ea7d2a59/"
11278 "pykafka-" version ".tar.gz"))
11279 (sha256
11280 (base32
11281 "1id6sr159p6aa13bxcqyr9gln8sqg1l0ddzns5iws8kk5q1p5cfv"))))
11282 (build-system python-build-system)
11283 (arguments '(#:tests? #f)) ; XXX: needs zookeeper, kafka, etc.
11284 (propagated-inputs
11285 `(("python-gevent" ,python-gevent)
11286 ("python-kazoo" ,python-kazoo)
11287 ("python-tabulate" ,python-tabulate)))
11288 (inputs
11289 `(("librdkafka" ,librdkafka)))
11290 (home-page "https://pykafka.readthedocs.io/")
11291 (synopsis "Apache Kafka client for Python")
11292 (description
11293 "PyKafka is a client for the Apache Kafka distributed messaging system.
11294 It includes Python implementations of Kafka producers and consumers, which
11295 are optionally backed by a C extension built on librdkafka.")
11296 (license license:asl2.0)))
11297
11298 (define-public python2-pykafka
11299 (package-with-python2 python-pykafka))
11300
11301 (define-public python-wcwidth
11302 (package
11303 (name "python-wcwidth")
11304 (version "0.1.7")
11305 (source
11306 (origin
11307 (method url-fetch)
11308 (uri (pypi-uri "wcwidth" version))
11309 (sha256
11310 (base32
11311 "0pn6dflzm609m4r3i8ik5ni9ijjbb5fa3vg1n7hn6vkd49r77wrx"))))
11312 (build-system python-build-system)
11313 (home-page "https://github.com/jquast/wcwidth")
11314 (synopsis "Measure number of terminal column cells of wide-character codes")
11315 (description "Wcwidth measures the number of terminal column cells of
11316 wide-character codes. It is useful for those implementing a terminal emulator,
11317 or programs that carefully produce output to be interpreted by one. It is a
11318 Python implementation of the @code{wcwidth} and @code{wcswidth} C functions
11319 specified in POSIX.1-2001 and POSIX.1-2008.")
11320 (license license:expat)))
11321
11322 (define-public python2-wcwidth
11323 (package-with-python2 python-wcwidth))
11324
11325 (define-public python2-jsonrpclib
11326 (package
11327 (name "python2-jsonrpclib")
11328 (version "0.1.7")
11329 (source (origin
11330 (method url-fetch)
11331 (uri (string-append
11332 "https://pypi.python.org/packages/source/j/jsonrpclib/"
11333 "jsonrpclib-" version ".tar.gz"))
11334 (sha256
11335 (base32
11336 "02vgirw2bcgvpcxhv5hf3yvvb4h5wzd1lpjx8na5psdmaffj6l3z"))))
11337 (build-system python-build-system)
11338 (arguments
11339 `(#:tests? #f
11340 #:python ,python-2))
11341 (home-page "https://github.com/joshmarshall/jsonrpclib/")
11342 (synopsis "Implementation of JSON-RPC specification for Python")
11343 (description
11344 "This library is an implementation of the JSON-RPC specification.
11345 It supports both the original 1.0 specification, as well as the
11346 new (proposed) 2.0 spec, which includes batch submission, keyword arguments,
11347 etc.")
11348 (license license:asl2.0)))
11349
11350 (define-public python-chai
11351 (package
11352 (name "python-chai")
11353 (version "1.1.1")
11354 (source (origin
11355 (method url-fetch)
11356 (uri (pypi-uri "chai" version))
11357 (sha256
11358 (base32
11359 "016kf3irrclpkpvcm7q0gmkfibq7jgy30a9v73pp42bq9h9a32bl"))))
11360 (build-system python-build-system)
11361 (home-page "https://github.com/agoragames/chai")
11362 (synopsis "Mocking framework for Python")
11363 (description
11364 "Chai provides an api for mocking, stubbing and spying your python
11365 objects, patterned after the Mocha library for Ruby.")
11366 (license license:bsd-3)))
11367
11368 (define-public python2-chai
11369 (package-with-python2 python-chai))
11370
11371 (define-public python-arrow
11372 (package
11373 (name "python-arrow")
11374 (version "0.8.0")
11375 (source (origin
11376 (method url-fetch)
11377 (uri (pypi-uri "arrow" version))
11378 (sha256
11379 (base32
11380 "1bz7hkdgpqcjs866y58z8jywpy7al0f4rxdr00bh2l5qddyw245j"))))
11381 (build-system python-build-system)
11382 (native-inputs
11383 `(;; For testing
11384 ("python-chai" ,python-chai)
11385 ("python-simplejson" ,python-simplejson)))
11386 (propagated-inputs
11387 `(("python-dateutil" ,python-dateutil)))
11388 (home-page "https://github.com/crsmithdev/arrow/")
11389 (synopsis "Dates and times for Python")
11390 (description
11391 "Arrow is a Python library to creating, manipulating, formatting and
11392 converting dates, times, and timestamps. It implements and updates the
11393 datetime type.")
11394 (license license:asl2.0)))
11395
11396 (define-public python2-arrow
11397 (package-with-python2 python-arrow))
11398
11399 (define-public python-inflection
11400 (package
11401 (name "python-inflection")
11402 (version "0.3.1")
11403 (source
11404 (origin (method url-fetch)
11405 (uri (pypi-uri "inflection" version))
11406 (sha256
11407 (base32
11408 "1jhnxgnw8y3mbzjssixh6qkc7a3afc4fygajhqrqalnilyvpzshq"))))
11409 (build-system python-build-system)
11410 (native-inputs
11411 `(("python-pytest" ,python-pytest)))
11412 (home-page "https://github.com/jpvanhal/inflection")
11413 (synopsis "Python string transformation library")
11414 (description
11415 "Inflection is a string transformation library. It singularizes
11416 and pluralizes English words, and transforms strings from CamelCase to
11417 underscored string.")
11418 (license license:expat)))
11419
11420 (define-public python2-inflection
11421 (package-with-python2 python-inflection))
11422
11423 (define-public python-pylev
11424 (package
11425 (name "python-pylev")
11426 (version "1.3.0")
11427 (source (origin
11428 (method url-fetch)
11429 (uri (pypi-uri "pylev" version))
11430 (sha256
11431 (base32
11432 "1hz1x9blsbxya1y9nnhnwwdnqmakxi9mc0jkwj0rn6b1h44i0f86"))))
11433 (build-system python-build-system)
11434 (home-page "https://github.com/toastdriven/pylev")
11435 (synopsis "Levenshtein distance implementation in Python")
11436 (description "Pure Python Levenshtein implementation, based off the
11437 Wikipedia code samples at
11438 @url{http://en.wikipedia.org/wiki/Levenshtein_distance}.")
11439 (license license:bsd-3)))
11440
11441 (define-public python2-pylev
11442 (package-with-python2 python-pylev))
11443
11444 (define-public python-cleo
11445 (package
11446 (name "python-cleo")
11447 (version "0.4.1")
11448 (source (origin
11449 (method url-fetch)
11450 (uri (pypi-uri "cleo" version))
11451 (sha256
11452 (base32
11453 "1k2dcl6mqpn5bljyl6w42rqyd9mb3y9kh2mg7m2x3kfjwvg0rpva"))))
11454 (build-system python-build-system)
11455 (native-inputs
11456 `(;; For testing
11457 ("python-mock" ,python-mock)
11458 ("python-pytest" ,python-pytest)))
11459 (propagated-inputs
11460 `(("python-psutil" ,python-psutil)
11461 ("python-pylev" ,python-pylev)))
11462 (home-page "https://github.com/sdispater/cleo")
11463 (synopsis "Command-line arguments library for Python")
11464 (description
11465 "Cleo allows you to create command-line commands with signature in
11466 docstring and colored output.")
11467 (license license:expat)))
11468
11469 (define-public python2-cleo
11470 (package-with-python2 python-cleo))
11471
11472 (define-public python-lazy-object-proxy
11473 (package
11474 (name "python-lazy-object-proxy")
11475 (version "1.2.2")
11476 (source (origin
11477 (method url-fetch)
11478 (uri (pypi-uri "lazy-object-proxy" version))
11479 (sha256
11480 (base32
11481 "0s22aqqkdscyh8sjspyyax7qa1aiz8p4midrnyf39717fhfczm6x"))))
11482 (build-system python-build-system)
11483 (home-page "https://github.com/ionelmc/python-lazy-object-proxy")
11484 (synopsis "Lazy object proxy for python")
11485 (description
11486 "Lazy object proxy is an object that wraps a callable but defers the call
11487 until the object is actually required, and caches the result of said call.")
11488 (license license:bsd-2)))
11489
11490 (define-public python2-lazy-object-proxy
11491 (package-with-python2 python-lazy-object-proxy))
11492
11493 (define-public python-dnspython
11494 (package
11495 (name "python-dnspython")
11496 (version "1.15.0")
11497 (source (origin
11498 (method url-fetch)
11499 (uri (string-append "http://www.dnspython.org/kits/"
11500 version "/dnspython-" version ".tar.gz"))
11501 (sha256
11502 (base32
11503 "0jr4v2pd90i6l1xxbss2m05psbjaxvyvvvpq44wycijpfgjqln8i"))))
11504 (build-system python-build-system)
11505 (arguments '(#:tests? #f)) ; XXX: requires internet access
11506 (home-page "http://www.dnspython.org")
11507 (synopsis "DNS toolkit for Python")
11508 (description
11509 "dnspython is a DNS toolkit for Python. It supports almost all record
11510 types. It can be used for queries, zone transfers, and dynamic updates.
11511 It supports TSIG authenticated messages and EDNS0.")
11512 (license license:expat)))
11513
11514 (define-public python2-dnspython
11515 (package-with-python2 python-dnspython))
11516
11517 (define-public python-email-validator
11518 (package
11519 (name "python-email-validator")
11520 (version "1.0.2")
11521 (source
11522 (origin (method url-fetch)
11523 (uri (pypi-uri "email_validator" version))
11524 (sha256
11525 (base32
11526 "1ja9149l9ck5n45a72h3is7v476hjny5ybxbcamx1nw6iplsm7k6"))))
11527 (build-system python-build-system)
11528 (arguments
11529 '(#:phases
11530 (modify-phases %standard-phases
11531 (add-before 'build 'use-dnspython
11532 (lambda _
11533 (substitute* "setup.py"
11534 (("dnspython3") "dnspython"))
11535 #t)))))
11536 (propagated-inputs
11537 `(("python-dnspython" ,python-dnspython)
11538 ("python-idna" ,python-idna)))
11539 (home-page "https://github.com/JoshData/python-email-validator")
11540 (synopsis "Email address validation library for Python")
11541 (description
11542 "This library validates email address syntax and deliverability.")
11543 (license license:cc0)))
11544
11545 (define-public python2-email-validator
11546 (package-with-python2 python-email-validator))
11547
11548 (define-public python-ukpostcodeparser
11549 (package
11550 (name "python-ukpostcodeparser")
11551 (version "1.0.3")
11552 (source (origin
11553 (method url-fetch)
11554 (uri (pypi-uri "UkPostcodeParser" version))
11555 (sha256
11556 (base32
11557 "1jwg9z4rz51mcka1821rwgycsd0mcicyp1kiwjfa2kvg8bm9p2qd"))))
11558 (build-system python-build-system)
11559 (home-page "https://github.com/hamstah/ukpostcodeparser")
11560 (synopsis "UK Postcode parser for Python")
11561 (description
11562 "This library provides the @code{parse_uk_postcode} function for
11563 parsing UK postcodes.")
11564 (license license:expat)))
11565
11566 (define-public python2-ukpostcodeparser
11567 (package-with-python2 python-ukpostcodeparser))
11568
11569 (define-public python-faker
11570 (package
11571 (name "python-faker")
11572 (version "0.7.9")
11573 (source (origin
11574 (method url-fetch)
11575 (uri (pypi-uri "Faker" version))
11576 (sha256
11577 (base32
11578 "1fh2p2yz0fsdr4fqwxgddwbvfb6qn6vp8yx0qwqzra27yq5d1wsm"))
11579 (patches
11580 (search-patches "python-faker-fix-build-32bit.patch"))
11581 (modules '((guix build utils)))
11582 (snippet
11583 '(begin
11584 (for-each delete-file (find-files "." "\\.pyc$"))
11585 #t))))
11586 (build-system python-build-system)
11587 (arguments
11588 '(#:phases
11589 (modify-phases %standard-phases
11590 (replace 'check
11591 (lambda _
11592 (zero? (system* "python" "-m" "unittest" "-v" "tests")))))))
11593 (native-inputs
11594 `(;; For testing
11595 ("python-email-validator" ,python-email-validator)
11596 ("python-mock" ,python-mock)
11597 ("python-ukpostcodeparser" ,python-ukpostcodeparser)))
11598 (propagated-inputs
11599 `(("python-dateutil" ,python-dateutil)
11600 ("python-six" ,python-six)))
11601 (home-page "https://github.com/joke2k/faker")
11602 (synopsis "Python package that generates fake data")
11603 (description
11604 "Faker is a Python package that generates fake data such as names,
11605 addresses, and phone numbers.")
11606 (license license:expat)
11607 (properties `((python2-variant . ,(delay python2-faker))))))
11608
11609 (define-public python2-faker
11610 (let ((base (package-with-python2 (strip-python2-variant
11611 python-faker))))
11612 (package
11613 (inherit base)
11614 (propagated-inputs
11615 `(("python2-ipaddress" ,python2-ipaddress)
11616 ,@(package-propagated-inputs base))))))
11617
11618 (define-public python-fake-factory
11619 (package
11620 (name "python-fake-factory")
11621 (version "0.7.2")
11622 (source (origin
11623 (method url-fetch)
11624 (uri (pypi-uri "fake-factory" version))
11625 (sha256
11626 (base32
11627 "0vs0dkmg0dlaxf8w6q2i3k0i03gmp56ablldv7ci9x3nbadkn71g"))
11628 (patches
11629 (search-patches
11630 "python-fake-factory-fix-build-32bit.patch"))))
11631 (build-system python-build-system)
11632 (arguments
11633 '(#:phases
11634 (modify-phases %standard-phases
11635 (replace 'check
11636 (lambda _
11637 (zero? (system* "python" "-m" "unittest" "-v" "faker.tests")))))))
11638 (native-inputs
11639 `(;; For testing
11640 ("python-email-validator" ,python-email-validator)
11641 ("python-mock" ,python-mock)
11642 ("python-ukpostcodeparser" ,python-ukpostcodeparser)))
11643 (propagated-inputs
11644 `(("python-dateutil" ,python-dateutil)
11645 ("python-six" ,python-six)))
11646 (home-page "https://github.com/joke2k/faker")
11647 (synopsis "Python package that generates fake data")
11648 (description
11649 "Faker is a Python package that generates fake data such as names,
11650 addresses, and phone numbers.")
11651 (license license:expat)
11652 (properties `((python2-variant . ,(delay python2-fake-factory))
11653 (superseded . ,python-faker)))))
11654
11655 (define-public python2-fake-factory
11656 (let ((base (package-with-python2 (strip-python2-variant
11657 python-fake-factory))))
11658 (package
11659 (inherit base)
11660 (properties `((superseded . ,python2-faker)))
11661 (propagated-inputs
11662 `(("python2-ipaddress" ,python2-ipaddress)
11663 ,@(package-propagated-inputs base))))))
11664
11665 (define-public python-pyaml
11666 (package
11667 (name "python-pyaml")
11668 (version "15.8.2")
11669 (source (origin
11670 (method url-fetch)
11671 (uri (pypi-uri "pyaml" version))
11672 (sha256
11673 (base32
11674 "1f5m28vkh4ksq3d80d8mmd2z8wxvc3mgy2pmrv2751dm2xgznm4w"))))
11675 (build-system python-build-system)
11676 (native-inputs
11677 `(("python-unidecode" ,python-unidecode)))
11678 (propagated-inputs
11679 `(("python-pyyaml" ,python-pyyaml)))
11680 (home-page "https://github.com/mk-fg/pretty-yaml")
11681 (synopsis "YAML pretty-print library for Python")
11682 (description
11683 "pyaml is a PyYAML based python module to produce pretty and readable
11684 YAML-serialized data.")
11685 (license (license:non-copyleft "http://www.wtfpl.net/txt/copying/"))))
11686
11687 (define-public python2-pyaml
11688 (package-with-python2 python-pyaml))
11689
11690 (define-public python-flexmock
11691 (package
11692 (name "python-flexmock")
11693 (version "0.10.2")
11694 (source (origin
11695 (method url-fetch)
11696 (uri (pypi-uri "flexmock" version))
11697 (sha256
11698 (base32
11699 "0arc6njvs6i9v9hgvzk5m50296g7zy5m9d7pyb43vdsdgxrci5gy"))))
11700 (build-system python-build-system)
11701 (home-page "https://flexmock.readthedocs.org")
11702 (synopsis "Testing library for Python")
11703 (description
11704 "flexmock is a testing library for Python that makes it easy to create
11705 mocks, stubs and fakes.")
11706 (license license:bsd-3)))
11707
11708 (define-public python2-flexmock
11709 (package-with-python2 python-flexmock))
11710
11711 (define-public python-orator
11712 (package
11713 (name "python-orator")
11714 (version "0.8.2")
11715 (source (origin
11716 (method url-fetch)
11717 (uri (pypi-uri "orator" version))
11718 (sha256
11719 (base32
11720 "1li49irsqha17nrda4nsb48biyy0rarp9pphf0jpqwm5zr8hv569"))))
11721 (build-system python-build-system)
11722 (arguments '(#:tests? #f)) ; no tests
11723 (propagated-inputs
11724 `(("python-arrow" ,python-arrow)
11725 ("python-blinker" ,python-blinker)
11726 ("python-cleo" ,python-cleo)
11727 ("python-faker" ,python-faker)
11728 ("python-inflection" ,python-inflection)
11729 ("python-lazy-object-proxy" ,python-lazy-object-proxy)
11730 ("python-pyaml" ,python-pyaml)
11731 ("python-simplejson" ,python-simplejson)
11732 ("python-wrapt" ,python-wrapt)))
11733 (home-page "https://orator-orm.com/")
11734 (synopsis "ActiveRecord ORM for Python")
11735 (description
11736 "Orator provides a simple ActiveRecord-like Object Relational Mapping
11737 implementation for Python.")
11738 (license license:expat)
11739 (properties `((python2-variant . ,(delay python2-orator))))))
11740
11741 (define-public python2-orator
11742 (let ((base (package-with-python2 (strip-python2-variant python-orator))))
11743 (package
11744 (inherit base)
11745 (propagated-inputs
11746 `(("python2-ipaddress" ,python2-ipaddress)
11747 ,@(package-propagated-inputs base))))))
11748
11749 (define-public python-prompt-toolkit
11750 (package
11751 (name "python-prompt-toolkit")
11752 (version "1.0.9")
11753 (source
11754 (origin
11755 (method url-fetch)
11756 (uri (pypi-uri "prompt_toolkit" version ".tar.gz"))
11757 (sha256
11758 (base32
11759 "172r15k9kwdw2lnajvpz1632dd16nqz1kcal1p0lq5ywdarj6rfd"))))
11760 (build-system python-build-system)
11761 (arguments
11762 '(#:tests? #f)) ; The test suite uses some Windows-specific data types.
11763 (propagated-inputs
11764 `(("python-wcwidth" ,python-wcwidth)
11765 ("python-six" ,python-six)
11766 ("python-pygments" ,python-pygments)))
11767 (home-page "https://github.com/jonathanslenders/python-prompt-toolkit")
11768 (synopsis "Library for building command line interfaces in Python")
11769 (description
11770 "Prompt-Toolkit is a library for building interactive command line
11771 interfaces in Python. It's like GNU Readline but it also features syntax
11772 highlighting while typing, out-of-the-box multi-line input editing, advanced
11773 code completion, incremental search, support for Chinese double-width
11774 characters, mouse support, and auto suggestions.")
11775 (license license:bsd-3)))
11776
11777 (define-public python2-prompt-toolkit
11778 (package-with-python2 python-prompt-toolkit))
11779
11780 (define-public python-jedi
11781 (package
11782 (name "python-jedi")
11783 (version "0.9.0")
11784 (source
11785 (origin
11786 (method url-fetch)
11787 (uri (pypi-uri "jedi" version))
11788 (sha256
11789 (base32
11790 "0c8x962ynpx001fdvp07m2q5jk4igkxbj3rmnydavphvlgxijk1v"))))
11791 (build-system python-build-system)
11792 (arguments
11793 ;; FIXME: One test fails (use "py.test" instead of 'setup.py test').
11794 '(#:tests? #f))
11795 (native-inputs
11796 `(("python-pytest" ,python-pytest)))
11797 (home-page "https://github.com/davidhalter/jedi")
11798 (synopsis
11799 "Autocompletion for Python that can be used for text editors")
11800 (description
11801 "Jedi is an autocompletion tool for Python that can be used for text editors.")
11802 (license license:expat)))
11803
11804 (define-public python2-jedi
11805 (package-with-python2 python-jedi))
11806
11807 (define-public ptpython
11808 (package
11809 (name "ptpython")
11810 (version "0.34")
11811 (source (origin
11812 (method url-fetch)
11813 (uri (pypi-uri "ptpython" version))
11814 (sha256
11815 (base32
11816 "1mmbiyzf0n8hm7z2a562x7w5cbl6jc0zsk6vp40q1z4cyblv1k13"))))
11817 (build-system python-build-system)
11818 (arguments
11819 '(#:tests? #f)) ; FIXME: No tests in pypi tarball.
11820 (propagated-inputs
11821 `(("python-docopt" ,python-docopt)
11822 ("python-jedi" ,python-jedi)
11823 ("python-prompt-toolkit" ,python-prompt-toolkit)
11824 ("python-pygments" ,python-pygments)))
11825 (home-page "https://github.com/jonathanslenders/ptpython")
11826 (synopsis "Python Read-Eval-Print-Loop with nice IDE-like features")
11827 (description
11828 "ptpython is a Python read-eval-print loop with IDE-like features.
11829 It supports syntax highlighting, multiline editing, autocompletion, mouse,
11830 color schemes, bracketed paste, Vi and Emacs keybindings, Chinese characters
11831 etc.")
11832 (license license:bsd-3)
11833 (properties `((python2-variant . ,(delay ptpython-2))))))
11834
11835 (define-public ptpython-2
11836 (let ((base (package-with-python2 (strip-python2-variant ptpython))))
11837 (package
11838 (inherit base)
11839 (name "ptpython2"))))
11840
11841 (define-public python-requests-oauthlib
11842 (package
11843 (name "python-requests-oauthlib")
11844 (version "0.6.2")
11845 (source
11846 (origin
11847 (method url-fetch)
11848 (uri (pypi-uri "requests-oauthlib" version))
11849 (sha256
11850 (base32
11851 "0ykff67sjcl227c23g0rxzfx34rr5bf21kwv0z3zmgk0lfmch7hn"))))
11852 (build-system python-build-system)
11853 (arguments
11854 `(#:phases
11855 (modify-phases %standard-phases
11856 ;; removes tests that require network access
11857 (add-before 'check 'pre-check
11858 (lambda _
11859 (delete-file "tests/test_core.py")
11860 #t)))))
11861 (native-inputs
11862 `(("python-requests-mock" ,python-requests-mock)
11863 ("python-mock" ,python-mock)))
11864 (propagated-inputs
11865 `(("python-oauthlib" ,python-oauthlib)
11866 ("python-requests" ,python-requests)))
11867 (home-page
11868 "https://github.com/requests/requests-oauthlib")
11869 (synopsis
11870 "OAuthlib authentication support for Requests")
11871 (description
11872 "Requests-OAuthlib uses the Python Requests and OAuthlib libraries to
11873 provide an easy-to-use Python interface for building OAuth1 and OAuth2 clients.")
11874 (license license:isc)))
11875
11876 (define-public python2-requests-oauthlib
11877 (package-with-python2 python-requests-oauthlib))
11878
11879 (define-public python-stem
11880 (package
11881 (name "python-stem")
11882 (version "1.5.4")
11883 (source
11884 (origin
11885 (method url-fetch)
11886 (uri (pypi-uri "stem" version))
11887 (sha256
11888 (base32
11889 "1j7pnblrn0yr6jmxvsq6y0ihmxmj5x50jl2n2606w67f6wq16j9n"))))
11890 (build-system python-build-system)
11891 (arguments
11892 `(#:phases
11893 (modify-phases %standard-phases
11894 (replace 'check
11895 (lambda _
11896 (zero? (system* "./run_tests.py" "--unit")))))))
11897 (native-inputs
11898 `(("python-mock" ,python-mock)
11899 ("python-pep8" ,python-pep8)
11900 ("python-pyflakes" ,python-pyflakes)))
11901 (home-page "https://stem.torproject.org/")
11902 (synopsis
11903 "Python controller library that allows applications to interact with Tor")
11904 (description
11905 "Stem is a Python controller library for Tor. With it you can use Tor's
11906 control protocol to script against the Tor process and read descriptor data
11907 relays publish about themselves.")
11908 (license license:lgpl3)))
11909
11910 (define-public python2-stem
11911 (package-with-python2 python-stem))
11912
11913 (define-public python-pyserial
11914 (package
11915 (name "python-pyserial")
11916 (version "3.1.1")
11917 (source
11918 (origin
11919 (method url-fetch)
11920 (uri (pypi-uri "pyserial" version))
11921 (sha256
11922 (base32
11923 "0k1nfdrxxkdlv4zgaqsdv8li0pj3gbh2pyxw8q2bsg6f9490amyn"))))
11924 (build-system python-build-system)
11925 (arguments
11926 '(#:tests? #f)) ; FIXME: 3/49 tests are failing.
11927 ;; #:phases
11928 ;; (modify-phases %standard-phases
11929 ;; (replace 'check
11930 ;; (lambda _
11931 ;; (zero? (system* "python" "test/run_all_tests.py" "loop://")))))))
11932 (home-page
11933 "https://github.com/pyserial/pyserial")
11934 (synopsis "Python Serial Port Bindings")
11935 (description "@code{pyserial} provide serial port bindings for Python. It
11936 supports different byte sizes, stop bits, parity and flow control with RTS/CTS
11937 and/or Xon/Xoff. The port is accessed in RAW mode.")
11938 (license license:bsd-3)))
11939
11940 (define-public python2-pyserial
11941 (package-with-python2 python-pyserial))
11942
11943 (define-public python-kivy
11944 (package
11945 (name "python-kivy")
11946 (version "1.9.1")
11947 (source
11948 (origin
11949 (method url-fetch)
11950 (uri (pypi-uri "kivy" version))
11951 (file-name (string-append name "-" version ".tar.gz"))
11952 (sha256
11953 (base32
11954 "0zk3g1j1z0lzcm9d0k1lprrs95zr8n8k5pdg3p5qlsn26jz4bg19"))))
11955 (build-system python-build-system)
11956 (arguments
11957 `(#:tests? #f ; Tests require many optional packages
11958 #:phases
11959 (modify-phases %standard-phases
11960 (replace 'build (lambda _ (zero? (system* "make" "force"))))
11961 (add-after 'patch-generated-file-shebangs 'set-sdl-paths
11962 (lambda* (#:key inputs #:allow-other-keys)
11963 (setenv "KIVY_SDL2_PATH"
11964 (string-append (assoc-ref inputs "sdl-union")
11965 "/include/SDL2"))
11966 #t)))))
11967 (native-inputs
11968 `(("pkg-config" ,pkg-config)
11969 ("python-cython" ,python-cython)))
11970 (inputs
11971 `(("gstreamer" ,gstreamer)
11972 ("mesa" ,mesa)
11973 ("sdl-union"
11974 ,(sdl-union (list sdl2 sdl2-image sdl2-mixer sdl2-ttf)))))
11975 (home-page "http://kivy.org")
11976 (synopsis
11977 "Multitouch application framework")
11978 (description
11979 "A software library for rapid development of
11980 hardware-accelerated multitouch applications.")
11981 (license license:expat)))
11982
11983 (define-public python2-kivy
11984 (package-with-python2 python-kivy))
11985
11986 (define-public python-kivy-next
11987 (let ((commit "a988c5e7a47da56263ff39514264a3de516ef2fe")
11988 (revision "1"))
11989 (package (inherit python-kivy)
11990 (name "python-kivy-next")
11991 (version (string-append "1.9.1-" revision "."
11992 (string-take commit 7)))
11993 (source
11994 (origin
11995 (method git-fetch)
11996 (uri (git-reference
11997 (url "https://github.com/kivy/kivy")
11998 (commit commit)))
11999 (file-name (string-append name "-" version "-checkout"))
12000 (sha256
12001 (base32
12002 "0jk92b4a8l7blkvkgkjihk171s0dfnq582cckff5srwc8kal5m0p")))))))
12003
12004 (define-public python2-kivy-next
12005 (package-with-python2 python-kivy-next))
12006
12007 (define-public python-binaryornot
12008 (package
12009 (name "python-binaryornot")
12010 (version "0.4.0")
12011 (source (origin
12012 (method url-fetch)
12013 (uri (pypi-uri "binaryornot" version))
12014 (sha256
12015 (base32
12016 "1j4f51dxic39mdwf6alj7gd769wy6mhk916v031wjali51xkh3xb"))))
12017 (build-system python-build-system)
12018 (propagated-inputs
12019 `(("python-chardet" ,python-chardet)
12020 ("python-hypothesis" ,python-hypothesis)))
12021 (home-page "https://github.com/audreyr/binaryornot")
12022 (synopsis "Package to check if a file is binary or text")
12023 (description "Ultra-lightweight pure Python package to check if a file is
12024 binary or text.")
12025 (license license:bsd-3)
12026 (properties `((python2-variant . ,(delay python2-binaryornot))))))
12027
12028 (define-public python2-binaryornot
12029 (let ((base (package-with-python2 (strip-python2-variant python-binaryornot))))
12030 (package (inherit base)
12031 (propagated-inputs
12032 `(("python2-enum34" ,python2-enum34)
12033 ,@(package-propagated-inputs base))))))
12034
12035 (define-public python-nltk
12036 (package
12037 (name "python-nltk")
12038 (version "3.2.1")
12039 (source (origin
12040 (method url-fetch)
12041 (uri (pypi-uri "nltk" version))
12042 (sha256
12043 (base32
12044 "0skxbhnymwlspjkzga0f7x1hg3y50fwpfghs8g8k7fh6f4nknlym"))))
12045 (build-system python-build-system)
12046 (arguments
12047 '(;; The tests require some extra resources to be downloaded.
12048 ;; TODO Try packaging these resources.
12049 #:tests? #f))
12050 (home-page "http://nltk.org/")
12051 (synopsis "Natural Language Toolkit")
12052 (description "It provides interfaces to over 50 corpora and lexical
12053 resources such as WordNet, along with a suite of text processing libraries
12054 for classification, tokenization, stemming, tagging, parsing, and semantic
12055 reasoning, wrappers for natural language processing libraries.")
12056 (license license:asl2.0)))
12057
12058 (define-public python2-nltk
12059 (package-with-python2 python-nltk))
12060
12061 (define-public python-pymongo
12062 (package
12063 (name "python-pymongo")
12064 (version "3.3.0")
12065 (source (origin
12066 (method url-fetch)
12067 (uri (pypi-uri "pymongo" version))
12068 (sha256
12069 (base32
12070 "07mra6w86wjqy4lx5fvimidjhhfzd562gfjn8grsnbv2q8pk0i9x"))))
12071 (build-system python-build-system)
12072 (propagated-inputs
12073 `(("python-certifi" ,python-certifi)))
12074 (home-page "https://github.com/mongodb/mongo-python-driver")
12075 (synopsis "Python driver for MongoDB")
12076 (description "Python driver for MongoDB.")
12077 (license license:asl2.0)))
12078
12079 (define-public python2-pymongo
12080 (package-with-python2 python-pymongo))
12081
12082 (define-public python-sh
12083 (package
12084 (name "python-sh")
12085 (version "1.11")
12086 (source (origin
12087 (method url-fetch)
12088 (uri (pypi-uri "sh" version))
12089 (sha256
12090 (base32
12091 "192r0mpv6dmkysjzhc43ddffiwb5g7c76bgr1mb1z2xz9awbj3sr"))))
12092 (build-system python-build-system)
12093 (arguments
12094 `(#:tests? #f)) ; no tests
12095 (home-page "https://github.com/amoffat/sh")
12096 (synopsis "Python subprocess interface")
12097 (description "Abstracts process invocation by providing a function
12098 interface for programs.")
12099 (license license:expat)))
12100
12101 (define-public python2-sh
12102 (package-with-python2 python-sh))
12103
12104 (define-public python-consul
12105 (package
12106 (name "python-consul")
12107 (version "0.6.1")
12108 (source
12109 (origin
12110 (method url-fetch)
12111 (uri (pypi-uri "python-consul" version))
12112 (sha256
12113 (base32
12114 "0rfyxcy4cr3x848vhx876ifalxd5ghq6l5x813m49h4vq2d4jiq8"))))
12115 (build-system python-build-system)
12116 (native-inputs
12117 `(("python-pytest" ,python-pytest)))
12118 (propagated-inputs
12119 `(("python-requests" ,python-requests)
12120 ("python-six" ,python-six)))
12121 (home-page "https://github.com/cablehead/python-consul")
12122 (synopsis "Python client for Consul")
12123 (description
12124 "Python client for @url{http://www.consul.io/,Consul}, a tool for service
12125 discovery, monitoring and configuration.")
12126 (license license:expat)))
12127
12128 (define-public python2-consul
12129 (package-with-python2 python-consul))
12130
12131 (define-public python-schematics
12132 (package
12133 (name "python-schematics")
12134 (version "1.1.1")
12135 (source
12136 (origin
12137 (method url-fetch)
12138 (uri (string-append
12139 "https://github.com/schematics/schematics/archive/v" version ".tar.gz"))
12140 (file-name (string-append name "-" version ".tar.gz"))
12141 (sha256
12142 (base32
12143 "19v1i69bf3bzarfxmbv0v6ivpcn758x3shvbiy9l2hy0lvqwnp6l"))))
12144 (build-system python-build-system)
12145 (propagated-inputs
12146 `(("python-six" ,python-six)))
12147 (arguments
12148 `(#:tests? #f)) ; requires a bunch of not very nice packages with fixed
12149 ; version requirements (eg python-coveralls)
12150 (home-page "https://github.com/schematics/schematics")
12151 (synopsis "Python Data Structures for Humans")
12152 (description "Python Data Structures for Humans.")
12153 (license license:bsd-3)))
12154
12155 (define-public python2-schematics
12156 (package-with-python2 python-schematics))
12157
12158 (define-public python-publicsuffix
12159 (package
12160 (name "python-publicsuffix")
12161 (version "1.1.0")
12162 (source (origin
12163 (method url-fetch)
12164 (uri (pypi-uri "publicsuffix" version))
12165 (sha256
12166 (base32
12167 "1adx520249z2cy7ykwjr1k190mn2888wqn9jf8qm27ly4qymjxxf"))))
12168 (build-system python-build-system)
12169 (arguments
12170 `(#:tests? #f)) ; tests use the internet
12171 (home-page "https://www.tablix.org/~avian/git/publicsuffix.git")
12172 (synopsis "Get suffix for a domain name")
12173 (description "Get a public suffix for a domain name using the Public Suffix
12174 List.")
12175 (license license:expat)))
12176
12177 (define-public python2-publicsuffix
12178 (package-with-python2 python-publicsuffix))
12179
12180 (define-public python-publicsuffix2
12181 (package
12182 (name "python-publicsuffix2")
12183 (version "2.20160818")
12184 (source
12185 (origin
12186 (method url-fetch)
12187 (uri (pypi-uri "publicsuffix2" version ".tar.bz2"))
12188 (sha256
12189 (base32
12190 "1bb55yka9vkn7i6y1kjzxa516kh6v4gsrxa90w5wdz5p5n968r68"))))
12191 (build-system python-build-system)
12192 (arguments
12193 '(#:tests? #f)) ; The test suite requires network access.
12194 (home-page "https://github.com/pombredanne/python-publicsuffix2")
12195 (synopsis "Get a public suffix for a domain name using the Public Suffix List")
12196 (description "Get a public suffix for a domain name using the Public Suffix
12197 List. Forked from and using the same API as the publicsuffix package.")
12198 (license (list license:expat license:mpl2.0))))
12199
12200 (define-public python2-publicsuffix2
12201 (package-with-python2 python-publicsuffix2))
12202
12203 (define-public python-url
12204 (package
12205 (name "python-url")
12206 (version "0.2.0")
12207 (source (origin
12208 (method url-fetch)
12209 (uri (pypi-uri "url" version))
12210 (sha256
12211 (base32
12212 "0v879yadcz9qxfl41ak6wkga1kimp9cflla9ddz03hjjvgkqy5ki"))))
12213 (build-system python-build-system)
12214 (propagated-inputs
12215 `(("python-publicsuffix" ,python-publicsuffix)))
12216 (native-inputs
12217 `(("python-coverage" ,python-coverage)
12218 ("python-nose" ,python-nose)))
12219 (arguments
12220 `(#:tests? #f)) ; FIXME: tests fail with "ImportError: No module named 'tests'"
12221 (home-page "https://github.com/seomoz/url-py")
12222 (synopsis "URL Parsing")
12223 (description "Library for parsing urls.")
12224 (license license:expat)
12225 (properties `((python2-variant . ,(delay python2-url))))))
12226
12227 (define-public python2-url
12228 (let ((base (package-with-python2 (strip-python2-variant python-url))))
12229 (package (inherit base)
12230 (propagated-inputs
12231 `(("python2-publicsuffix" ,python2-publicsuffix))))))
12232
12233 (define-public python-freezegun
12234 (package
12235 (name "python-freezegun")
12236 (version "0.3.8")
12237 (source
12238 (origin
12239 (method url-fetch)
12240 (uri (pypi-uri "freezegun" version))
12241 (sha256
12242 (base32
12243 "1sf38d3ibv1jhhvr52x7dhrsiyqk1hm165dfv8w8wh0fhmgxg151"))))
12244 (build-system python-build-system)
12245 (native-inputs
12246 `(("python-mock" ,python-mock)
12247 ("python-nose" ,python-nose)
12248 ("python-coverage" ,python-coverage)))
12249 (propagated-inputs
12250 `(("python-six" ,python-six)
12251 ("python-dateutil" ,python-dateutil)))
12252 (arguments
12253 `(#:phases (modify-phases %standard-phases
12254 ;; The tests are normally executed via `make test`, but the PyPi
12255 ;; package does not include the Makefile.
12256 (replace 'check
12257 (lambda _
12258 (zero? (system* "nosetests" "./tests/")))))))
12259 (home-page "https://github.com/spulec/freezegun")
12260 (synopsis "Test utility for mocking the datetime module")
12261 (description
12262 "FreezeGun is a library that allows your python tests to travel through
12263 time by mocking the datetime module.")
12264 (license license:asl2.0)))
12265
12266 (define-public python2-freezegun
12267 (package-with-python2 python-freezegun))
12268
12269
12270 (define-public python-odfpy
12271 (package
12272 (name "python-odfpy")
12273 (version "1.3.3")
12274 (source (origin
12275 (method url-fetch)
12276 (uri (pypi-uri "odfpy" version))
12277 (sha256
12278 (base32
12279 "1a6ms0w9zfhhkqhvrnynwwbxrivw6hgjc0s5k7j06npc7rq0blxw"))))
12280 (arguments
12281 `(#:modules ((srfi srfi-1)
12282 (guix build python-build-system)
12283 (guix build utils))
12284 #:phases
12285 (modify-phases %standard-phases
12286 (replace 'check
12287 ;; The test runner invokes python2 and python3 for test*.py.
12288 ;; To avoid having both in inputs, we replicate it here.
12289 (lambda _
12290 (every (lambda (test-file)
12291 (zero? (system* "python" test-file)))
12292 (find-files "tests" "^test.*\\.py$")))))))
12293 (build-system python-build-system)
12294 (home-page "https://github.com/eea/odfpy")
12295 (synopsis "Python API and tools to manipulate OpenDocument files")
12296 (description "Collection of libraries and utility programs written in
12297 Python to manipulate OpenDocument 1.2 files.")
12298 (license
12299 ;; The software is mainly dual GPL2+ and ASL2.0, but includes a
12300 ;; number of files with other licenses.
12301 (list license:gpl2+ license:asl2.0 license:lgpl2.1+ license:cc-by-sa3.0))))
12302
12303 (define-public python2-odfpy
12304 (package-with-python2 python-odfpy))
12305
12306 (define-public python-cachecontrol
12307 (package
12308 (name "python-cachecontrol")
12309 (version "0.11.6")
12310 (source
12311 (origin
12312 (method url-fetch)
12313 ;; Pypi does not have tests.
12314 (uri (string-append
12315 "https://github.com/ionrock/cachecontrol/archive/v"
12316 version ".tar.gz"))
12317 (file-name (string-append name "-" version ".tar.gz"))
12318 (sha256
12319 (base32
12320 "0yj60d0f69a2l8p7y86k4zhzzm6rnxpq74sfl240pry9l0lfw2vw"))))
12321 (build-system python-build-system)
12322 (arguments
12323 `(#:phases
12324 (modify-phases %standard-phases
12325 (replace 'check
12326 (lambda _
12327 ;; Drop test that requires internet access.
12328 (delete-file "tests/test_regressions.py")
12329 (setenv "PYTHONPATH"
12330 (string-append (getcwd) "/build/lib:"
12331 (getenv "PYTHONPATH")))
12332 (zero? (system* "py.test" "-vv")))))))
12333 (native-inputs
12334 `(("python-pytest" ,python-pytest)
12335 ("python-redis" ,python-redis)
12336 ("python-webtest" ,python-webtest)
12337 ("python-mock" ,python-mock)))
12338 (propagated-inputs
12339 `(("python-requests" ,python-requests)
12340 ("python-lockfile" ,python-lockfile)))
12341 (home-page "https://github.com/ionrock/cachecontrol")
12342 (synopsis "The httplib2 caching algorithms for use with requests")
12343 (description "CacheControl is a port of the caching algorithms in
12344 @code{httplib2} for use with @code{requests} session objects.")
12345 (license license:asl2.0)))
12346
12347 (define-public python2-cachecontrol
12348 (package-with-python2 python-cachecontrol))
12349
12350 (define-public python-lit
12351 (package
12352 (name "python-lit")
12353 (version "0.5.0")
12354 (source
12355 (origin
12356 (method url-fetch)
12357 (uri (pypi-uri "lit" version))
12358 (sha256
12359 (base32
12360 "135m2b9cwih85g66rjggavck328z7lj37srgpq3jxszbg0g2b91y"))))
12361 (build-system python-build-system)
12362 (home-page "http://llvm.org/")
12363 (synopsis "LLVM Software Testing Tool")
12364 (description "@code{lit} is a portable tool for executing LLVM and Clang
12365 style test suites, summarizing their results, and providing indication of
12366 failures.")
12367 (license license:ncsa)))
12368
12369 (define-public python2-lit
12370 (package-with-python2 python-lit))
12371
12372 (define-public python-pytest-pep8
12373 (package
12374 (name "python-pytest-pep8")
12375 (version "1.0.6")
12376 (source (origin
12377 (method url-fetch)
12378 (uri (pypi-uri "pytest-pep8" version))
12379 (sha256
12380 (base32
12381 "06032agzhw1i9d9qlhfblnl3dw5hcyxhagn7b120zhrszbjzfbh3"))))
12382 (build-system python-build-system)
12383 (arguments
12384 `(#:tests? #f)) ; Fails with recent pytest and pep8. See upstream issues #8 and #12.
12385 (native-inputs
12386 `(("python-pytest" ,python-pytest)))
12387 (propagated-inputs
12388 `(("python-pep8" ,python-pep8)))
12389 (home-page "https://bitbucket.org/pytest-dev/pytest-pep8")
12390 (synopsis "Py.test plugin to check PEP8 requirements")
12391 (description "Pytest plugin for checking PEP8 compliance.")
12392 (license license:expat)))
12393
12394 (define-public python2-pytest-pep8
12395 (package-with-python2 python-pytest-pep8))
12396
12397 (define-public python-pytest-flakes
12398 (package
12399 (name "python-pytest-flakes")
12400 (version "1.0.1")
12401 (source (origin
12402 (method url-fetch)
12403 (uri (pypi-uri "pytest-flakes" version))
12404 (sha256
12405 (base32
12406 "0flag3n33kbhyjrhzmq990rvg4yb8hhhl0i48q9hw0ll89jp28lw"))))
12407 (build-system python-build-system)
12408 (arguments
12409 `(#:phases
12410 (modify-phases %standard-phases
12411 (delete 'check)
12412 (add-after 'install 'check
12413 (lambda* (#:key outputs inputs #:allow-other-keys)
12414 ;; It's easier to run tests after install.
12415 ;; Make installed package available for running the tests
12416 (add-installed-pythonpath inputs outputs)
12417 (zero? (system* "py.test" "-vv")))))))
12418 (native-inputs
12419 `(("python-coverage" ,python-coverage)
12420 ("python-pytest" ,python-pytest)
12421 ("python-pytest-cache" ,python-pytest-cache)
12422 ("python-pytest-pep8" ,python-pytest-pep8)))
12423 (propagated-inputs
12424 `(("python-pyflakes" ,python-pyflakes)))
12425 (home-page "https://github.com/fschulze/pytest-flakes")
12426 (synopsis "Py.test plugin to check source code with pyflakes")
12427 (description "Pytest plugin for checking Python source code with pyflakes.")
12428 (license license:expat)))
12429
12430 (define-public python2-pytest-flakes
12431 (package-with-python2 python-pytest-flakes))
12432
12433 (define-public python-natsort
12434 (package
12435 (name "python-natsort")
12436 (version "5.0.2")
12437 (source (origin
12438 (method url-fetch)
12439 (uri (pypi-uri "natsort" version))
12440 (sha256
12441 (base32
12442 "0bh6j0l8iapjnsgg3bs6q075cnzjl6zw1vlgqyv3qrygm2cxypkn"))))
12443 (build-system python-build-system)
12444 (arguments
12445 `(#:phases
12446 (modify-phases %standard-phases
12447 (add-before 'check 'set-cachedir
12448 ;; Tests require write access to $HOME by default
12449 (lambda _ (setenv "PYTHON_EGG_CACHE" "/tmp") #t)))))
12450 (native-inputs
12451 `(("python-hypothesis" ,python-hypothesis)
12452 ("python-pytest-cache" ,python-pytest-cache)
12453 ("python-pytest-cov" ,python-pytest-cov)
12454 ("python-pytest-flakes" ,python-pytest-flakes)
12455 ("python-pytest-pep8" ,python-pytest-pep8)))
12456 (propagated-inputs ; TODO: Add python-fastnumbers.
12457 `(("python-pyicu" ,python-pyicu)))
12458 (home-page "https://github.com/SethMMorton/natsort")
12459 (synopsis "Natural sorting for python and shell")
12460 (description
12461 "Natsort lets you apply natural sorting on lists instead of
12462 lexicographical. If you use the built-in @code{sorted} method in python
12463 on a list such as @code{['a20', 'a9', 'a1', 'a4', 'a10']}, it would be
12464 returned as @code{['a1', 'a10', 'a20', 'a4', 'a9']}. Natsort provides a
12465 function @code{natsorted} that identifies numbers and sorts them separately
12466 from strings. It can also sort version numbers, real numbers, mixed types
12467 and more, and comes with a shell command @command{natsort} that exposes this
12468 functionality in the command line.")
12469 (license license:expat)
12470 (properties `((python2-variant . ,(delay python2-natsort))))))
12471
12472 (define-public python2-natsort
12473 (let ((base (package-with-python2 (strip-python2-variant python-natsort))))
12474 (package (inherit base)
12475 (native-inputs
12476 `(("python2-pathlib" ,python2-pathlib)
12477 ("python2-mock" ,python2-mock)
12478 ("python2-enum34" ,python2-enum34)
12479 ,@(package-native-inputs base))))))
12480
12481 (define-public python-glances
12482 (package
12483 (name "python-glances")
12484 (version "2.7.1")
12485 (source
12486 (origin
12487 (method url-fetch)
12488 (uri (pypi-uri "Glances" version))
12489 (sha256
12490 (base32
12491 "11jbq40g8alsbirnd4kiagznqg270247i0m8qhi48ldf2i5xppxg"))))
12492 (build-system python-build-system)
12493 (propagated-inputs
12494 `(("python-psutil" ,python-psutil)))
12495 (home-page
12496 "https://github.com/nicolargo/glances")
12497 (synopsis
12498 "A cross-platform curses-based monitoring tool")
12499 (description
12500 "Glances is a curses-based monitoring tool for a wide variety of platforms.
12501 Glances uses the PsUtil library to get information from your system. It monitors
12502 CPU, load, memory, network bandwidth, disk I/O, disk use, and more.")
12503 (license license:lgpl3+)))
12504
12505 (define-public python2-glances
12506 (package-with-python2 python-glances))
12507
12508 (define-public python-graphql-core
12509 (package
12510 (name "python-graphql-core")
12511 (version "0.5.3")
12512 (source
12513 (origin
12514 (method url-fetch)
12515 (uri (pypi-uri "graphql-core" version))
12516 (sha256
12517 (base32
12518 "0rsaarx2sj4xnw9966rhh4haiqaapm4lm2mfqm48ywd51j5vh1a0"))))
12519 (build-system python-build-system)
12520 (arguments
12521 `(#:tests? #f ; Tests require the unpackaged pytest-benchmark.
12522 #:phases
12523 (modify-phases %standard-phases
12524 (add-after 'unpack 'patch-hardcoded-version
12525 (lambda _ (substitute*
12526 "setup.py"
12527 (("'gevent==1.1rc1'") "'gevent'"))
12528 #t)))))
12529 (native-inputs
12530 `(("python-gevent" ,python-gevent)
12531 ("python-mock" ,python-mock)
12532 ("python-pytest-mock" ,python-pytest-mock)))
12533 (propagated-inputs
12534 `(("python-promise" ,python-promise)
12535 ("python-six" ,python-six)))
12536 (home-page "https://github.com/graphql-python/graphql-core")
12537 (synopsis "GraphQL implementation for Python")
12538 (description
12539 "GraphQL implementation for Python. GraphQL is a data query language and
12540 runtime designed and used to request and deliver data to mobile and web apps.
12541 This library is a port of @url{https://github.com/graphql/graphql-js,graphql-js}
12542 to Python.")
12543 (license license:expat)))
12544
12545 (define-public python2-graphql-core
12546 (package-with-python2 python-graphql-core))
12547
12548 (define-public python-graphql-relay
12549 (package
12550 (name "python-graphql-relay")
12551 (version "0.4.5")
12552 (source
12553 (origin
12554 (method url-fetch)
12555 (uri (pypi-uri "graphql-relay" version))
12556 (sha256
12557 (base32
12558 "1nv5dxcj59zv31qvl8bd142njmxcmymny2dz3br1l2cpbljbf5i7"))))
12559 (build-system python-build-system)
12560 (native-inputs
12561 `(("python-pytest" ,python-pytest)))
12562 (propagated-inputs
12563 `(("python-graphql-core" ,python-graphql-core)
12564 ("python-promise" ,python-promise)
12565 ("python-six" ,python-six)))
12566 (home-page "https://github.com/graphql-python/graphql-relay-py")
12567 (synopsis "Relay implementation for Python")
12568 (description
12569 "This is a library to allow the easy creation of Relay-compliant servers
12570 using the GraphQL Python reference implementation of a GraphQL server. It
12571 should be noted that the code is a exact port of the original
12572 @url{https://github.com/graphql/graphql-relay-js,graphql-relay js implementation}
12573 from Facebook.")
12574 (license license:expat)))
12575
12576 (define-public python2-graphql-relay
12577 (package-with-python2 python-graphql-relay))
12578
12579 (define-public python-graphene
12580 (package
12581 (name "python-graphene")
12582 (version "0.10.2")
12583 (source
12584 (origin
12585 (method url-fetch)
12586 (uri (pypi-uri "graphene" version))
12587 (sha256
12588 (base32
12589 "09zhac7igh9ixdz0ay6csy35b40l1jwbf2wrbxmgxwfhy51iy06q"))))
12590 (build-system python-build-system)
12591 (native-inputs
12592 `(("python-django-filter" ,python-django-filter)
12593 ("python-mock" ,python-mock)
12594 ("python-psycopg2" ,python-psycopg2)
12595 ("python-pytest-django" ,python-pytest-django)
12596 ("python-sqlalchemy-utils" ,python-sqlalchemy-utils)))
12597 (propagated-inputs
12598 `(("python-graphql-core" ,python-graphql-core)
12599 ("python-graphql-relay" ,python-graphql-relay)
12600 ("python-iso8601" ,python-iso8601)
12601 ("python-promise" ,python-promise)
12602 ("python-six" ,python-six)))
12603 (home-page "http://graphene-python.org/")
12604 (synopsis "GraphQL Framework for Python")
12605 (description
12606 "Graphene is a Python library for building GraphQL schemas/types.
12607 A GraphQL schema describes your data model, and provides a GraphQL server
12608 with an associated set of resolve methods that know how to fetch data.")
12609 (properties `((python2-variant . ,(delay python2-graphene))))
12610 (license license:expat)))
12611
12612 (define-public python2-graphene
12613 (let ((base (package-with-python2
12614 (strip-python2-variant python-graphene))))
12615 (package (inherit base)
12616 (native-inputs
12617 `(("python2-sqlalchemy" ,python2-sqlalchemy)
12618 ,@(package-native-inputs base))))))
12619
12620 (define-public python-nautilus
12621 (package
12622 (name "python-nautilus")
12623 (version "0.4.9")
12624 (source
12625 (origin
12626 (method url-fetch)
12627 (uri (pypi-uri "nautilus" version))
12628 (sha256
12629 (base32
12630 "01hwzjc1zshk4vvxrcghm398fpy4jls66dyz06g07mrwqif8878p"))))
12631 (build-system python-build-system)
12632 (arguments `(#:tests? #f)) ; fails to import test modules
12633 (propagated-inputs
12634 `(("python-bcrypt" ,python-bcrypt)
12635 ("python-click" ,python-click)
12636 ("python-consul" ,python-consul)
12637 ("python-graphene" ,python-graphene)
12638 ("python-jinja2" ,python-jinja2)
12639 ("python-peewee" ,python-peewee)
12640 ("python-pika" ,python-pika)
12641 ("python-tornado" ,python-tornado)
12642 ("python-wtforms" ,python-wtforms)))
12643 (native-inputs
12644 `(("python-nose2" ,python-nose2)))
12645 (home-page "https://github.com/AlecAivazis/nautilus")
12646 (synopsis "Library for creating microservice applications")
12647 (description
12648 "Nautilus is a framework for flux based microservices that looks to
12649 provide extendible implementations of common aspects of a cloud so that you can
12650 focus on building massively scalable web applications.")
12651 (license license:expat)))
12652
12653 (define-public python-snowballstemmer
12654 (package
12655 (name "python-snowballstemmer")
12656 (version "1.2.1")
12657 (source (origin
12658 (method url-fetch)
12659 (uri (pypi-uri "snowballstemmer" version))
12660 (sha256
12661 (base32
12662 "0a0idq4y5frv7qsg2x62jd7rd272749xk4x99misf5rcifk2d7wi"))))
12663 (build-system python-build-system)
12664 (arguments
12665 `(;; No tests exist
12666 #:tests? #f))
12667 (home-page "https://github.com/shibukawa/snowball_py")
12668 (synopsis "Snowball stemming library collection for Python")
12669 (description "This package provides 16 word stemmer algorithms generated
12670 from Snowball algorithms. It includes the 15 original ones plus the Poerter
12671 English stemmer.")
12672 (license license:bsd-3)))
12673
12674 (define-public python2-snowballstemmer
12675 (package-with-python2 python-snowballstemmer))
12676
12677 (define-public python-sphinx-cloud-sptheme
12678 (package
12679 (name "python-sphinx-cloud-sptheme")
12680 (version "1.8.0")
12681 (source (origin
12682 (method url-fetch)
12683 (uri (pypi-uri "cloud_sptheme" version))
12684 (sha256
12685 (base32
12686 "1dniqb6a39yh786f86c4jn666rwnyi1jvzn4616zhcchb7sfdshd"))))
12687 (build-system python-build-system)
12688 ;; FIXME: The 'pypi' release archive does not contain tests.
12689 (arguments '(#:tests? #f))
12690 (native-inputs
12691 `(("python-sphinx" ,python-sphinx)))
12692 (home-page "https://bitbucket.org/ecollins/cloud_sptheme")
12693 (synopsis "'Cloud' theme for Sphinx documenter")
12694 (description "This package contains the \"Cloud\" theme for Sphinx and some
12695 related extensions.")
12696 (license license:bsd-3)))
12697
12698 (define-public python2-sphinx-cloud-sptheme
12699 (package-with-python2 python-sphinx-cloud-sptheme))
12700
12701 (define-public python-sphinx-alabaster-theme
12702 (package
12703 (name "python-sphinx-alabaster-theme")
12704 (version "0.7.9")
12705 (source (origin
12706 (method url-fetch)
12707 (uri (pypi-uri "alabaster" version))
12708 (sha256
12709 (base32
12710 "027anxzcb951gjlcc43y3rbn9qrw36d16vj9wd2smv5410xx9bs7"))))
12711 (build-system python-build-system)
12712 (propagated-inputs
12713 `(("python-pygments" ,python-pygments)))
12714 (home-page "https://alabaster.readthedocs.io/")
12715 (synopsis "Configurable sidebar-enabled Sphinx theme")
12716 (description "Alabaster is a visually (c)lean, responsive, configurable
12717 theme for the Sphinx documentation system. It's the default theme of Sphinx.")
12718 (license license:bsd-3)))
12719
12720 (define-public python2-sphinx-alabaster-theme
12721 (package-with-python2 python-sphinx-alabaster-theme))
12722
12723 (define-public python-betamax
12724 (package
12725 (name "python-betamax")
12726 (version "0.8.0")
12727 (source
12728 (origin
12729 (method url-fetch)
12730 (uri (pypi-uri "betamax" version))
12731 (sha256
12732 (base32
12733 "18f8v5gng3j773jlbbzx4rg1i4y2zw3m2l1zpmbvp8bh5a2q1i42"))))
12734 (build-system python-build-system)
12735 (arguments
12736 '(;; Many tests fail because they require networking.
12737 #:tests? #f))
12738 (propagated-inputs
12739 `(("python-requests" ,python-requests)))
12740 (home-page "https://github.com/sigmavirus24/betamax")
12741 (synopsis "Record HTTP interactions with python-requests")
12742 (description "Betamax will record your test suite's HTTP interactions and
12743 replay them during future tests. It is designed to work with python-requests.")
12744 (license license:expat)))
12745
12746 (define-public python2-betamax
12747 (package-with-python2 python-betamax))
12748
12749 (define-public python-s3transfer
12750 (package
12751 (name "python-s3transfer")
12752 (version "0.1.10")
12753 (source (origin
12754 (method url-fetch)
12755 (uri (pypi-uri "s3transfer" version))
12756 (sha256
12757 (base32
12758 "1h8g9bknvxflxkpbnxyfxmk8pvgykbbk9ljdvhqh6z4vjc2926ms"))))
12759 (build-system python-build-system)
12760 (arguments
12761 `(#:phases
12762 (modify-phases %standard-phases
12763 (replace 'check
12764 (lambda _
12765 ;; 7 of the 'integration' tests require network access or login
12766 ;; credentials.
12767 (zero? (system* "nosetests" "--exclude=integration")))))))
12768 (native-inputs
12769 `(("python-docutils" ,python-docutils)
12770 ("python-mock" ,python-mock)
12771 ("python-nose" ,python-nose)))
12772 (propagated-inputs
12773 `(("python-botocore" ,python-botocore)))
12774 (synopsis "Amazon S3 Transfer Manager")
12775 (description "S3transfer is a Python library for managing Amazon S3
12776 transfers.")
12777 (home-page "https://github.com/boto/s3transfer")
12778 (license license:asl2.0)
12779 (properties `((python2-variant . ,(delay python2-s3transfer))))))
12780
12781 (define-public python2-s3transfer
12782 (let ((base (package-with-python2 (strip-python2-variant python-s3transfer))))
12783 (package
12784 (inherit base)
12785 (native-inputs
12786 `(("python2-futures" ,python2-futures)
12787 ,@(package-native-inputs base))))))
12788
12789 (define-public python-setproctitle
12790 (package
12791 (name "python-setproctitle")
12792 (version "1.1.10")
12793 (source
12794 (origin
12795 (method url-fetch)
12796 (uri (pypi-uri "setproctitle" version))
12797 (sha256
12798 (base32
12799 "163kplw9dcrw0lffq1bvli5yws3rngpnvrxrzdw89pbphjjvg0v2"))))
12800 (build-system python-build-system)
12801 (arguments
12802 '(#:phases
12803 (modify-phases %standard-phases
12804 (add-before 'check 'patch-Makefile
12805 ;; Stricly this is only required for the python2 variant.
12806 ;; But adding a phase in an inherited package seems to be
12807 ;; cumbersum. So we patch even for python3.
12808 (lambda _
12809 (let ((nose (assoc-ref %build-inputs "python2-nose")))
12810 (when nose
12811 (substitute* "Makefile"
12812 (("\\$\\(PYTHON\\) [^ ]which nosetests[^ ] ")
12813 (string-append nose "/bin/nosetests "))))
12814 #t)))
12815 (replace 'check
12816 (lambda _
12817 (setenv "PYTHON" (or (which "python3") (which "python")))
12818 (setenv "PYCONFIG" (or (which "python3-config")
12819 (which "python-config")))
12820 (setenv "CC" "gcc")
12821 ;; No need to extend PYTHONPATH to find the built package, since
12822 ;; the Makefile will build anyway
12823 (zero? (system* "make" "check")))))))
12824 (native-inputs
12825 `(("procps" ,procps))) ; required for tests
12826 (home-page
12827 "https://github.com/dvarrazzo/py-setproctitle")
12828 (synopsis
12829 "Setproctitle implementation for Python to customize the process title")
12830 (description "The library allows a process to change its title (as displayed
12831 by system tools such as ps and top).
12832
12833 Changing the title is mostly useful in multi-process systems, for
12834 example when a master process is forked: changing the children's title
12835 allows to identify the task each process is busy with. The technique
12836 is used by PostgreSQL and the OpenSSH Server for example.")
12837 (license license:bsd-3)
12838 (properties `((python2-variant . ,(delay python2-setproctitle))))))
12839
12840 (define-public python2-setproctitle
12841 (let ((base (package-with-python2
12842 (strip-python2-variant python-setproctitle))))
12843 (package
12844 (inherit base)
12845 (native-inputs `(("python2-nose" ,python2-nose)
12846 ,@(package-native-inputs base))))))
12847
12848 (define-public python-validictory
12849 (package
12850 (name "python-validictory")
12851 (version "1.0.1")
12852 (source
12853 (origin
12854 (method url-fetch)
12855 (uri (pypi-uri "validictory" version))
12856 (sha256
12857 (base32
12858 "1zf1g9sw47xzp5f80bd94pb42j9yqv82lcrgcvdwr6nkaphfi37q"))))
12859 (build-system python-build-system)
12860 (arguments
12861 '(#:phases
12862 (modify-phases %standard-phases
12863 (add-after 'unpack 'bootstrap
12864 ;; Move the tests out of the package directory to avoid
12865 ;; packaging them.
12866 (lambda* _
12867 (rename-file "validictory/tests" "tests")
12868 (delete-file "tests/__init__.py")))
12869 (replace 'check
12870 (lambda _
12871 ;; Extend PYTHONPATH so the built package will be found.
12872 (setenv "PYTHONPATH"
12873 (string-append (getcwd) "/build/lib:"
12874 (getenv "PYTHONPATH")))
12875 (zero? (system* "py.test" "-vv" )))))))
12876 (native-inputs
12877 `(("python-pytest" ,python-pytest)))
12878 (home-page
12879 "https://github.com/jamesturk/validictory")
12880 (synopsis "General purpose Python data validator")
12881 (description "It allows validation of arbitrary Python data structures.
12882
12883 The schema format is based on the JSON Schema
12884 proposal (http://json-schema.org), so combined with json the library is also
12885 useful as a validator for JSON data.")
12886 (license license:expat)))
12887
12888 (define-public python2-validictory
12889 (package-with-python2 python-validictory))
12890
12891 (define-public python-aniso8601
12892 (package
12893 (name "python-aniso8601")
12894 (version "1.1.0")
12895 (source
12896 (origin
12897 (method url-fetch)
12898 (uri (pypi-uri "aniso8601" version))
12899 (sha256
12900 (base32
12901 "1k5mjg9iqbjfslb5prrsfz7dhlvi6s35p1jxq8dm87w1b7dn5i2g"))))
12902 (build-system python-build-system)
12903 (propagated-inputs
12904 `(("python-dateutil" ,python-dateutil)))
12905 (home-page
12906 "https://bitbucket.org/nielsenb/aniso8601")
12907 (synopsis
12908 "Python library for parsing ISO 8601 strings")
12909 (description
12910 "This package contains a library for parsing ISO 8601 datetime strings.")
12911 (license license:bsd-3)))
12912
12913 (define-public python-flask-restful
12914 (package
12915 (name "python-flask-restful")
12916 (version "0.3.5")
12917 (source
12918 (origin
12919 (method url-fetch)
12920 (uri (pypi-uri "Flask-RESTful" version))
12921 (sha256
12922 (base32
12923 "0hjcmdb56b7z4bkw848lxfkyrpnkwzmqn2dgnlv12mwvjpzsxr6c"))))
12924 (build-system python-build-system)
12925 (propagated-inputs
12926 `(("python-aniso8601" ,python-aniso8601)
12927 ("python-flask" ,python-flask)
12928 ("python-pycrypto" ,python-pycrypto)
12929 ("python-pytz" ,python-pytz)))
12930 (native-inputs
12931 `(;; Optional dependency of Flask. Tests need it.
12932 ("python-blinker" ,python-blinker)
12933 ("python-mock" ,python-mock) ; For tests
12934 ("python-nose" ,python-nose) ; For tests
12935 ("python-sphinx" ,python-sphinx)))
12936 (home-page
12937 "https://www.github.com/flask-restful/flask-restful/")
12938 (synopsis
12939 "Flask module for creating REST APIs")
12940 (description
12941 "This package contains a Flask module for creating REST APIs.")
12942 (license license:bsd-3)))
12943
12944 (define-public python-flask-basicauth
12945 (package
12946 (name "python-flask-basicauth")
12947 (version "0.2.0")
12948 (source
12949 (origin
12950 (method url-fetch)
12951 (uri (pypi-uri "Flask-BasicAuth" version))
12952 (sha256
12953 (base32
12954 "1zq1spkjr4sjdnalpp8wl242kdqyk6fhbnhr8hi4r4f0km4bspnz"))))
12955 (build-system python-build-system)
12956 (propagated-inputs
12957 `(("python-flask" ,python-flask)))
12958 (home-page
12959 "https://github.com/jpvanhal/flask-basicauth")
12960 (synopsis
12961 "HTTP basic access authentication for Flask")
12962 (description
12963 "This package provides HTTP basic access authentication for Flask.")
12964 (license license:bsd-3)))
12965
12966 (define-public python-flask-sqlalchemy
12967 (package
12968 (name "python-flask-sqlalchemy")
12969 (version "2.1")
12970 (source
12971 (origin
12972 (method url-fetch)
12973 (uri (pypi-uri "Flask-SQLAlchemy" version))
12974 (sha256
12975 (base32
12976 "1i9ps5d5snih9xlqhrvmi3qfiygkmqzxh92n25kj4pf89kj4s965"))))
12977 (build-system python-build-system)
12978 (propagated-inputs
12979 `(("python-flask" ,python-flask)
12980 ("python-sqlalchemy" ,python-sqlalchemy)))
12981 (home-page
12982 "https://github.com/mitsuhiko/flask-sqlalchemy")
12983 (synopsis
12984 "Module adding SQLAlchemy support to your Flask application")
12985 (description
12986 "This package adds SQLAlchemy support to your Flask application.")
12987 (license license:bsd-3)))
12988
12989 (define-public python-pyev
12990 (package
12991 (name "python-pyev")
12992 (version "0.9.0")
12993 (source
12994 (origin
12995 (method url-fetch)
12996 (uri (pypi-uri "pyev" version))
12997 (sha256
12998 (base32
12999 "0rf603lc0s6zpa1nb25vhd8g4y337wg2wyz56i0agsdh7jchl0sx"))))
13000 (build-system python-build-system)
13001 (arguments
13002 `(#:tests? #f ; no test suite
13003 #:phases
13004 (modify-phases %standard-phases
13005 (add-after 'unpack 'patch
13006 (lambda* (#:key inputs #:allow-other-keys)
13007 (let ((libev (string-append (assoc-ref inputs "libev")
13008 "/lib/libev.so.4")))
13009 (substitute* "setup.py"
13010 (("libev_dll_name = find_library\\(\\\"ev\\\"\\)")
13011 (string-append "libev_dll_name = \"" libev "\"")))))))))
13012 (inputs
13013 `(("libev" ,libev)))
13014 (home-page "http://pythonhosted.org/pyev/")
13015 (synopsis "Python libev interface")
13016 (description "Pyev provides a Python interface to libev.")
13017 (license license:gpl3)))
13018
13019 (define-public python2-pyev
13020 (package-with-python2 python-pyev))
13021
13022 (define-public python-imagesize
13023 (package
13024 (name "python-imagesize")
13025 (version "0.7.1")
13026 (source
13027 (origin
13028 (method url-fetch)
13029 (uri (pypi-uri "imagesize" version))
13030 (sha256
13031 (base32
13032 "0qk07k0z4241lkzzjji7z4da04pcvg7bfc4xz1934zlqhwmwdcha"))))
13033 (build-system python-build-system)
13034 (arguments
13035 '(;; Test files are not distributed on PyPi:
13036 ;; https://github.com/shibukawa/imagesize_py/issues/7
13037 #:tests? #f))
13038 (home-page "https://github.com/shibukawa/imagesize_py")
13039 (synopsis "Gets image size of files in variaous formats in Python")
13040 (description
13041 "This package allows determination of image size from
13042 PNG, JPEG, JPEG2000 and GIF files in pure Python.")
13043 (license license:expat)))
13044
13045 (define-public python2-imagesize
13046 (package-with-python2 python-imagesize))
13047
13048 (define-public python-axolotl-curve25519
13049 (package
13050 (name "python-axolotl-curve25519")
13051 (version "0.1")
13052 (source
13053 (origin
13054 (method git-fetch)
13055 (uri (git-reference
13056 (url "git://github.com/tgalal/python-axolotl-curve25519")
13057 (commit "e4a9c4de0eae27223200579c58d1f8f6d20637e2")))
13058 (file-name (string-append name "-" version "-checkout"))
13059 (sha256
13060 (base32
13061 "0agap5q0hmvf6cwzjqc05kw53pjgf6942pcivpazksmg1vk400ra"))))
13062 (build-system python-build-system)
13063 (arguments
13064 `(;; Prevent creation of the egg. This works around
13065 ;; https://debbugs.gnu.org/cgi/bugreport.cgi?bug=20765
13066 #:configure-flags '("--root=/")))
13067 (home-page "https://github.com/tgalal/python-axolotl-curve25519")
13068 (synopsis "Python wrapper for curve25519 library")
13069 (description "This is a python wrapper for the curve25519 library
13070 with ed25519 signatures. The C code was pulled from
13071 libaxolotl-android. At the moment this wrapper is meant for use by
13072 python-axolotl.")
13073 (license (list license:gpl3 ; Most files
13074 license:bsd-3)))) ; curve/curve25519-donna.c
13075
13076 (define-public python2-axolotl-curve25519
13077 (package-with-python2 python-axolotl-curve25519))
13078
13079 (define-public python-axolotl
13080 (package
13081 (name "python-axolotl")
13082 (version "0.1.35")
13083 (source
13084 (origin
13085 (method url-fetch)
13086 (uri (string-append
13087 "https://github.com/tgalal/python-axolotl/archive/"
13088 version ".tar.gz"))
13089 (file-name (string-append name "-" version ".tar.gz"))
13090 (sha256
13091 (base32 "1z8d89p7v40p4bwywjm9h4z28fdvra79ddw06azlkrfjbl7dxmz8"))))
13092 (build-system python-build-system)
13093 (arguments
13094 `(#:phases
13095 (modify-phases %standard-phases
13096 ;; Don't install tests
13097 (add-before 'install 'remove-tests
13098 (lambda _
13099 (for-each delete-file-recursively
13100 '("axolotl/tests" "build/lib/axolotl/tests"))
13101 #t)))))
13102 (propagated-inputs
13103 `(("python-axolotl-curve25519" ,python-axolotl-curve25519)
13104 ("python-dateutil" ,python-dateutil)
13105 ("python-protobuf" ,python-protobuf)
13106 ("python-pycrypto" ,python-pycrypto)))
13107 (home-page "https://github.com/tgalal/python-axolotl")
13108 (synopsis "Python port of libaxolotl-android")
13109 (description "This is a python port of libaxolotl-android. This
13110 is a ratcheting forward secrecy protocol that works in synchronous and
13111 asynchronous messaging environments.")
13112 (license license:gpl3)))
13113
13114 (define-public python2-axolotl
13115 (package-with-python2 python-axolotl))
13116
13117 (define-public python-termstyle
13118 (package
13119 (name "python-termstyle")
13120 (version "0.1.11")
13121 (source
13122 (origin
13123 (method url-fetch)
13124 (uri (pypi-uri "termstyle" version))
13125 (sha256
13126 (base32
13127 "17wzkkcqy5zc0g68xlad3kcv66iw14d2pwqc0h9420gak0vbhx7g"))))
13128 (build-system python-build-system)
13129 (arguments
13130 '(#:phases
13131 (modify-phases %standard-phases
13132 (replace 'check
13133 (lambda _
13134 (zero? (system* "python" "test3.py")))))))
13135 (home-page "https://github.com/gfxmonk/termstyle")
13136 (synopsis "Console text coloring for Python")
13137 (description "This package provides console text coloring for Python.")
13138 (license license:bsd-3)))
13139
13140 (define-public python-rednose
13141 (package
13142 (name "python-rednose")
13143 (version "1.2.1")
13144 (source
13145 (origin
13146 (method url-fetch)
13147 (uri (pypi-uri "rednose" version))
13148 (sha256
13149 (base32
13150 "0b0bsna217lr1nykyhl5fgjly15zhdvqd4prg4wy1zrgfv7al6m0"))))
13151 (build-system python-build-system)
13152 (arguments
13153 `(#:phases
13154 (modify-phases %standard-phases
13155 (add-after 'unpack 'fix-deps
13156 (lambda _
13157 ;; See <https://github.com/JBKahn/rednose/issues/12>
13158 (substitute* "setup.py"
13159 (("python-termstyle") "termstyle"))
13160 #t)))))
13161 (propagated-inputs
13162 `(("python-colorama" ,python-colorama)
13163 ("python-termstyle" ,python-termstyle)))
13164 (native-inputs
13165 `(("python-six" ,python-six)
13166 ("python-nose" ,python-nose)))
13167 (home-page "https://github.com/JBKahn/rednose")
13168 (synopsis "Colored output for Python nosetests")
13169 (description "This package provides colored output for the
13170 @command{nosetests} command of the Python Nose unit test framework.")
13171 (license license:bsd-3)))
13172
13173 (define-public python2-rednose
13174 (package-with-python2 python-rednose))
13175
13176 (define-public python-flask-restplus
13177 (package
13178 (name "python-flask-restplus")
13179 (version "0.9.2")
13180 (source
13181 (origin
13182 (method url-fetch)
13183 (uri (pypi-uri "flask-restplus" version))
13184 (sha256
13185 (base32
13186 "11his6ii5brpkhld0d5bwzjjw4q3vmplpd6fmgzjrvvklsbk0cf4"))))
13187 (build-system python-build-system)
13188 (arguments
13189 '(#:tests? #f)) ; FIXME: 35/882 tests failing.
13190 ;; #:phases
13191 ;; (modify-phases %standard-phases
13192 ;; (replace 'check
13193 ;; (lambda _
13194 ;; (zero? (system* "nosetests")))))))
13195 (propagated-inputs
13196 `(("python-aniso8601" ,python-aniso8601)
13197 ("python-flask" ,python-flask)
13198 ("python-jsonschema" ,python-jsonschema)
13199 ("python-pytz" ,python-pytz)
13200 ("python-six" ,python-six)))
13201 (native-inputs
13202 `(("python-tzlocal" ,python-tzlocal)
13203 ("python-blinker" ,python-blinker)
13204 ("python-nose" ,python-nose)
13205 ("python-rednose" ,python-rednose)))
13206 (home-page "https://github.com/noirbizarre/flask-restplus")
13207 (synopsis "Framework for documented API development with Flask")
13208 (description "This package provides a framework for API development with
13209 the Flask web framework in Python. It is similar to package
13210 @code{python-flask-restful} but supports the @code{python-swagger}
13211 documentation builder.")
13212 (license license:expat)))
13213
13214 (define-public python-sadisplay
13215 (package
13216 (name "python-sadisplay")
13217 (version "0.4.6")
13218 (source
13219 (origin
13220 (method url-fetch)
13221 (uri (pypi-uri "sadisplay" version))
13222 (sha256
13223 (base32
13224 "0zqad2fl7q26p090qmqgmxbm6iwgf9zij1w8da1g3wdgjj72ql05"))))
13225 (build-system python-build-system)
13226 (propagated-inputs
13227 `(("python-sqlalchemy" ,python-sqlalchemy)))
13228 (native-inputs
13229 `(("python-nose" ,python-nose)))
13230 (home-page "https://bitbucket.org/estin/sadisplay")
13231 (synopsis "SQLAlchemy schema displayer")
13232 (description "This package provides a program to build Entity
13233 Relationship diagrams from a SQLAlchemy model (or directly from the
13234 database).")
13235 (license license:bsd-3)))
13236
13237 (define-public python2-sadisplay
13238 (package-with-python2 python-sadisplay))
13239
13240 (define-public python-flask-restful-swagger
13241 (package
13242 (name "python-flask-restful-swagger")
13243 (version "0.19")
13244 (source
13245 (origin
13246 (method url-fetch)
13247 (uri (pypi-uri "flask-restful-swagger" version))
13248 (sha256
13249 (base32
13250 "16msl8hd5xjmj833bpy264v98cpl5hkw5bgl5gf5vgndxbv3rm6v"))))
13251 (build-system python-build-system)
13252 (propagated-inputs
13253 `(("python-flask-restful" ,python-flask-restful)))
13254 (home-page "https://github.com/rantav/flask-restful-swagger")
13255 (synopsis "Extract Swagger specs from Flask-Restful projects")
13256 (description "This package lets you extract Swagger API documentation
13257 specs from your Flask-Restful projects.")
13258 (license license:expat)))
13259
13260 (define-public python2-flask-restful-swagger
13261 (package-with-python2 python-flask-restful-swagger))
13262
13263 (define-public python-argcomplete
13264 (package
13265 (name "python-argcomplete")
13266 (version "1.7.0")
13267 (source
13268 (origin
13269 (method url-fetch)
13270 (uri (pypi-uri "argcomplete" version))
13271 (sha256
13272 (base32
13273 "11bwiw6j0nilgz81xnw6f1npyga3prp8asjqrm87cdr3ria5l03x"))))
13274 (build-system python-build-system)
13275 (native-inputs
13276 `(("python-pexpect" ,python-pexpect)
13277 ("tcsh" ,tcsh)))
13278 (home-page "https://github.com/kislyuk/argcomplete")
13279 (synopsis "Shell tab completion for Python argparse")
13280 (description "argcomplete provides extensible command line tab completion
13281 of arguments and options for Python scripts using @code{argparse}. It's
13282 particularly useful for programs with many options or sub-parsers that can
13283 dynamically suggest completions; for example, when browsing resources over the
13284 network.")
13285 (license license:asl2.0)))
13286
13287 (define-public python2-argcomplete
13288 (package-with-python2 python-argcomplete))
13289
13290 (define-public python-xopen
13291 (package
13292 (name "python-xopen")
13293 (version "0.1.1")
13294 (source
13295 (origin
13296 (method url-fetch)
13297 (uri (pypi-uri "xopen" version))
13298 (sha256
13299 (base32
13300 "1wx6mylzcsyhjl19ycb83qq6iqpmr927lz62njfsar6ldsj0qcni"))
13301 (file-name (string-append name "-" version ".tar.gz"))))
13302 (build-system python-build-system)
13303 (home-page "https://github.com/marcelm/xopen/")
13304 (synopsis "Open compressed files transparently")
13305 (description "This module provides an @code{xopen} function that works like
13306 Python's built-in @code{open} function, but can also deal with compressed files.
13307 Supported compression formats are gzip, bzip2 and, xz, and are automatically
13308 recognized by their file extensions. The focus is on being as efficient as
13309 possible on all supported Python versions.")
13310 (license license:expat)))
13311
13312 (define-public python2-xopen
13313 (package-with-python2 python-xopen))
13314
13315 (define-public python2-cheetah
13316 (package
13317 (name "python2-cheetah")
13318 (version "2.4.4")
13319 (source
13320 (origin
13321 (method url-fetch)
13322 (uri (pypi-uri "Cheetah" version))
13323 (sha256
13324 (base32
13325 "0l5mm4lnysjkzpjr95q5ydm9xc8bv43fxmr79ypybrf1y0lq4c5y"))))
13326 (build-system python-build-system)
13327 (arguments
13328 `(#:python ,python-2))
13329 (propagated-inputs
13330 `(("python2-markdown" ,python2-markdown)))
13331 (home-page "https://pythonhosted.org/Cheetah/")
13332 (synopsis "Template engine")
13333 (description "Cheetah is a text-based template engine and Python code
13334 generator.
13335
13336 Cheetah can be used as a standalone templating utility or referenced as
13337 a library from other Python applications. It has many potential uses,
13338 but web developers looking for a viable alternative to ASP, JSP, PHP and
13339 PSP are expected to be its principle user group.
13340
13341 Features:
13342 @enumerate
13343 @item Generates HTML, SGML, XML, SQL, Postscript, form email, LaTeX, or any other
13344 text-based format.
13345 @item Cleanly separates content, graphic design, and program code.
13346 @item Blends the power and flexibility of Python with a simple template language
13347 that non-programmers can understand.
13348 @item Gives template writers full access to any Python data structure, module,
13349 function, object, or method in their templates.
13350 @item Makes code reuse easy by providing an object-orientated interface to
13351 templates that is accessible from Python code or other Cheetah templates.
13352 One template can subclass another and selectively reimplement sections of it.
13353 @item Provides a simple, yet powerful, caching mechanism that can dramatically
13354 improve the performance of a dynamic website.
13355 @item Compiles templates into optimized, yet readable, Python code.
13356 @end enumerate")
13357 (license (license:x11-style "file://LICENSE"))))
13358
13359 (define-public python-dulwich
13360 (package
13361 (name "python-dulwich")
13362 (version "0.16.3")
13363 (source
13364 (origin
13365 (method url-fetch)
13366 (uri (list (string-append "https://www.dulwich.io/releases/"
13367 "dulwich-" version ".tar.gz")
13368 (pypi-uri "dulwich" version)))
13369 (sha256
13370 (base32 "0fl47vzfgc3w3rmhn8naii905cjqcp0vc68iyvymxp7567hh6als"))))
13371 (build-system python-build-system)
13372 (arguments
13373 `(#:phases
13374 (modify-phases %standard-phases
13375 (add-before 'check 'fix-tests
13376 (lambda* (#:key inputs #:allow-other-keys)
13377 ;; The tests use Popen with a custom environment which doesn't
13378 ;; include PATH.
13379 (substitute* "dulwich/tests/compat/utils.py"
13380 (("'git'") (string-append "'"
13381 (which "git")
13382 "'")))
13383 (substitute* '("dulwich/tests/test_repository.py"
13384 "dulwich/tests/test_hooks.py")
13385 (("#!/bin/sh") (string-append "#!" (which "sh"))))
13386 (setenv "TEST_RUNNER" "unittest")
13387 (setenv "PYTHONHASHSEED" "random")
13388 #t)))))
13389 (propagated-inputs
13390 `(("python-fastimport" ,python-fastimport)))
13391 (native-inputs
13392 `(("python-mock" ,python-mock)
13393 ("python-geventhttpclient" ,python-geventhttpclient)
13394 ("git" ,git)))
13395 (home-page "https://www.dulwich.io/")
13396 (synopsis "Git implementation in Python")
13397 (description "Dulwich is an implementation of the Git file formats and
13398 protocols written in pure Python.")
13399 ;; Can be used with either license.
13400 (license (list license:asl2.0 license:gpl2+))))
13401
13402 (define-public python2-dulwich
13403 (package-with-python2 python-dulwich))
13404
13405 (define-public python-pbkdf2
13406 (package
13407 (name "python-pbkdf2")
13408 (version "1.3")
13409 (source
13410 (origin
13411 (method url-fetch)
13412 (uri (pypi-uri "pbkdf2" version))
13413 (sha256
13414 (base32
13415 "0yb99rl2mbsaamj571s1mf6vgniqh23v98k4632150hjkwv9fqxc"))))
13416 (build-system python-build-system)
13417 (arguments
13418 '(#:phases
13419 (modify-phases %standard-phases
13420 (replace 'check
13421 (lambda _
13422 (setenv "PYTHONPATH"
13423 (string-append (getcwd) "/build/lib:"
13424 (getenv "PYTHONPATH")))
13425 (zero? (system* "python" "test/test_pbkdf2.py")))))))
13426 (propagated-inputs
13427 `(("python-pycrypto" ,python-pycrypto))) ; optional
13428 (home-page "http://www.dlitz.net/software/python-pbkdf2/")
13429 (synopsis "Password-based key derivation")
13430 (description "This module implements the password-based key derivation
13431 function, PBKDF2, specified in RSA PKCS#5 v2.0.
13432
13433 PKCS#5 v2.0 Password-Based Key Derivation is a key derivation function which
13434 is part of the RSA Public Key Cryptography Standards series. The provided
13435 implementation takes a password or a passphrase and a salt value (and
13436 optionally a iteration count, a digest module, and a MAC module) and provides
13437 a file-like object from which an arbitrarly-sized key can be read.")
13438 (license license:expat)))
13439
13440 (define-public python2-pbkdf2
13441 (package-with-python2 python-pbkdf2))
13442
13443 (define-public python-qrcode
13444 (package
13445 (name "python-qrcode")
13446 (version "5.3")
13447 (source
13448 (origin
13449 (method url-fetch)
13450 (uri (pypi-uri "qrcode" version))
13451 (sha256
13452 (base32
13453 "0kljfrfq0c2rmxf8am57333ia41kd0snbm2rnqbdy816hgpcq5a1"))))
13454 (build-system python-build-system)
13455 (arguments
13456 ;; FIXME: Tests require packaging 'pymaging'.
13457 '(#:tests? #f))
13458 (propagated-inputs
13459 `(("python-lxml" ,python-lxml) ; for SVG output
13460 ("python-pillow" ,python-pillow) ; for PNG output
13461 ("python-six" ,python-six)))
13462 (home-page "https://github.com/lincolnloop/python-qrcode")
13463 (synopsis "QR Code image generator")
13464 (description "This package provides a pure Python QR Code generator
13465 module. It uses the Python Imaging Library (PIL) to allow for the generation
13466 of QR Codes.
13467
13468 In addition this package provides a command line tool to generate QR codes and
13469 either write these QR codes to a file or do the output as ascii art at the
13470 console.")
13471 (license license:bsd-3)))
13472
13473 (define-public python2-qrcode
13474 (package-with-python2 python-qrcode))
13475
13476 ;; SlowAES isn't compatible with Python 3.
13477 (define-public python2-slowaes
13478 (package
13479 (name "python2-slowaes")
13480 (version "0.1a1")
13481 (source
13482 (origin
13483 (method url-fetch)
13484 (uri (pypi-uri "slowaes" version))
13485 (sha256
13486 (base32
13487 "02dzajm83a7lqgxf6r3hgj64wfmcxz8gs4nvgxpvj5n19kjqlrc3"))))
13488 (build-system python-build-system)
13489 (arguments `(#:python ,python-2))
13490 (home-page "http://code.google.com/p/slowaes/")
13491 (synopsis "Implementation of AES in Python")
13492 (description "This package contains an implementation of AES in Python.
13493 This implementation is slow (hence the project name) but still useful when
13494 faster ones are not available.")
13495 (license license:asl2.0)))
13496
13497 (define-public python-rst2ansi
13498 (package
13499 (name "python-rst2ansi")
13500 (version "0.1.5")
13501 (source
13502 (origin
13503 (method url-fetch)
13504 (uri (pypi-uri "rst2ansi" version))
13505 (sha256
13506 (base32
13507 "0vzy6gd60l79ff750scl0sz48r1laalkl6md6dwzah4dcadgn5qv"))))
13508 (build-system python-build-system)
13509 (propagated-inputs
13510 `(("python-docutils" ,python-docutils)))
13511 (home-page "https://github.com/Snaipe/python-rst-to-ansi")
13512 (synopsis "Convert RST to ANSI-decorated console output")
13513 (description
13514 "Python module dedicated to rendering RST (reStructuredText) documents
13515 to ansi-escaped strings suitable for display in a terminal.")
13516 (license license:expat)))
13517
13518 (define-public python-ansi2html
13519 (package
13520 (name "python-ansi2html")
13521 (version "1.2.0")
13522 (source
13523 (origin
13524 (method url-fetch)
13525 (uri (pypi-uri "ansi2html" version))
13526 (sha256
13527 (base32
13528 "1wa00zffprb78w1mqq90dk47czz1knanys2a40zbw2vyapd5lp9y"))))
13529 (build-system python-build-system)
13530 (native-inputs
13531 `(("python-mock" ,python-mock)
13532 ("python-nose" ,python-nose)))
13533 (propagated-inputs
13534 `(("python-six" ,python-six)))
13535 (home-page "http://github.com/ralphbean/ansi2html")
13536 (synopsis "Convert ANSI-decorated console output to HTML")
13537 (description
13538 "@command{ansi2html} is a Python library and command line utility for
13539 convering text with ANSI color codes to HTML or LaTeX.")
13540 (license license:gpl3+)))
13541
13542 (define-public python2-ansi2html
13543 (package-with-python2 python-ansi2html))
13544
13545 (define-public python-ddt
13546 (package
13547 (name "python-ddt")
13548 (version "1.1.1")
13549 (source
13550 (origin
13551 (method url-fetch)
13552 (uri (pypi-uri "ddt" version))
13553 (sha256
13554 (base32
13555 "1c00ikkxr7lha97c81k938bzhgd4pbwamkjn0h4nkhr3xk00zp6n"))))
13556 (build-system python-build-system)
13557 (native-inputs
13558 `(("python-mock" ,python-mock)
13559 ("python-nose" ,python-nose)))
13560 (propagated-inputs
13561 `(("python-six" ,python-six)
13562 ("python-pyyaml" ,python-pyyaml)))
13563 (home-page "https://github.com/txels/ddt")
13564 (synopsis "Data-Driven Tests")
13565 (description
13566 "DDT (Data-Driven Tests) allows you to multiply one test case by running
13567 it with different test data, and make it appear as multiple test cases.")
13568 (license license:expat)))
13569
13570 (define-public python2-ddt
13571 (package-with-python2 python-ddt))
13572
13573 (define-public python-pycosat
13574 (package
13575 (name "python-pycosat")
13576 (version "0.6.1")
13577 (source
13578 (origin
13579 (method url-fetch)
13580 (uri (pypi-uri "pycosat" version))
13581 (sha256
13582 (base32
13583 "1kl3wh1f47rc712n4bmwplbx3fqz3x9i1b587jrbpmvdva4c8f6l"))))
13584 ;; TODO: Unundle picosat. http://fmv.jku.at/picosat/
13585 (build-system python-build-system)
13586 (home-page "https://github.com/ContinuumIO/pycosat")
13587 (synopsis "Bindings to picosat (a SAT solver)")
13588 (description
13589 "This package provides efficient Python bindings to @code{picosat} on
13590 the C level. When importing pycosat, the @code{picosat} solver becomes part
13591 of the Python process itself. @code{picosat} is a @dfn{Boolean Satisfiability
13592 Problem} (SAT) solver.")
13593 (license license:expat)))
13594
13595 (define-public python2-pycosat
13596 (package-with-python2 python-pycosat))
13597
13598 (define-public python2-ruamel.ordereddict
13599 (package
13600 (name "python2-ruamel.ordereddict")
13601 (version "0.4.9")
13602 (source
13603 (origin
13604 (method url-fetch)
13605 (uri (pypi-uri "ruamel.ordereddict" version))
13606 (sha256
13607 (base32
13608 "1xmkl8v9l9inm2pyxgc1fm5005yxm7fkd5gv74q7lj1iy5qc8n3h"))))
13609 (build-system python-build-system)
13610 (arguments
13611 `(#:python ,python-2
13612 #:phases
13613 (modify-phases %standard-phases
13614 (delete 'check)
13615 (add-after 'install 'check
13616 (lambda* (#:key inputs outputs #:allow-other-keys)
13617 (add-installed-pythonpath inputs outputs)
13618 (zero? (system* "python" "test/testordereddict.py")))))))
13619 (home-page "https://bitbucket.org/ruamel/ordereddict")
13620 (synopsis "Version of dict that keeps keys in insertion order")
13621 (description
13622 "This is an implementation of an ordered dictionary with @dfn{Key
13623 Insertion Order} (KIO: updates of values do not affect the position of the
13624 key), @dfn{Key Value Insertion Order} (KVIO, an existing key's position is
13625 removed and put at the back). The standard library module @code{OrderedDict},
13626 implemented later, implements a subset of @code{ordereddict} functionality.
13627 Sorted dictionaries are also provided. Currently only with @dfn{Key Sorted
13628 Order} (KSO, no sorting function can be specified, but a transform can be
13629 specified to apply on the key before comparison (e.g. @code{string.lower})).")
13630 (license license:expat)))
13631
13632 (define-public python-pypeg2
13633 (package
13634 (name "python-pypeg2")
13635 (version "2.15.2")
13636 (source
13637 (origin
13638 (method url-fetch)
13639 (uri (pypi-uri "pyPEG2" version))
13640 (sha256
13641 (base32
13642 "0v8ziaam2r637v94ra4dbjw6jzxz99gs5x4i585kgag1v204yb9b"))))
13643 (build-system python-build-system)
13644 (propagated-inputs `(("python-lxml" ,python-lxml)))
13645 (arguments
13646 ;;https://bitbucket.org/fdik/pypeg/issues/36/test-failures-on-py35
13647 '(#:tests? #f))
13648 (home-page "https://fdik.org/pyPEG/")
13649 (synopsis "Parsering Expression Grammars in Python")
13650 (description "PyPEG is an intrinsic parser interpreter framework for
13651 Python. It is based on Parsing Expression Grammars, PEG. With pyPEG you can
13652 parse many formal languages.")
13653 (license license:gpl2)))
13654
13655 (define-public python2-cliapp
13656 (package
13657 (name "python2-cliapp")
13658 (version "1.20160724")
13659 (source
13660 (origin
13661 (method url-fetch)
13662 (uri (string-append
13663 "http://git.liw.fi/cgi-bin/cgit/cgit.cgi/cliapp/snapshot/cliapp-"
13664 version ".tar.gz"))
13665 (sha256
13666 (base32
13667 "025cyi75vxyghbm4hav8dz4fzwksshddavy9g9fwr440awcvw74f"))))
13668 (build-system python-build-system)
13669 (arguments
13670 `(#:python ,python-2))
13671 (propagated-inputs
13672 `(("python2-pyaml" ,python2-pyaml)))
13673 (home-page "https://liw.fi/cliapp/")
13674 (synopsis "Python framework for command line programs")
13675 (description "@code{python2-cliapp} is a python framework for
13676 command line programs. It contains the typical stuff such programs
13677 need to do, such as parsing the command line for options, and
13678 iterating over input files.")
13679 (license license:gpl2+)))
13680
13681 (define-public python2-ttystatus
13682 (package
13683 (name "python2-ttystatus")
13684 (version "0.32")
13685 (source
13686 (origin
13687 (method url-fetch)
13688 (uri (string-append
13689 "http://git.liw.fi/cgi-bin/cgit/cgit.cgi/ttystatus/snapshot/ttystatus-"
13690 version ".tar.gz"))
13691 (sha256
13692 (base32
13693 "0b5g889jj23r2w1hi300cdldx6jvspanp0ybf5n1qvdvl150aamf"))))
13694 (build-system python-build-system)
13695 (arguments
13696 `(#:python ,python-2))
13697 (home-page "https://liw.fi/ttystatus/")
13698 (synopsis "Python library for showing progress reporting and
13699 status updates on terminals")
13700 (description "@code{python2-ttystatus} is a python library for
13701 showing progress reporting and status updates on terminals, for
13702 command line programs. Output is automatically adapted to the width
13703 of the terminal: truncated if it does not fit, and resized if the
13704 terminal size changes.")
13705 (license license:gpl3+)))
13706
13707 (define-public python2-tracing
13708 (package
13709 (name "python2-tracing")
13710 (version "0.10")
13711 (source
13712 (origin
13713 (method url-fetch)
13714 (uri (string-append
13715 "http://git.liw.fi/cgi-bin/cgit/cgit.cgi/python-tracing/snapshot/tracing-"
13716 version ".tar.gz"))
13717 (sha256
13718 (base32
13719 "06cw4zg42fsvqy372vi2whj26w56vzg5axhzwdjc2bgwf03garbw"))))
13720 (build-system python-build-system)
13721 (arguments
13722 `(#:python ,python-2))
13723 (home-page "https://liw.fi/tracing/")
13724 (synopsis "Python debug logging helper")
13725 (description "@code{python2-tracing} is a python library for
13726 logging debug messages. It provides a way to turn debugging messages
13727 on and off, based on the filename they occur in. It is much faster
13728 than using @code{logging.Filter} to accomplish the same thing, which
13729 matters when code is run in production mode. The actual logging still
13730 happens using the @code{logging} library.")
13731 (license license:gpl3+)))
13732
13733 (define-public python2-larch
13734 (package
13735 (name "python2-larch")
13736 (version "1.20151025")
13737 (source
13738 (origin
13739 (method url-fetch)
13740 (uri (string-append
13741 "http://git.liw.fi/cgi-bin/cgit/cgit.cgi/larch/snapshot/larch-"
13742 version ".tar.gz"))
13743 (sha256
13744 (base32
13745 "1p4knkkavlqymgciz2wbcnfrdgdbafhg14maplnk4vbw0q8xs663"))))
13746 (build-system python-build-system)
13747 (arguments
13748 `(#:python ,python-2))
13749 (propagated-inputs
13750 `(("python2-tracing" ,python2-tracing)))
13751 (home-page "https://liw.fi/larch/")
13752 (synopsis "Python copy-on-write B-tree library")
13753 (description "@code{python2-larch} is an implementation of
13754 particular kind of B-tree, based on research by Ohad Rodeh. See
13755 @url{http://liw.fi/larch/ohad-btrees-shadowing-clones.pdf} for details
13756 on the data structure.
13757
13758 The distinctive feature of this B-tree is that a node is never
13759 (conceptually) modified. Instead, all updates are done by
13760 copy-on-write. This makes it easy to clone a tree, and modify only the
13761 clone, while other processes access the original tree.")
13762 (license license:gpl3+)))
13763
13764 (define-public python-htmlmin
13765 (package
13766 (name "python-htmlmin")
13767 (version "0.1.10")
13768 (source
13769 (origin
13770 (method url-fetch)
13771 (uri (pypi-uri "htmlmin" version))
13772 (sha256
13773 (base32
13774 "0qxa93j3p1ak32qh8d9kshqv8v3z0hkc13dwbhp5cn7sn3xmsp6a"))))
13775 (arguments
13776 `(#:tests? #f)) ;htmlmin has no tests
13777 (build-system python-build-system)
13778 (home-page "https://htmlmin.readthedocs.org/en/latest/")
13779 (synopsis "HTML minifier")
13780 (description "@code{htmlmin} is an HTML minifier that just works.
13781 It comes with safe defaults and easily configurable options.")
13782 (license license:bsd-3)))
13783
13784 (define-public python2-htmlmin
13785 (package-with-python2 python-htmlmin))
13786
13787 (define-public python-flask-htmlmin
13788 (package
13789 (name "python-flask-htmlmin")
13790 (version "1.2")
13791 (source
13792 (origin
13793 (method url-fetch)
13794 (uri (pypi-uri "Flask-HTMLmin" version))
13795 (sha256
13796 (base32
13797 "1n6zlq72kakkw0z2jpq6nh74lfsmxybm4g053pwhc14fbr809348"))))
13798 (propagated-inputs
13799 `(("python-flask" ,python-flask)
13800 ("python-htmlmin" ,python-htmlmin)))
13801 (build-system python-build-system)
13802 (home-page "https://github.com/hamidfzm/Flask-HTMLmin")
13803 (synopsis "HTML response minifier for Flask")
13804 (description
13805 "Minify @code{text/html} MIME type responses when using @code{Flask}.")
13806 (license license:bsd-3)))
13807
13808 (define-public python2-flask-htmlmin
13809 (package-with-python2 python-flask-htmlmin))
13810
13811 (define-public python-flask-login
13812 (package
13813 (name "python-flask-login")
13814 (version "0.4.0")
13815 (source
13816 (origin
13817 (method url-fetch)
13818 (uri (string-append "https://github.com/maxcountryman/flask-login/archive/"
13819 version ".tar.gz"))
13820 (file-name (string-append name "-" version ".tar.gz"))
13821 (sha256
13822 (base32
13823 "1pdqp7a2gyb7k06xda004x0fi2w66s6kn2i0ndkqndmg12d83f9w"))))
13824 (arguments
13825 ;; Tests fail PEP8 compliance. See:
13826 ;; https://github.com/maxcountryman/flask-login/issues/340
13827 `(#:tests? #f))
13828 (build-system python-build-system)
13829 (home-page "https://github.com/maxcountryman/flask-login")
13830 (synopsis "User session management for Flask")
13831 (description
13832 "@code{Flask-Login} provides user session management for Flask. It
13833 handles the common tasks of logging in, logging out, and remembering your
13834 users' sessions over extended periods of time.")
13835 (license license:expat)))
13836
13837 (define-public python2-flask-login
13838 (package-with-python2 python-flask-login))
13839
13840 (define-public python-astroid
13841 (package
13842 (name "python-astroid")
13843 (version "1.4.9")
13844 (source
13845 (origin
13846 (method url-fetch)
13847 (uri (string-append
13848 "https://github.com/PyCQA/astroid/archive/astroid-"
13849 version ".tar.gz"))
13850 (sha256
13851 (base32
13852 "0j0wgy54d13a470vm4b9rdjk99n1hmdxpf34x9k3pbmi9w9b566z"))))
13853 (build-system python-build-system)
13854 (propagated-inputs
13855 `(("python-lazy-object-proxy" ,python-lazy-object-proxy)
13856 ("python-six" ,python-six)
13857 ("python-wrapt" ,python-wrapt)))
13858 (arguments
13859 `(#:phases
13860 (modify-phases %standard-phases
13861 (replace 'check
13862 (lambda _
13863 (zero? (system* "python" "-m" "unittest" "discover"
13864 "-p" "unittest*.py")))))))
13865 (home-page "https://github.com/PyCQA/astroid")
13866 (synopsis "Common base representation of python source code for pylint and
13867 other projects")
13868 (description "@code{python-astroid} provides a common base representation
13869 of python source code for projects such as pychecker, pyreverse, pylint, etc.
13870
13871 It provides a compatible representation which comes from the _ast module. It
13872 rebuilds the tree generated by the builtin _ast module by recursively walking
13873 down the AST and building an extended ast. The new node classes have
13874 additional methods and attributes for different usages. They include some
13875 support for static inference and local name scopes. Furthermore, astroid
13876 builds partial trees by inspecting living objects.")
13877 (license license:lgpl2.1+)))
13878
13879 (define-public python2-astroid
13880 (package-with-python2 python-astroid))
13881
13882 (define-public python-isort
13883 (package
13884 (name "python-isort")
13885 (version "4.2.5")
13886 (source
13887 (origin
13888 (method url-fetch)
13889 (uri (string-append
13890 "https://github.com/timothycrosley/isort/archive/"
13891 version ".tar.gz"))
13892 (file-name (string-append name "-" version ".tar.gz"))
13893 (sha256
13894 (base32
13895 "0zsrgkb0krn5476yncy5dd56k7dk34zqb4bnlvwy44ixgilyjmfh"))))
13896 (build-system python-build-system)
13897 (native-inputs
13898 `(("python-mock" ,python-mock)
13899 ("python-pytest" ,python-pytest)))
13900 (home-page "https://github.com/timothycrosley/isort")
13901 (synopsis "Python utility/library to sort python imports")
13902 (description "@code{python-isort} is a python utility/library to sort
13903 imports alphabetically, and automatically separated into sections. It
13904 provides a command line utility, a python library and plugins for various
13905 editors.")
13906 (license license:expat)))
13907
13908 (define-public python2-isort
13909 (package-with-python2 python-isort))
13910
13911 (define-public python2-backports-functools-lru-cache
13912 (package
13913 (name "python2-backports-functools-lru-cache")
13914 (version "1.3")
13915 (source
13916 (origin
13917 (method url-fetch)
13918 ;; only the pypi tarballs contain the necessary metadata
13919 (uri (pypi-uri "backports.functools_lru_cache" version))
13920 (sha256
13921 (base32
13922 "158ysf2hb0q4p4695abfiym9x1ywg0dgh8a3apd7gqaaxjy22jj4"))))
13923 (build-system python-build-system)
13924 (native-inputs
13925 `(("python2-setuptools-scm" ,python2-setuptools-scm)))
13926 (arguments
13927 `(#:python ,python-2))
13928 (home-page "https://github.com/jaraco/backports.functools_lru_cache")
13929 (synopsis "Backport of functools.lru_cache from Python 3.3")
13930 (description "@code{python2-backports-functools-lru-cache} is a backport
13931 of @code{functools.lru_cache} from python 3.3.")
13932 (license license:expat)))
13933
13934 (define-public python-configparser
13935 (package
13936 (name "python-configparser")
13937 (version "3.5.0")
13938 (source
13939 (origin
13940 (method url-fetch)
13941 (uri (string-append
13942 "https://bitbucket.org/ambv/configparser/get/"
13943 version ".tar.bz2"))
13944 (file-name (string-append name "-" version ".tar.gz"))
13945 (sha256
13946 (base32
13947 "0waq40as14abwzbb321hfz4vr1fi363nscy32ga14qvfygrg96wa"))))
13948 (build-system python-build-system)
13949 (home-page "http://docs.python.org/py3k/library/configparser.html")
13950 (synopsis "Backport of configparser from python 3.5")
13951 (description "@code{python-configparser} is a backport of
13952 @code{configparser} from Python 3.5 so that it can be used directly
13953 in other versions.")
13954 (license license:expat)))
13955
13956 (define-public python2-configparser
13957 (package-with-python2 python-configparser))
13958
13959 (define-public python2-coverage-test-runner
13960 (package
13961 (name "python2-coverage-test-runner")
13962 (version "1.11")
13963 (source
13964 (origin
13965 (method url-fetch)
13966 (uri (string-append
13967 "http://git.liw.fi/cgi-bin/cgit/cgit.cgi/"
13968 "coverage-test-runner/snapshot/coverage-test-runner-"
13969 version ".tar.gz"))
13970 (sha256
13971 (base32
13972 "0y1m7z3dl63kmhcmydl1mwg0hacnf6ghrx9dah17j9iasssfa3g7"))))
13973 (build-system python-build-system)
13974 (arguments
13975 `(#:python ,python-2
13976 #:phases
13977 (modify-phases %standard-phases
13978 (replace 'check
13979 (lambda _
13980 (zero? (system* "./testrun")))))))
13981 (propagated-inputs
13982 `(("python2-coverage" ,python2-coverage)))
13983 (home-page "https://liw.fi/coverage-test-runner/")
13984 (synopsis "Python module for running unit tests")
13985 (description "@code{CoverageTestRunner} is a python module for running
13986 unit tests and failing them if the unit test module does not exercise all
13987 statements in the module it tests.")
13988 (license license:gpl3+)))
13989
13990 (define-public python-pylint
13991 (package
13992 (name "python-pylint")
13993 (version "1.6.5")
13994 (source
13995 (origin
13996 (method url-fetch)
13997 (uri (string-append
13998 "https://github.com/PyCQA/pylint/archive/pylint-"
13999 version ".tar.gz"))
14000 (sha256
14001 (base32
14002 "08pmgflmq2zrzrn9nkfadzwa5vybz46wvwxhrsd2mjlcgsh4rzbm"))))
14003 (build-system python-build-system)
14004 (native-inputs
14005 `(("python-tox" ,python-tox)))
14006 (propagated-inputs
14007 `(("python-astroid" ,python-astroid)
14008 ("python-isort" ,python-isort)
14009 ("python-mccabe" ,python-mccabe)
14010 ("python-six" ,python-six)))
14011 (arguments
14012 `(#:phases
14013 (modify-phases %standard-phases
14014 (replace 'check
14015 (lambda _
14016 ;; Somehow, tests for python2-pylint
14017 ;; fail if run from the build directory
14018 (let ((work "/tmp/work"))
14019 (mkdir-p work)
14020 (setenv "PYTHONPATH"
14021 (string-append (getenv "PYTHONPATH") ":" work))
14022 (copy-recursively "." work)
14023 (with-directory-excursion "/tmp"
14024 (zero? (system* "python" "-m" "unittest" "discover"
14025 "-s" (string-append work "/pylint/test")
14026 "-p" "*test_*.py")))))))))
14027 (home-page "https://github.com/PyCQA/pylint")
14028 (synopsis "Python source code analyzer which looks for coding standard
14029 errors")
14030 (description "Pylint is a Python source code analyzer which looks
14031 for programming errors, helps enforcing a coding standard and sniffs
14032 for some code smells (as defined in Martin Fowler's Refactoring book).
14033
14034 Pylint has many rules enabled by default, way too much to silence them
14035 all on a minimally sized program. It's highly configurable and handle
14036 pragmas to control it from within your code. Additionally, it is
14037 possible to write plugins to add your own checks.")
14038 (license license:gpl2+)))
14039
14040 (define-public python2-pylint
14041 (let ((pylint (package-with-python2 python-pylint)))
14042 (package (inherit pylint)
14043 (propagated-inputs
14044 `(("python2-backports-functools-lru-cache"
14045 ,python2-backports-functools-lru-cache)
14046 ("python2-configparser" ,python2-configparser)
14047 ,@(package-propagated-inputs pylint))))))
14048
14049 (define-public python-paramunittest
14050 (package
14051 (name "python-paramunittest")
14052 (version "0.2")
14053 (source
14054 (origin
14055 (method url-fetch)
14056 (uri (pypi-uri "ParamUnittest" version))
14057 (sha256
14058 (base32
14059 "0kp793hws5xv1wvycxq7jw2pwy36f35k39jg8hx5qikij5a0jid1"))))
14060 (build-system python-build-system)
14061 (home-page
14062 "https://github.com/rik0/ParamUnittest")
14063 (synopsis
14064 "Simple extension to have parametrized unit tests")
14065 (description
14066 "This package allows to create parametrized unit-tests that work with the standard
14067 unittest package. A parametrized test case is automatically converted to multiple test
14068 cases. Since they are TestCase subclasses, they work with other test suites that
14069 recognize TestCases.")
14070 (license license:bsd-2)))
14071
14072 (define-public python2-python-paramunittest
14073 (package-with-python2 python-paramunittest))
14074
14075 (define-public python-mando
14076 (package
14077 (name "python-mando")
14078 (version "0.5")
14079 (source
14080 (origin
14081 (method url-fetch)
14082 (uri (pypi-uri "mando" version))
14083 (sha256
14084 (base32
14085 "0q05h66439gqdmlk4jqm6xrwrzfdgs4mwk70barxhr2y83qbbdc0"))))
14086 (build-system python-build-system)
14087 (propagated-inputs
14088 `(("python-rst2ansi" ,python-rst2ansi)))
14089 (native-inputs
14090 `(("python-sphinx" ,python-sphinx-1.5.3)
14091 ("python-paramunittest" ,python-paramunittest)))
14092 (home-page "https://mando.readthedocs.org/")
14093 (synopsis
14094 "Wrapper around argparse, allowing creation of complete CLI applications")
14095 (description
14096 "This package is a wrapper around argparse, allowing you to write complete CLI
14097 applications in seconds while maintaining all the flexibility.")
14098 (license license:expat)))
14099
14100 (define-public python2-mando
14101 (package-with-python2 python-mando))
14102
14103 (define-public python-mando-0.3.1
14104 ;; python-radon (version 1.5.0) has a requirement
14105 ;; for mando<0.4,>=0.3
14106 (package
14107 (inherit python-mando)
14108 (name "python-mando")
14109 (version "0.3.1")
14110 (source
14111 (origin
14112 (method url-fetch)
14113 (uri (string-append "https://github.com/rubik/mando/archive/v"
14114 version
14115 ".tar.gz"))
14116 (sha256
14117 (base32
14118 "17jlkdpqw22z1nyml5ybslilqkzmnk0dxxjml8bfghav1l5hbwd2"))))))
14119
14120 (define-public python-fudge
14121 (package
14122 (name "python-fudge")
14123 ;; 0.9.6 is the latest version suitable for testing the "fabric" Python 2
14124 ;; package, which is currently the only use of this package.
14125 (version "0.9.6")
14126 (source
14127 (origin
14128 (method url-fetch)
14129 (uri (pypi-uri "fudge" version))
14130 (sha256
14131 (base32
14132 "185ia3vr3qk4f2s1a9hdxb8ci4qc0x0xidrad96pywg8j930qs9l"))))
14133 (build-system python-build-system)
14134 (arguments
14135 `(#:tests? #f)) ;XXX: Tests require the NoseJS Python package.
14136 (home-page "https://github.com/fudge-py/fudge")
14137 (synopsis "Replace real objects with fakes/mocks/stubs while testing")
14138 (description
14139 "Fudge is a Python module for using fake objects (mocks and stubs) to
14140 test real ones.
14141
14142 In readable Python code, you declare the methods available on your fake object
14143 and how they should be called. Then you inject that into your application and
14144 start testing. This declarative approach means you don’t have to record and
14145 playback actions and you don’t have to inspect your fakes after running code.
14146 If the fake object was used incorrectly then you’ll see an informative
14147 exception message with a traceback that points to the culprit.")
14148 (license license:expat)))
14149
14150 (define-public python2-fudge
14151 (package-with-python2 python-fudge))
14152
14153 (define-public python-oauth2client
14154 (package
14155 (name "python-oauth2client")
14156 (version "4.0.0")
14157 (source
14158 (origin
14159 (method url-fetch)
14160 (uri (pypi-uri "oauth2client" version))
14161 (sha256
14162 (base32
14163 "1irqqap2zibysf8dba8sklfqikia579srd0phm5n754ni0h59gl0"))))
14164 (build-system python-build-system)
14165 (arguments
14166 `(#:tests? #f))
14167 (propagated-inputs
14168 `(("python-httplib2" ,python-httplib2)
14169 ("python-pyasn1" ,python-pyasn1)
14170 ("python-pyasn1-modules" ,python-pyasn1-modules)
14171 ("python-rsa" ,python-rsa)
14172 ("python-six" ,python-six)))
14173 (home-page "http://github.com/google/oauth2client/")
14174 (synopsis "OAuth 2.0 client library")
14175 (description "@code{python-oauth2client} provides an OAuth 2.0 client
14176 library for Python")
14177 (license license:asl2.0)))
14178
14179 (define-public python-flask-oidc
14180 (package
14181 (name "python-flask-oidc")
14182 (version "1.1.1")
14183 (source
14184 (origin
14185 (method url-fetch)
14186 (uri (pypi-uri "flask-oidc" version))
14187 (sha256
14188 (base32
14189 "1ay5j0mf174bix7i67hclr95gv16z81fpx0dijvi0gydvdj3ddy2"))))
14190 (build-system python-build-system)
14191 (propagated-inputs
14192 `(("python-flask" ,python-flask)
14193 ("python-itsdangerous" ,python-itsdangerous)
14194 ("python-oauth2client" ,python-oauth2client)
14195 ("python-six" ,python-six)))
14196 (native-inputs
14197 `(("python-nose" ,python-nose)
14198 ("python-mock" ,python-mock)))
14199 (home-page "https://github.com/puiterwijk/flask-oidc")
14200 (synopsis "OpenID Connect extension for Flask")
14201 (description "@code{python-flask-oidc} provides an OpenID Connect extension
14202 for Flask.")
14203 (license license:bsd-2)))
14204
14205 (define-public python-mwclient
14206 (package
14207 (name "python-mwclient")
14208 (version "0.8.4")
14209 (source
14210 (origin
14211 (method url-fetch)
14212 ;; The PyPI version wouldn't contain tests.
14213 (uri (string-append "https://github.com/mwclient/mwclient/archive/"
14214 "v" version ".tar.gz"))
14215 (sha256
14216 (base32
14217 "1jj0yhilkjir00719fc7w133x7hdyhkxhk6xblla4asig45klsfv"))))
14218 (build-system python-build-system)
14219 (propagated-inputs
14220 `(("python-requests" ,python-requests)
14221 ("python-requests-oauthlib"
14222 ,python-requests-oauthlib)
14223 ("python-six" ,python-six)))
14224 (native-inputs
14225 `(("python-mock" ,python-mock)
14226 ("python-pytest" ,python-pytest)
14227 ("python-pytest-pep8" ,python-pytest-pep8)
14228 ("python-pytest-cache" ,python-pytest-cache)
14229 ("python-pytest-cov" ,python-pytest-cov)
14230 ("python-responses" ,python-responses)))
14231 (home-page "https://github.com/btongminh/mwclient")
14232 (synopsis "MediaWiki API client")
14233 (description "This package provides a MediaWiki API client.")
14234 (license license:expat)))
14235
14236 (define-public python2-mwclient
14237 (package-with-python2 python-mwclient))
14238
14239 (define-public python-pytest-warnings
14240 (package
14241 (name "python-pytest-warnings")
14242 (version "0.2.0")
14243 (source
14244 (origin
14245 (method url-fetch)
14246 (uri (pypi-uri "pytest-warnings" version))
14247 (sha256
14248 (base32
14249 "0gf2dpahpl5igb7jh1sr9acj3z3gp7zahqdqb69nk6wx01c8kc1g"))))
14250 (build-system python-build-system)
14251 (propagated-inputs
14252 `(("pytest" ,python-pytest-3.0)))
14253 (home-page "https://github.com/fschulze/pytest-warnings")
14254 (synopsis "Pytest plugin to list Python warnings in pytest report")
14255 (description
14256 "Python-pytest-warnings is a pytest plugin to list Python warnings in
14257 pytest report.")
14258 (license license:expat)))
14259
14260 (define-public python2-pytest-warnings
14261 (package-with-python2 python-pytest-warnings))
14262
14263 (define-public python-pytest-catchlog
14264 (package
14265 (name "python-pytest-catchlog")
14266 (version "1.2.2")
14267 (source
14268 (origin
14269 (method url-fetch)
14270 (uri (pypi-uri "pytest-catchlog" version ".zip"))
14271 (sha256
14272 (base32
14273 "1w7wxh27sbqwm4jgwrjr9c2gy384aca5jzw9c0wzhl0pmk2mvqab"))))
14274 (build-system python-build-system)
14275 (native-inputs
14276 `(("unzip" ,unzip)))
14277 (propagated-inputs
14278 `(("pytest" ,python-pytest-3.0)))
14279 (home-page "https://github.com/eisensheng/pytest-catchlog")
14280 (synopsis "Pytest plugin to catch log messages")
14281 (description
14282 "Python-pytest-catchlog is a pytest plugin to catch log messages. This is
14283 a fork of pytest-capturelog.")
14284 (license license:expat)))
14285
14286 (define-public python2-pytest-catchlog
14287 (package-with-python2 python-pytest-catchlog))
14288
14289 (define-public python-utils
14290 (package
14291 (name "python-utils")
14292 (version "2.1.0")
14293 (source (origin
14294 (method url-fetch)
14295 (uri (pypi-uri "python-utils" version))
14296 (sha256
14297 (base32
14298 "1mcsy6q5am4ya72rgkpb6kax6vv7c93cfkkas89xnpa4sj9zf28p"))))
14299 (build-system python-build-system)
14300 (native-inputs
14301 `(("pytest-runner" ,python-pytest-runner)
14302 ("pytest" ,python-pytest)
14303 ("six" ,python-six)))
14304 (home-page "https://github.com/WoLpH/python-utils")
14305 (synopsis "Convenient utilities not included with the standard Python install")
14306 (description
14307 "Python Utils is a collection of small Python functions and classes which
14308 make common patterns shorter and easier.")
14309 (license license:bsd-2)))
14310
14311 (define-public python2-utils
14312 (package-with-python2 python-utils))
14313
14314 (define-public python-webassets
14315 (package
14316 (name "python-webassets")
14317 (version "0.12.1")
14318 (source
14319 (origin
14320 (method url-fetch)
14321 (uri (pypi-uri "webassets" version))
14322 (sha256
14323 (base32
14324 "1nrqkpb7z46h2b77xafxihqv3322cwqv6293ngaky4j3ff4cing7"))))
14325 (build-system python-build-system)
14326 (native-inputs
14327 `(("python-jinja2" ,python-jinja2)
14328 ("python-mock" ,python-mock)
14329 ("python-nose" ,python-nose)
14330 ("python-pytest" ,python-pytest)))
14331 (home-page "https://github.com/miracle2k/webassets")
14332 (synopsis "Media asset management")
14333 (description "Merges, minifies and compresses Javascript and CSS files,
14334 supporting a variety of different filters, including YUI, jsmin, jspacker or
14335 CSS tidy. Also supports URL rewriting in CSS files.")
14336 (license license:bsd-2)))
14337
14338 (define-public python-sphinx-me
14339 (package
14340 (name "python-sphinx-me")
14341 (version "0.3")
14342 (source
14343 (origin
14344 (method url-fetch)
14345 (uri (pypi-uri "sphinx-me" version))
14346 (sha256
14347 (base32
14348 "06jzgp213zihnvpcy2y5jy3ykid3apc2ncp2pg6a2g05lhiziglq"))))
14349 (build-system python-build-system)
14350 (home-page "https://github.com/stephenmcd/sphinx-me")
14351 (synopsis "Create a Sphinx documentation shell")
14352 (description
14353 "Create a Sphinx documentation shell for your project and include the
14354 README file as the documentation index. It handles extracting the required
14355 meta data such as the project name, author and version from your project for
14356 use in your Sphinx docs.")
14357 (license license:bsd-2)))
14358
14359 (define-public python2-sphinx-me
14360 (package-with-python2 python-sphinx-me))
14361
14362 (define-public python-cssmin
14363 (package
14364 (name "python-cssmin")
14365 (version "0.2.0")
14366 (source
14367 (origin
14368 (method url-fetch)
14369 (uri (pypi-uri "cssmin" version))
14370 (sha256
14371 (base32
14372 "1dk723nfm2yf8cp4pj785giqlwv42l0kj8rk40kczvq1hk6g04p0"))))
14373 (build-system python-build-system)
14374 (home-page "https://github.com/zacharyvoase/cssmin")
14375 (synopsis "Python port of the YUI CSS Compressor")
14376 (description "Python port of the YUI CSS Compressor.")
14377 (license (list license:expat license:bsd-3))))
14378
14379 (define-public python2-cssmin
14380 (package-with-python2 python-cssmin))
14381
14382 (define-public python-diff-match-patch
14383 (package
14384 (name "python-diff-match-patch")
14385 (version "20121119")
14386 (source
14387 (origin
14388 (method url-fetch)
14389 (uri (pypi-uri "diff-match-patch" version))
14390 (sha256
14391 (base32
14392 "0k1f3v8nbidcmmrk65m7h8v41jqi37653za9fcs96y7jzc8mdflx"))))
14393 (build-system python-build-system)
14394 (home-page "https://code.google.com/p/google-diff-match-patch")
14395 (synopsis "Synchronize plain text")
14396 (description "Diff Match and Patch libraries offer robust algorithms to
14397 perform the operations required for synchronizing plain text.")
14398 (license license:asl2.0)))
14399
14400 (define-public python2-diff-match-patch
14401 (package-with-python2 python-diff-match-patch))
14402
14403 (define-public python-dirsync
14404 (package
14405 (name "python-dirsync")
14406 (version "2.2.2")
14407 (source
14408 (origin
14409 (method url-fetch)
14410 (uri (pypi-uri "dirsync" version ".zip"))
14411 (sha256
14412 (base32
14413 "1hcdvmkwd5512zbxpin0k7bx5bkgzy3swjx7d0kj1y45af6r75v2"))))
14414 (build-system python-build-system)
14415 (native-inputs
14416 `(("unzip" ,unzip)))
14417 (propagated-inputs
14418 `(("six" ,python-six)))
14419 (home-page "https://bitbucket.org/tkhyn/dirsync")
14420 (synopsis "Advanced directory tree synchronisation tool")
14421 (description "Advanced directory tree synchronisation tool.")
14422 (license license:expat)))
14423
14424 (define-public python2-dirsync
14425 (package-with-python2 python-dirsync))
14426
14427 (define-public python-nosexcover
14428 (package
14429 (name "python-nosexcover")
14430 (version "1.0.11")
14431 (source (origin
14432 (method url-fetch)
14433 (uri (pypi-uri "nosexcover" version))
14434 (sha256
14435 (base32
14436 "10xqr12qv62k2flxwqhh8cr00cjhn7sfjrm6p35gd1x5bmjkr319"))))
14437 (build-system python-build-system)
14438 (propagated-inputs
14439 `(("python-coverage" ,python-coverage)
14440 ("python-nose" ,python-nose)))
14441 (home-page "http://github.com/cmheisel/nose-xcover")
14442 (synopsis "Extends nose.plugins.cover to add Cobertura-style XML reports")
14443 (description "Nose-xcover is a companion to the built-in
14444 @code{nose.plugins.cover}. This plugin will write out an XML coverage report
14445 to a file named coverage.xml.
14446
14447 It will honor all the options you pass to the Nose coverage plugin,
14448 especially -cover-package.")
14449 (license license:expat)))
14450
14451 (define-public python2-nosexcover
14452 (package-with-python2 python-nosexcover))
14453
14454 (define-public python-elasticsearch
14455 (package
14456 (name "python-elasticsearch")
14457 (version "1.0.0")
14458 (source
14459 (origin
14460 (method url-fetch)
14461 (uri (pypi-uri "elasticsearch" version))
14462 (sha256
14463 (base32
14464 "1sdw1r05cw7ihnmng8ra9v968fj7bq6sji8i1dikymsnkcpgc69g"))))
14465 (build-system python-build-system)
14466 (native-inputs
14467 `(("python-mock" ,python-mock)
14468 ("python-nosexcover" ,python-nosexcover)
14469 ("python-pyaml" ,python-pyaml)
14470 ("python-requests" ,python-requests)))
14471 (propagated-inputs
14472 `(("urllib3" ,python-urllib3)))
14473 (arguments
14474 ;; tests require the test_elasticsearch module but it is not distributed.
14475 `(#:tests? #f))
14476 (home-page "https://github.com/elastic/elasticsearch-py")
14477 (synopsis "Low-level client for Elasticsearch")
14478 (description "Official low-level client for Elasticsearch. Its goal is to
14479 provide common ground for all Elasticsearch-related code in Python; because of
14480 this it tries to be opinion-free and very extendable.")
14481 (license license:expat)))
14482
14483 (define-public python2-elasticsearch
14484 (package-with-python2 python-elasticsearch))
14485
14486 (define-public python-levenshtein
14487 (package
14488 (name "python-levenshtein")
14489 (version "0.12.0")
14490 (source
14491 (origin
14492 (method url-fetch)
14493 (uri (pypi-uri "python-Levenshtein" version))
14494 (sha256
14495 (base32
14496 "1c9ybqcja31nghfcc8xxbbz9h60s9qi12b9hr4jyl69xbvg12fh3"))))
14497 (build-system python-build-system)
14498 (home-page "https://github.com/ztane/python-Levenshtein")
14499 (synopsis "Fast computation of Levenshtein distance and string similarity")
14500 (description
14501 "The Levenshtein Python C extension module contains functions for fast computation of
14502 @enumerate
14503 @item Levenshtein (edit) distance, and edit operations
14504 @item string similarity
14505 @item approximate median strings, and generally string averaging
14506 @item string sequence and set similarity
14507 @end enumerate
14508 It supports both normal and Unicode strings.")
14509 (license license:gpl2+)))
14510
14511 (define-public python2-levenshtein
14512 (package-with-python2 python-levenshtein))
14513
14514 (define-public python-scandir
14515 (package
14516 (name "python-scandir")
14517 (version "1.4")
14518 (source
14519 (origin
14520 (method url-fetch)
14521 (uri (pypi-uri "scandir" version))
14522 (sha256
14523 (base32 "0yjrgp0mxp3d8bjkq2m1ac2ys8n76wykksvgyjrnil9gr3fx7a5d"))))
14524 (build-system python-build-system)
14525 (home-page "https://github.com/benhoyt/scandir")
14526 (synopsis "Directory iteration function")
14527 (description
14528 "Directory iteration function like os.listdir(), except that instead of
14529 returning a list of bare filenames, it yields DirEntry objects that include
14530 file type and stat information along with the name. Using scandir() increases
14531 the speed of os.walk() by 2-20 times (depending on the platform and file
14532 system) by avoiding unnecessary calls to os.stat() in most cases.")
14533 (license license:bsd-3)))
14534
14535 (define-public python2-scandir
14536 (package-with-python2 python-scandir))
14537
14538 (define-public python2-stemming
14539 (package
14540 (name "python2-stemming")
14541 (version "1.0.1")
14542 (source
14543 (origin
14544 (method url-fetch)
14545 (uri (pypi-uri "stemming" version))
14546 (sha256
14547 (base32 "0ldwa24gnnxhniv0fhygkpc2mwgd93q10ag8rvzayv6hw418frsr"))))
14548 (build-system python-build-system)
14549 (arguments
14550 `(#:python ,python-2))
14551 (home-page "https://bitbucket.org/mchaput/stemming/overview")
14552 (synopsis "Python implementations of various stemming algorithms")
14553 (description
14554 "Python implementations of the Porter, Porter2, Paice-Husk, and Lovins
14555 stemming algorithms for English. These implementations are straightforward and
14556 efficient, unlike some Python versions of the same algorithms available on the
14557 Web. This package is an extraction of the stemming code included in the Whoosh
14558 search engine.")
14559 (license license:public-domain)))
14560
14561 (define-public python-factory-boy
14562 (package
14563 (name "python-factory-boy")
14564 (version "2.8.1")
14565 (source
14566 (origin
14567 (method url-fetch)
14568 (uri (pypi-uri "factory_boy" version))
14569 (sha256
14570 (base32 "1fvin6san5xsjh2c4y18caj2lnmwxlylyqm8mh1yc6rp38wlwr56"))))
14571 (build-system python-build-system)
14572 (arguments
14573 ;; Tests are not included in the tarball.
14574 `(#:tests? #f))
14575 (propagated-inputs
14576 `(("faker" ,python-faker)))
14577 (home-page "https://github.com/benhoyt/scandir")
14578 (synopsis "Versatile test fixtures replacement")
14579 (description
14580 "Factory_boy is a fixtures replacement based on thoughtbot’s factory_girl.
14581
14582 As a fixtures replacement tool, it aims to replace static, hard to maintain
14583 fixtures with easy-to-use factories for complex object.
14584
14585 Instead of building an exhaustive test setup with every possible combination
14586 of corner cases, factory_boy allows you to use objects customized for the
14587 current test, while only declaring the test-specific fields")
14588 (license license:expat)))
14589
14590 (define-public python2-factory-boy
14591 (package-with-python2 python-factory-boy))
14592
14593 (define-public python-translate-toolkit
14594 (package
14595 (name "python-translate-toolkit")
14596 (version "2.1.0")
14597 (source
14598 (origin
14599 (method url-fetch)
14600 (uri (pypi-uri "translate-toolkit" version ".tar.bz2"))
14601 (sha256
14602 (base32 "1vlkwrg83vb17jc36pmwh2b7jphwf390lz0jw8hakcg16qhwypvq"))))
14603 (build-system python-build-system)
14604 (native-inputs
14605 `(("python-pytest" ,python-pytest)
14606 ("python-sphinx" ,python-sphinx)))
14607 (propagated-inputs
14608 `(("python-babel" ,python-babel)
14609 ("python-beautifulsoup4" ,python-beautifulsoup4)
14610 ("python-chardet" ,python-chardet)
14611 ("python-diff-match-patch" ,python-diff-match-patch)
14612 ("python-levenshtein" ,python-levenshtein)
14613 ("python-lxml" ,python-lxml)
14614 ("python-six" ,python-six)
14615 ("python-vobject" ,python-vobject)
14616 ("python-pyyaml" ,python-pyyaml)))
14617 (arguments
14618 ;; TODO: tests are not run, because they end with
14619 ;; TypeError: parse() missing 2 required positional arguments: 'tree' and
14620 ;; 'parse_funcs'
14621 ;; during test setup.
14622 `(#:tests? #f))
14623 (home-page "http://toolkit.translatehouse.org")
14624 (synopsis "Tools and API for translation and localization engineering")
14625 (description
14626 "Tools and API for translation and localization engineering. It contains
14627 several utilities, as well as an API for building localization tools.")
14628 (license license:gpl2+)))
14629
14630 (define-public python2-translate-toolkit
14631 (package-with-python2 python-translate-toolkit))
14632
14633 (define-public python-mysqlclient
14634 (package
14635 (name "python-mysqlclient")
14636 (version "1.3.10")
14637 (source
14638 (origin
14639 (method url-fetch)
14640 (uri (pypi-uri "mysqlclient" version))
14641 (sha256
14642 (base32
14643 "0qkj570x4rbsblji6frvsvp2v1ap32dqzj1lq62zp9515ffsyaj5"))))
14644 (build-system python-build-system)
14645 (native-inputs
14646 `(("mariadb" ,mariadb)
14647 ("nose" ,python-nose)
14648 ("mock" ,python-mock)
14649 ("py.test" ,python-pytest)))
14650 (inputs
14651 `(("mysql" ,mysql)
14652 ("libz" ,zlib)
14653 ("openssl" ,openssl)))
14654 (home-page "https://github.com/PyMySQL/mysqlclient-python")
14655 (synopsis "MySQLdb is an interface to the popular MySQL database server for Python")
14656 (description "MySQLdb is an interface to the popular MySQL database server
14657 for Python. The design goals are:
14658 @enumerate
14659 @item Compliance with Python database API version 2.0 [PEP-0249],
14660 @item Thread-safety,
14661 @item Thread-friendliness (threads will not block each other).
14662 @end enumerate")
14663 (license license:gpl2)))
14664
14665 (define-public python2-mysqlclient
14666 (package-with-python2 python-mysqlclient))
14667
14668 (define-public python-hiredis
14669 (package
14670 (name "python-hiredis")
14671 (version "0.2.0")
14672 (source
14673 (origin
14674 (method url-fetch)
14675 (uri (pypi-uri "hiredis" version))
14676 (sha256
14677 (base32
14678 "1dfm2k9l9zar9nw9fwmm74zrgraxdxs04vx9li56fjcf289qx5fa"))))
14679 (build-system python-build-system)
14680 (arguments
14681 ;; no tests
14682 `(#:tests? #f))
14683 (home-page "https://github.com/redis/hiredis-py")
14684 (synopsis "Python extension that wraps protocol parsing code in hiredis")
14685 (description "Python-hiredis is a python extension that wraps protocol
14686 parsing code in hiredis. It primarily speeds up parsing of multi bulk replies.")
14687 (license license:bsd-3)))
14688
14689 (define-public python2-hiredis
14690 (package-with-python2 python-hiredis))
14691
14692 (define-public python-fakeredis
14693 (package
14694 (name "python-fakeredis")
14695 (version "0.8.2")
14696 (source
14697 (origin
14698 (method url-fetch)
14699 (uri (pypi-uri "fakeredis" version))
14700 (sha256
14701 (base32
14702 "0zncahj3byyasyfx9i7k991ph0n0lq8v3a21pqri5qxn9564bk9r"))))
14703 (build-system python-build-system)
14704 (arguments
14705 ;; no tests
14706 `(#:tests? #f))
14707 (home-page "https://github.com/jamesls/fakeredis")
14708 (synopsis "Fake implementation of redis API for testing purposes")
14709 (description "Fakeredis is a pure python implementation of the redis-py
14710 python client that simulates talking to a redis server. This was created for a
14711 single purpose: to write unittests. Setting up redis is not hard, but many time
14712 you want to write unittests that do not talk to an external server (such as
14713 redis). This module now allows tests to simply use this module as a reasonable
14714 substitute for redis.")
14715 (license license:bsd-3)))
14716
14717 (define-public python2-fakeredis
14718 (package-with-python2 python-fakeredis))
14719
14720 (define-public python-behave-web-api
14721 (package
14722 (name "python-behave-web-api")
14723 (version "1.0.6")
14724 (source
14725 (origin
14726 (method url-fetch)
14727 (uri (pypi-uri "behave-web-api" version))
14728 (sha256
14729 (base32
14730 "03kpq2xsy1gab3jy0dccbxlsg7vwfy4lagss0qldwmx3xz6b3i19"))))
14731 (build-system python-build-system)
14732 (arguments
14733 `(#:phases
14734 (modify-phases %standard-phases
14735 (add-after 'unpack 'fix-dependencies
14736 (lambda _
14737 (substitute* "setup.py"
14738 (("'wheel'") "") ; We don't use it.
14739 (("'ordereddict==1.1'") ""))))))) ; Python >= 2.7 has it built-in.
14740 (propagated-inputs
14741 `(("behave" ,behave)
14742 ("python-requests" ,python-requests)))
14743 (home-page "https://github.com/jefersondaniel/behave-web-api")
14744 (synopsis "Provides testing for JSON APIs with Behave for Python")
14745 (description "This package provides testing utility modules for testing
14746 JSON APIs with Behave.")
14747 (license license:expat)))
14748
14749 (define-public python2-behave-web-api
14750 (package-with-python2 python-behave-web-api))
14751
14752 (define-public python-flask-script
14753 (package
14754 (name "python-flask-script")
14755 (version "2.0.5")
14756 (source
14757 (origin
14758 (method url-fetch)
14759 (uri (pypi-uri "Flask-Script" version))
14760 (sha256
14761 (base32
14762 "0zqh2yq8zk7m9b4xw1ryqmrljkdigfb3hk5155a3b5hkfnn6xxyf"))))
14763 (build-system python-build-system)
14764 (propagated-inputs
14765 `(("python-flask" ,python-flask)
14766 ("python-argcomplete" ,python-argcomplete)
14767 ("python-werkzeug" ,python-werkzeug)))
14768 (native-inputs
14769 `(("python-pytest" ,python-pytest)))
14770 (home-page
14771 "http://github.com/smurfix/flask-script")
14772 (synopsis "Scripting support for Flask")
14773 (description "The Flask-Script extension provides support for writing
14774 external scripts in Flask. This includes running a development server,
14775 a customised Python shell, scripts to set up your database, cronjobs,
14776 and other command-line tasks that belong outside the web application
14777 itself.")
14778 (license license:bsd-3)))
14779
14780 (define-public python2-flask-script
14781 (package-with-python2 python-flask-script))
14782
14783 (define-public python-flask-migrate
14784 (package
14785 (name "python-flask-migrate")
14786 (version "2.0.3")
14787 (source
14788 (origin
14789 (method url-fetch)
14790 (uri (pypi-uri "Flask-Migrate" version))
14791 (sha256
14792 (base32
14793 "107x78lkqsnbg92dld3dkagg07jvchp3ib3y0sivc4ipz6n1y7rk"))))
14794 (build-system python-build-system)
14795 (propagated-inputs
14796 `(("python-flask" ,python-flask)
14797 ("python-alembic" ,python-alembic)
14798 ("python-sqlalchemy" ,python-sqlalchemy)
14799 ("python-flask-script" ,python-flask-script)
14800 ("python-flask-sqlalchemy" ,python-flask-sqlalchemy)))
14801 (home-page "http://github.com/miguelgrinberg/flask-migrate/")
14802 (synopsis "SQLAlchemy database migrations for Flask programs using
14803 Alembic")
14804 (description "This package contains SQLAlchemy database migration tools
14805 for Flask programs that are using @code{python-alembic}.")
14806 (license license:expat)))
14807
14808 (define-public python2-flask-migrate
14809 (package-with-python2 python-flask-migrate))
14810
14811 (define-public python-packaging
14812 (package
14813 (name "python-packaging")
14814 (version "16.8")
14815 (source
14816 (origin
14817 (method url-fetch)
14818 (uri (pypi-uri "packaging" version))
14819 (sha256
14820 (base32
14821 "17k1xbjshackwvbsnxqixbph8rbqhz4bf4g3al5xyzhavxgq6l2x"))))
14822 (build-system python-build-system)
14823 (native-inputs
14824 `(("python-pretend" ,python-pretend)
14825 ("python-pytest" ,python-pytest)))
14826 (propagated-inputs
14827 `(("python-pyparsing" ,python-pyparsing)
14828 ("python-six" ,python-six)))
14829 (home-page "https://github.com/pypa/packaging")
14830 (synopsis "Core utilities for Python packages")
14831 (description "Packaging is a Python module for dealing with Python packages.
14832 It offers an interface for working with package versions, names, and dependency
14833 information.")
14834 ;; From 'LICENSE': This software is made available under the terms of
14835 ;; *either* of the licenses found in LICENSE.APACHE or LICENSE.BSD.
14836 ;; Contributions to this software is made under the terms of *both* these
14837 ;; licenses.
14838 (license (list license:asl2.0 license:bsd-2))))
14839
14840 (define-public python2-packaging
14841 (package-with-python2 python-packaging))
14842
14843 (define-public python-sql
14844 (package
14845 (name "python-sql")
14846 (version "0.9")
14847 (source
14848 (origin
14849 (method url-fetch)
14850 (uri (pypi-uri "python-sql" version))
14851 (sha256
14852 (base32
14853 "0p6kaqj02vz0habmdx37zjk6hjxdfm8aw737zs059vvpr70ird87"))))
14854 (build-system python-build-system)
14855 (home-page "https://python-sql.tryton.org/")
14856 (synopsis "Library to write SQL queries in a pythonic way")
14857 (description "@code{python-sql} is a library to write SQL queries, that
14858 transforms idiomatic python function calls to well-formed SQL queries.")
14859 (license license:bsd-3)))
14860
14861 (define-public python2-sql
14862 (package-with-python2 python-sql))
14863
14864 (define-public python-genshi
14865 (package
14866 (name "python-genshi")
14867 (version "0.7")
14868 (source
14869 (origin
14870 (method url-fetch)
14871 (uri (string-append
14872 "https://ftp.edgewall.org/pub/genshi/Genshi-"
14873 version ".tar.gz"))
14874 (patches
14875 (search-patches
14876 ;; The first 4 patches are in the master branch upstream.
14877 ;; See this as a reference https://genshi.edgewall.org/ticket/582
14878 ;; The last 2 are NOT in any branch.
14879 ;; They were sent as attachments to a ticket opened at
14880 ;; https://genshi.edgewall.org/ticket/602#no1
14881 "python-genshi-stripping-of-unsafe-script-tags.patch"
14882 "python-genshi-disable-speedups-on-python-3.3.patch"
14883 "python-genshi-isstring-helper.patch"
14884 "python-genshi-add-support-for-python-3.4-AST.patch"
14885 "python-genshi-fix-tests-on-python-3.5.patch"
14886 "python-genshi-buildable-on-python-2.7.patch"))
14887 (sha256
14888 (base32
14889 "0lkkbp6fbwzv0zda5iqc21rr7rdldkwh3hfabfjl9i4bwq14858x"))))
14890 (build-system python-build-system)
14891 (home-page "https://genshi.edgewall.org/")
14892 (synopsis "Toolkit for generation of output for the web")
14893 (description "Genshi is a Python library that provides an integrated set
14894 of components for parsing, generating, and processing HTML, XML or other
14895 textual content for output generation on the web.")
14896 (license license:bsd-3)))
14897
14898 ;; The linter here claims that patch file names should start with the package
14899 ;; name. But, in this case the patches are inherited from python-genshi with
14900 ;; the "python-genshi-" prefix instead of "python2-genshi-".
14901 (define-public python2-genshi
14902 (package-with-python2 python-genshi))
14903
14904 (define-public python-relatorio
14905 (package
14906 (name "python-relatorio")
14907 (version "0.6.4")
14908 (source
14909 (origin
14910 (method url-fetch)
14911 (uri (pypi-uri "relatorio" version))
14912 (sha256
14913 (base32
14914 "0lincq79mzgazwd9gh41dybjh9c3n87r83pl8nk3j79aihyfk84z"))))
14915 (build-system python-build-system)
14916 (propagated-inputs
14917 `(("python-lxml" ,python-lxml)
14918 ("python-genshi" ,python-genshi)))
14919 (home-page "https://relatorio.tryton.org/")
14920 (synopsis "Templating library able to output ODT and PDF files")
14921 (description "Relatorio is a templating library which provides a way to
14922 easily output ODT, ODS, PNG, SVG and several other kinds of files. Support
14923 for more filetypes can be easily added by creating plugins for them.")
14924 (license license:gpl3+)))
14925
14926 (define-public python2-relatorio
14927 (package-with-python2 python-relatorio))
14928
14929 (define-public python-radon
14930 (package
14931 (name "python-radon")
14932 (version "1.5.0")
14933 (source
14934 (origin
14935 (method url-fetch)
14936 (uri (pypi-uri "radon" version))
14937 (sha256
14938 (base32
14939 "1h6jv36am0i827182a04ki6291lyx4kp957xfr5njgprj4nd0qsl"))))
14940 (build-system python-build-system)
14941 (propagated-inputs
14942 `(("python-colorama" ,python-colorama)
14943 ("python-flake8-polyfill" ,python-flake8-polyfill)
14944 ("python-mando" ,python-mando-0.3.1)))
14945 (native-inputs
14946 `(("python-flake8" ,python-flake8)
14947 ("python-tox" ,python-tox)
14948 ("python-pytest" ,python-pytest)
14949 ("python-paramunittest" ,python-paramunittest)))
14950 (home-page "https://radon.readthedocs.org/")
14951 (synopsis "Code Metrics in Python")
14952 (description "Radon is a Python tool which computes various code metrics.
14953 Supported metrics are:
14954 @itemize @bullet
14955 @item raw metrics: SLOC, comment lines, blank lines, &c.
14956 @item Cyclomatic Complexity (i.e. McCabe’s Complexity)
14957 @item Halstead metrics (all of them)
14958 @item the Maintainability Index (a Visual Studio metric)
14959 @end itemize")
14960 (license license:expat)))
14961
14962 (define-public python2-radon
14963 (package-with-python2 python-radon))
14964
14965 (define-public python-sure
14966 (package
14967 (name "python-sure")
14968 (version "1.4.6")
14969 (source
14970 (origin
14971 (method url-fetch)
14972 (uri (pypi-uri "sure" version))
14973 (sha256
14974 (base32
14975 "1iyqsy2d6radi88g1qf0lziy5b39h5cpb3g5jiqyb4xi46ig3x1z"))))
14976 (build-system python-build-system)
14977 (propagated-inputs
14978 `(("python-mock" ,python-mock)
14979 ("python-six" ,python-six)))
14980 (native-inputs
14981 `(("python-nose" ,python-nose)))
14982 (home-page "https://github.com/gabrielfalcao/sure")
14983 (synopsis "Automated testing library in python for python")
14984 (description
14985 "Sure is a python library that leverages a DSL for writing assertions.
14986 Sure is heavily inspired by @code{RSpec Expectations} and @code{should.js}.")
14987 (license license:gpl3+)))
14988
14989 (define-public python2-sure
14990 (package-with-python2 python-sure))
14991
14992 (define-public python2-couleur
14993 ;; This package does not seem to support python3 at all, hence,
14994 ;; only the python2 variant definition is provided.
14995 (package
14996 (name "python2-couleur")
14997 (version "0.6.2")
14998 (source
14999 (origin
15000 (method url-fetch)
15001 (uri (pypi-uri "couleur" version))
15002 (sha256
15003 (base32
15004 "1qqaxyqz74wvid0cr119dhcwz0h0if5b5by44zl49pd5z65v58k1"))))
15005 (build-system python-build-system)
15006 (arguments
15007 `(#:python ,python-2))
15008 (home-page "https://github.com/gabrielfalcao/couleur")
15009 (synopsis
15010 "ANSI terminal tool for python, colored shell and other handy fancy features")
15011 (description
15012 "@code{Couleur} provides python programs a way to use the ANSI features in a unix
15013 terminal such as coloured output in the shell, overwriting output, indentation, etc.")
15014 ;; README.md says ASL2.0, but all source code headers are LGPL3+.
15015 ;; https://github.com/gabrielfalcao/couleur/issues/11
15016 (license license:lgpl3+)))
15017
15018 (define-public python-misaka
15019 (package
15020 (name "python-misaka")
15021 (version "2.1.0")
15022 (source
15023 (origin
15024 (method url-fetch)
15025 (uri (pypi-uri "misaka" version))
15026 (sha256
15027 (base32
15028 "1yqrq3a5rracirmvk52n28nn6ckdaz897gnigv89a9gmyn87sqw7"))))
15029 (build-system python-build-system)
15030 (arguments
15031 `(;; Line 37 of setup.py calls self.run_command('develop')
15032 ;; in the 'check' phase. This command seems to be trying
15033 ;; to write to
15034 ;; /gnu/store/...-python-<version>/lib/python<version>/site-packages/
15035 ;; for which it does not have the permission to write.
15036 #:tests? #f))
15037 (propagated-inputs
15038 `(("python-cffi" ,python-cffi)))
15039 (home-page "https://github.com/FSX/misaka")
15040 (synopsis "Python binding for Hoedown")
15041 (description
15042 "@code{Misaka} is a CFFI-based binding for @code{Hoedown}, a fast markdown processing
15043 library written in C. It features a fast HTML renderer and functionality to make custom
15044 renderers (e.g. man pages or LaTeX).")
15045 (license license:expat)))
15046
15047 (define-public python2-misaka
15048 (package-with-python2 python-misaka))
15049
15050 (define-public python2-steadymark
15051 ;; This is forced into being a python2 only variant
15052 ;; due to its dependence on couleur that has no support
15053 ;; for python3
15054 (package
15055 (name "python2-steadymark")
15056 (version "0.7.3")
15057 (source
15058 (origin
15059 (method url-fetch)
15060 (uri (pypi-uri "steadymark" version))
15061 (sha256
15062 (base32
15063 "1640i9g8dycql3cc8j0bky0jkzj0q39blfbp4lsgpkprkfgcdk8v"))))
15064 (build-system python-build-system)
15065 (native-inputs
15066 `(("python-couleur" ,python2-couleur)
15067 ("python-sure" ,python2-sure)
15068 ("python-misaka" ,python2-misaka)))
15069 (arguments
15070 `(#:python ,python-2
15071 #:phases
15072 (modify-phases %standard-phases
15073 (add-before 'build 'patch-setup-py
15074 (lambda _
15075 ;; Update requirements from dependency==version
15076 ;; to dependency>=version
15077 (substitute* "setup.py"
15078 (("==") ">="))
15079 #t)))))
15080 (home-page "https://github.com/gabrielfalcao/steadymark")
15081 (synopsis "Markdown-based test runner for python")
15082 (description
15083 "@code{Steadymark} allows documentation to be written in github-flavoured
15084 markdown. The documentation may contain snippets of code surrounded by python
15085 code blocks and @code{Steadymark} will find these snippets and run them, making
15086 sure that there are no old malfunctional examples in the documentation examples.")
15087 (license license:expat)))
15088
15089 (define-public python-nose-randomly
15090 (package
15091 (name "python-nose-randomly")
15092 (version "1.2.5")
15093 (source
15094 (origin
15095 (method url-fetch)
15096 (uri (pypi-uri "nose-randomly" version))
15097 (sha256
15098 (base32
15099 "1cw9dlr1zh3w4i438kin7z0rm8092ki52hayisyc43h9pcplq7rn"))))
15100 (build-system python-build-system)
15101 (native-inputs
15102 `(("python-nose" ,python-nose)
15103 ("python-numpy" ,python-numpy)))
15104 (home-page "https://github.com/adamchainz/nose-randomly")
15105 (synopsis
15106 "Nose plugin to randomly order tests and control random.seed")
15107 (description
15108 "This is a @code{Nose} plugin to randomly order tests which can be quite
15109 powerful in discovering hidden flaws in the tests themselves, while helping to
15110 reduce inter-test dependencies. It also helps in controlling @code{random.seed},
15111 by resetting it to a repeatable number for each test, enabling the tests to
15112 create data based on random numbers and yet remain repeatable.")
15113 (license license:bsd-3)))
15114
15115 (define-public python2-nose-randomly
15116 (package-with-python2 python-nose-randomly))
15117
15118 (define-public python-jsonpointer
15119 (package
15120 (name "python-jsonpointer")
15121 (version "1.10")
15122 (source
15123 (origin
15124 (method url-fetch)
15125 (uri (pypi-uri "jsonpointer" version))
15126 (sha256
15127 (base32
15128 "1cg0gvgqjysydv6p45v4jywg1jb3v48c7m3cbpi57zgf6nndr9cz"))))
15129 (build-system python-build-system)
15130 (home-page "https://github.com/stefankoegl/python-json-pointer")
15131 (synopsis "Identify specific nodes in a JSON document")
15132 (description "@code{jsonpointer} allows you to access specific nodes
15133 by path in a JSON document (see RFC 6901).")
15134 (license license:bsd-3)))
15135
15136 (define-public python2-jsonpointer
15137 (package-with-python2 python-jsonpointer))
15138
15139 (define-public python-rfc3987
15140 (package
15141 (name "python-rfc3987")
15142 (version "1.3.7")
15143 (source
15144 (origin
15145 (method url-fetch)
15146 (uri (pypi-uri "rfc3987" version))
15147 (sha256
15148 (base32
15149 "192pclzs2y0yaywqkrlvd0x73740q310kvqvm6jldhi619mq59wi"))))
15150 (build-system python-build-system)
15151 (home-page "http://pypi.python.org/pypi/rfc3987")
15152 (synopsis "Parsing and validation of URIs (RFC 3986) and IRIs (RFC 3987)")
15153 (description "@code{rfc3987} provides routines for parsing and
15154 validation of URIs (see RFC 3986) and IRIs (see RFC 3987).")
15155 (license license:gpl3+)))
15156
15157 (define-public python2-rfc3987
15158 (package-with-python2 python-rfc3987))
15159
15160 (define-public python-validate-email
15161 (package
15162 (name "python-validate-email")
15163 (version "1.3")
15164 (source
15165 (origin
15166 (method url-fetch)
15167 (uri (pypi-uri "validate_email" version))
15168 (sha256
15169 (base32
15170 "1bxffaf5yz2cph8ki55vdvdypbwkvn2xr1firlcy62vqbzf1jivq"))))
15171 (build-system python-build-system)
15172 (home-page "http://github.com/syrusakbary/validate_email")
15173 (synopsis "Verifies if an email address is valid and really exists")
15174 (description "@code{validate_email} can be used to verify if an email
15175 address is valid and really exists.")
15176 (license license:lgpl3+)))
15177
15178 (define-public python2-validate-email
15179 (package-with-python2 python-validate-email))
15180
15181 (define-public python-flex
15182 (package
15183 (name "python-flex")
15184 (version "6.10.0")
15185 (source
15186 (origin
15187 (method url-fetch)
15188 (uri (pypi-uri "flex" version))
15189 (sha256
15190 (base32
15191 "00pamnwla3khk8nyla7y28dq9jnh69swd7f4jfsl7sn1izs8n8zk"))))
15192 (build-system python-build-system)
15193 (propagated-inputs
15194 `(("python-click" ,python-click)
15195 ("python-iso8601" ,python-iso8601)
15196 ("python-jsonpointer" ,python-jsonpointer)
15197 ("python-pyyaml" ,python-pyyaml)
15198 ("python-requests" ,python-requests)
15199 ("python-rfc3987" ,python-rfc3987)
15200 ("python-six" ,python-six)
15201 ("python-validate-email" ,python-validate-email)))
15202 (home-page "https://github.com/pipermerriam/flex")
15203 (synopsis "Validates Swagger schemata")
15204 (description "@code{flex} can be used to validate Swagger schemata.")
15205 (license license:bsd-3)))
15206
15207 (define-public python2-flex
15208 (package-with-python2 python-flex))
15209
15210 (define-public python-marshmallow
15211 (package
15212 (name "python-marshmallow")
15213 (version "3.0.0b2")
15214 (source
15215 (origin
15216 (method url-fetch)
15217 (uri (pypi-uri "marshmallow" version))
15218 (sha256
15219 (base32
15220 "11bnpvfdbczr74177p295zbkdrax2cahvbj5bqhhlprgz2xxi5d9"))))
15221 (build-system python-build-system)
15222 (propagated-inputs
15223 `(("python-dateutil" ,python-dateutil)
15224 ("python-simplejson" ,python-simplejson)))
15225 (native-inputs
15226 `(("python-pytest-3.0" ,python-pytest-3.0)
15227 ("python-pytz" ,python-pytz)))
15228 (home-page "https://github.com/marshmallow-code/marshmallow")
15229 (synopsis "Convert complex datatypes to and from native
15230 Python datatypes.")
15231 (description "@code{marshmallow} provides a library for converting
15232 complex datatypes to and from native Python datatypes.")
15233 (license license:expat)))
15234
15235 (define-public python2-marshmallow
15236 (package-with-python2 python-marshmallow))
15237
15238 (define-public python-bottle
15239 (package
15240 (name "python-bottle")
15241 (version "0.12.13")
15242 (source
15243 (origin
15244 (method url-fetch)
15245 (uri (pypi-uri "bottle" version))
15246 (sha256
15247 (base32
15248 "0m9k2a7yxvggc4kw8fsvj381vgsvfcdshg5nzy6vwrxiw2p53drr"))))
15249 (build-system python-build-system)
15250 (home-page "http://bottlepy.org/")
15251 (synopsis "WSGI framework for small web-applications.")
15252 (description "@code{python-bottle} is a WSGI framework for small web-applications.")
15253 (license license:expat)))
15254
15255 (define-public python2-bottle
15256 (package-with-python2 python-bottle))
15257
15258 (define-public python-apispec
15259 (package
15260 (name "python-apispec")
15261 (version "0.22.0")
15262 (source
15263 (origin
15264 (method url-fetch)
15265 (uri (pypi-uri "apispec" version))
15266 (sha256
15267 (base32
15268 "0y3jxmgp2d24am3hxl40f5rw9abb0r8037sagax3dv64h4n1azwq"))))
15269 (build-system python-build-system)
15270 (propagated-inputs
15271 `(("python-pyyaml" ,python-pyyaml)))
15272 (native-inputs
15273 `(("python-pytest-3.0" ,python-pytest-3.0)
15274 ("python-flask" ,python-flask)
15275 ("python-marshmallow" ,python-marshmallow)
15276 ("python-tornado" ,python-tornado)
15277 ("python-bottle" ,python-bottle)
15278 ("python-mock" ,python-mock)))
15279 (home-page "https://github.com/marshmallow-code/apispec")
15280 (synopsis "Swagger 2.0 API specification generator")
15281 (description "@code{python-apispec} is a pluggable API specification
15282 generator. Currently supports the OpenAPI specification (f.k.a.
15283 Swagger 2.0).")
15284 (license license:expat)))
15285
15286 (define-public python2-apispec
15287 (package-with-python2 python-apispec))
15288
15289 (define-public python-flasgger
15290 (package
15291 (name "python-flasgger")
15292 (version "0.6.3")
15293 (source
15294 (origin
15295 (method url-fetch)
15296 (uri (string-append "https://github.com/rochacbruno/flasgger/archive/"
15297 version ".tar.gz"))
15298 (file-name (string-append name "-" version ".tar.gz"))
15299 (sha256
15300 (base32
15301 "1gqzlm0rb55fdpsy5ipkganlx9cnpi454fqyycr03jm22zql14ay"))))
15302 (build-system python-build-system)
15303 (arguments
15304 `(#:phases
15305 (modify-phases %standard-phases
15306 (replace 'check
15307 (lambda* (#:key inputs outputs #:allow-other-keys)
15308 (substitute* "Makefile"
15309 (("flake8 flasgger --ignore=F403")
15310 "flake8 flasgger --ignore=E731,F403"))
15311 (setenv "PYTHONPATH" (string-append (getcwd)
15312 ":"
15313 (getenv "PYTHONPATH")))
15314 (zero? (system* "py.test")))))))
15315 (propagated-inputs
15316 `(("python-flask" ,python-flask)
15317 ("python-pyyaml" ,python-pyyaml)
15318 ("python-jsonschema" ,python-jsonschema)
15319 ("python-mistune" ,python-mistune)
15320 ("python-six" ,python-six)))
15321 (native-inputs
15322 `(("python-decorator" ,python-decorator)
15323 ("python-flake8" ,python-flake8)
15324 ("python-flask-restful" ,python-flask-restful)
15325 ("python-flex" ,python-flex)
15326 ("python-pytest-3.0" ,python-pytest-3.0)
15327 ("python-pytest-cov" ,python-pytest-cov)
15328 ("python-marshmallow" ,python-marshmallow)
15329 ("python-apispec" ,python-apispec)))
15330 (home-page "https://github.com/rochacbruno/flasgger/")
15331 (synopsis "Extract Swagger specs from your Flask project")
15332 (description "@code{python-flasgger} allows extracting Swagger specs
15333 from your Flask project. It is a fork of Flask-Swagger.")
15334 (license license:expat)))
15335
15336 (define-public python2-flasgger
15337 (package-with-python2 python-flasgger))
15338
15339 (define-public python-swagger-spec-validator
15340 (package
15341 (name "python-swagger-spec-validator")
15342 (version "2.1.0")
15343 (source
15344 (origin
15345 (method url-fetch)
15346 (uri (pypi-uri "swagger-spec-validator" version))
15347 (sha256
15348 (base32
15349 "13hkpn2lycwr0468yqhjb3kwszqf7hjwlq61w7vdxq1caz31k4nw"))))
15350 (build-system python-build-system)
15351 (propagated-inputs
15352 `(("python-jsonschema" ,python-jsonschema)
15353 ("python-six" ,python-six)))
15354 (home-page
15355 "http://github.com/Yelp/swagger_spec_validator")
15356 (synopsis "Validation of Swagger specifications")
15357 (description "@code{swagger_spec_validator} provides a library for
15358 validating Swagger API specifications.")
15359 (license license:asl2.0)))
15360
15361 (define-public python2-swagger-spec-validator
15362 (package-with-python2 python-swagger-spec-validator))
15363
15364 (define-public python-apache-libcloud
15365 (package
15366 (name "python-apache-libcloud")
15367 (version "2.0.0")
15368 (source
15369 (origin
15370 (method url-fetch)
15371 (uri (pypi-uri "apache-libcloud" version))
15372 (sha256
15373 (base32
15374 "1a71z02ckcxld72k4qgmdnkjan52c4wczncs3p2mp5yafh7dsan7"))))
15375 (build-system python-build-system)
15376 (arguments
15377 `(#:phases
15378 (modify-phases %standard-phases
15379 (add-after 'unpack 'patch-ssh
15380 (lambda* (#:key inputs #:allow-other-keys)
15381 (substitute* "libcloud/compute/ssh.py"
15382 (("'ssh'") (string-append "'" (assoc-ref inputs "openssh")
15383 "/bin/ssh" "'")))
15384 #t))
15385 (add-after 'unpack 'patch-tests
15386 (lambda _
15387 (substitute* "./libcloud/test/test_file_fixtures.py"
15388 ;; See <https://issues.apache.org/jira/browse/LIBCLOUD-923>.
15389 (("def _ascii") "def _raw_data(self, method, url, body, headers):
15390 return (httplib.OK,
15391 \"1234abcd\",
15392 {\"test\": \"value\"},
15393 httplib.responses[httplib.OK])
15394 def _ascii"))
15395 (substitute* "libcloud/test/compute/test_ssh_client.py"
15396 (("class ShellOutSSHClientTests")
15397 "@unittest.skip(\"Guix container doesn't have ssh service\")
15398 class ShellOutSSHClientTests")
15399 ;; See <https://issues.apache.org/jira/browse/LIBCLOUD-924>.
15400 (("'.xf0.x90.x8d.x88'") "b'\\xF0\\x90\\x8D\\x88'")
15401 (("'.xF0', '.x90', '.x8D', '.x88'")
15402 "b'\\xF0', b'\\x90', b'\\x8D', b'\\x88'"))
15403 #t)))))
15404 (inputs
15405 `(("openssh" ,openssh)))
15406 (propagated-inputs
15407 `(("python-paramiko" ,python-paramiko)
15408 ("python-requests" ,python-requests)))
15409 (native-inputs
15410 `(("python-lockfile" ,python-lockfile)
15411 ("python-mock" ,python-mock)
15412 ("python-requests-mock" ,python-requests-mock)))
15413 (home-page "https://libcloud.apache.org/")
15414 (synopsis "Unified Cloud API")
15415 (description "@code{libcloud} is a Python library for interacting with
15416 many of the popular cloud service providers using a unified API.")
15417 (license license:asl2.0)))
15418
15419 (define-public python2-apache-libcloud
15420 (package-with-python2 python-apache-libcloud))
15421
15422 (define-public python-smmap2
15423 (package
15424 (name "python-smmap2")
15425 (version "2.0.3")
15426 (source
15427 (origin
15428 (method url-fetch)
15429 (uri (pypi-uri "smmap2" version))
15430 (sha256
15431 (base32
15432 "1hvn28p3zvxa98sbi9lrqvv2ps4q284j4jq9a619zw0m7yv0sly7"))))
15433 (build-system python-build-system)
15434 (native-inputs
15435 `(("python-nosexcover" ,python-nosexcover)))
15436 (home-page "https://github.com/Byron/smmap")
15437 (synopsis "Python sliding window memory map manager")
15438 (description "@code{smmap2} is a pure Python implementation of a sliding
15439 window memory map manager.")
15440 (license license:bsd-3)))
15441
15442 (define-public python2-smmap2
15443 (package-with-python2 python-smmap2))
15444
15445 (define-public python-regex
15446 (package
15447 (name "python-regex")
15448 (version "2017.06.07")
15449 (source (origin
15450 (method url-fetch)
15451 (uri (pypi-uri "regex" version))
15452 (sha256
15453 (base32
15454 "06r6b7yigikbj3a72whl85r2b64pj1r0ypmw9yalmkm0wnxq8mz4"))))
15455 (build-system python-build-system)
15456 (home-page "https://bitbucket.org/mrabarnett/mrab-regex")
15457 (synopsis "Alternative regular expression module")
15458 (description "This regular expression implementation is backwards-
15459 compatible with the standard @code{re} module, but offers additional
15460 functionality like full case-folding for case-insensitive matches in Unicode.")
15461 (license license:psfl)))
15462
15463 (define-public python2-regex
15464 (package-with-python2 python-regex))
15465
15466 (define-public python2-pyopengl
15467 (package
15468 (name "python2-pyopengl")
15469 (version "3.1.0")
15470 (source
15471 (origin
15472 (method url-fetch)
15473 (uri (pypi-uri "PyOpenGL" version))
15474 (sha256
15475 (base32
15476 "1byxjj6a8rwzhxhjqlc588zdad2qwxdd7vlam2653ylll31waiwv"))))
15477 (arguments
15478 `(#:python ,python-2))
15479 (build-system python-build-system)
15480 (home-page "http://pyopengl.sourceforge.net")
15481 (synopsis "Standard OpenGL bindings for Python")
15482 (description
15483 "PyOpenGL is the most common cross platform Python binding to OpenGL and
15484 related APIs. The binding is created using the standard @code{ctypes}
15485 library.")
15486 (license license:bsd-3)))
15487
15488 (define-public python-rencode
15489 (package
15490 (name "python-rencode")
15491 (version "1.0.3")
15492 (source
15493 (origin
15494 (method url-fetch)
15495 (uri (pypi-uri "rencode" version))
15496 (sha256
15497 (base32
15498 "08if5yax1xn5yfp8p3765ccjmfcv9di7i4m5jckgnwvdsgznwkbj"))))
15499 (build-system python-build-system)
15500 (native-inputs `(("pkg-config" ,pkg-config)
15501 ("python-cython", python-cython)))
15502 (home-page "https://github.com/aresch/rencode")
15503 (synopsis "Serialization of heterogeneous data structures")
15504 (description
15505 "The @code{rencode} module is a data structure serialization library,
15506 similar to @code{bencode} from the BitTorrent project. For complex,
15507 heterogeneous data structures with many small elements, r-encoding stake up
15508 significantly less space than b-encodings. This version of rencode is a
15509 complete rewrite in Cython to attempt to increase the performance over the
15510 pure Python module.")
15511 (license license:bsd-3)))
15512
15513 (define-public python2-rencode
15514 (package-with-python2 python-rencode))