aboutsummaryrefslogtreecommitdiff
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2017, 2018, 2020–2022 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2017 Gábor Boskovits <boskovits@gmail.com>
;;; Copyright © 2017, 2018, 2021, 2023 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2018 Leo Famulari <leo@famulari.name>
;;; Copyright © 2019-2023 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2020 Raghav Gururajan <raghavgururajan@disroot.org>
;;; Copyright © 2020 Morgan Smith <Morgan.J.Smith@outlook.com>
;;; Copyright © 2021 raid5atemyhomework <raid5atemyhomework@protonmail.com>
;;; Copyright © 2021 Stefan Reichör <stefan@xsteve.at>
;;; Copyright © 2021 Noisytoot <noisytoot@disroot.org>
;;; Copyright © 2021, 2023 Kaelyn Takata <kaelyn.alexi@protonmail.com>
;;; Copyright © 2022 Brian Cully <bjc@spork.org>
;;; Copyright © 2023 Aaron Covrig <aaron.covrig.us@ieee.org>
;;; Copyright © 2024 Ahmad Draidi <a.r.draidi@redscript.org>
;;; Copyright © 2024 Zheng Junjie <873216071@qq.com>
;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages file-systems)
  #:use-module (guix gexp)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix git-download)
  #:use-module (guix build-system cmake)
  #:use-module (guix build-system copy)
  #:use-module (guix build-system gnu)
  #:use-module (guix build-system go)
  #:use-module (guix build-system linux-module)
  #:use-module (guix build-system python)
  #:use-module (guix build-system trivial)
  #:use-module (guix utils)
  #:use-module (gnu packages)
  #:use-module (gnu packages acl)
  #:use-module (gnu packages admin)
  #:use-module (gnu packages algebra)
  #:use-module (gnu packages attr)
  #:use-module (gnu packages autotools)
  #:use-module (gnu packages backup)
  #:use-module (gnu packages base)
  #:use-module (gnu packages bash)
  #:use-module (gnu packages bison)
  #:use-module (gnu packages boost)
  #:use-module (gnu packages check)
  #:use-module (gnu packages compression)
  #:use-module (gnu packages cpp)
  #:use-module (gnu packages crypto)
  #:use-module (gnu packages curl)
  #:use-module (gnu packages cyrus-sasl)
  #:use-module (gnu packages datastructures)
  #:use-module (gnu packages digest)
  #:use-module (gnu packages documentation)
  #:use-module (gnu packages docbook)
  #:use-module (gnu packages elf)
  #:use-module (gnu packages flex)
  #:use-module (gnu packages freedesktop)
  #:use-module (gnu packages gawk)
  #:use-module (gnu packages gettext)
  #:use-module (gnu packages glib)
  #:use-module (gnu packages gnome)
  #:use-module (gnu packages gnupg)
  #:use-module (gnu packages golang)
  #:use-module (gnu packages golang-build)
  #:use-module (gnu packages golang-check)
  #:use-module (gnu packages golang-crypto)
  #:use-module (gnu packages golang-xyz)
  #:use-module (gnu packages guile)
  #:use-module (gnu packages jemalloc)
  #:use-module (gnu packages kerberos)
  #:use-module (gnu packages libevent)
  #:use-module (gnu packages libffi)
  #:use-module (gnu packages libunwind)
  #:use-module (gnu packages linux)
  #:use-module (gnu packages maths)
  #:use-module (gnu packages man)
  #:use-module (gnu packages m4)
  #:use-module (gnu packages ncurses)
  #:use-module (gnu packages nfs)
  #:use-module (gnu packages onc-rpc)
  #:use-module (gnu packages openldap)
  #:use-module (gnu packages password-utils)
  #:use-module (gnu packages pcre)
  #:use-module (gnu packages perl)
  #:use-module (gnu packages photo)
  #:use-module (gnu packages pkg-config)
  #:use-module (gnu packages popt)
  #:use-module (gnu packages pretty-print)
  #:use-module (gnu packages python)
  #:use-module (gnu packages python-crypto)
  #:use-module (gnu packages python-web)
  #:use-module (gnu packages python-xyz)
  #:use-module (gnu packages qt)
  #:use-module (gnu packages readline)
  #:use-module (gnu packages rsync)
  #:use-module (gnu packages sssd)
  #:use-module (gnu packages sqlite)
  #:use-module (gnu packages textutils)
  #:use-module (gnu packages time)
  #:use-module (gnu packages tls)
  #:use-module (gnu packages valgrind)
  #:use-module (gnu packages version-control)
  #:use-module (gnu packages web)
  #:use-module (gnu packages xml))

(define-public autofs
  (package
    (name "autofs")
    (version "5.1.8")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "mirror://kernel.org/linux/daemons/autofs/"
                           "v" (version-major version) "/"
                           "autofs-" version ".tar.xz"))
       (sha256
        (base32 "1zf0fgf6kr9amxq5amlgsp1v13sizwl3wvx2xl7b4r2nhmci0gdk"))))
    (build-system gnu-build-system)
    (arguments
     `(#:configure-flags
       (list "--enable-ignore-busy"     ; during shutdown
             "--enable-sloppy-mount"    ; support mount(8) -s
             "--with-libtirpc"
             (string-append "--with-openldap="
                            (assoc-ref %build-inputs "openldap"))
             (string-append "--with-sasl="
                            (assoc-ref %build-inputs "cyrus-sasl"))
             "HAVE_SSS_AUTOFS=1"        ; required to make sssldir click
             (string-append "sssldir="
                            (assoc-ref %build-inputs "sssd")
                            "/lib/sssd/modules"))
       #:tests? #f                      ; no test suite
       #:phases
       (modify-phases %standard-phases
         (add-before 'configure 'fix-hard-coded-search-path
           (lambda _
             (substitute* "configure"
               (("^searchpath=\".*\"")
                "searchpath=\"$PATH\""))))
         (add-before 'configure 'fix-rpath
           (lambda* (#:key outputs #:allow-other-keys)
             (let ((out (assoc-ref outputs "out")))
               (substitute* "Makefile.rules"
                 (("^AUTOFS_LIB_LINK.*=" match)
                  (string-append match " -Wl,-rpath=" out "/lib"))))))
         (add-before 'install 'omit-obsolete-lookup_nis.so-link
           ;; Building lookup_yp.so depends on $(YPCLNT) but this doesn't,
           ;; leading to a make error.  Since it's broken, comment it out.
           (lambda _
             (substitute* "modules/Makefile"
               (("ln -fs lookup_yp.so" match)
                (string-append "# " match))))))))
    (native-inputs
     (list bison flex pkg-config rpcsvc-proto))
    (inputs
     (list cyrus-sasl
           e2fsprogs ; for e[234]fsck
           libtirpc
           libxml2 ; needed for LDAP, SASL
           mit-krb5 ; needed for LDAP, SASL
           nfs-utils ; for mount.nfs
           openldap
           openssl ; needed for SASL
           sssd
           util-linux))     ; for mount, umount
    ;; XXX A directory index is the closest thing this has to a home page.
    (home-page "https://www.kernel.org/pub/linux/daemons/autofs/")
    (synopsis "Kernel-based automounter for Linux")
    (description
     "Autofs is a kernel-based automounter for use with the Linux autofs4
module.  It automatically mounts selected file systems when they are used and
unmounts them after a set period of inactivity.  This provides
centrally-managed, consistent file names for users and applications, even in a
large and/or frequently changing (network) environment.")
    ;; fedfs/ is GPL-2-only but not built.
    (license (list license:bsd-3        ; modules/cyrus-sasl.c
                   license:gpl2+))))    ; the rest

(define-public bindfs
  (package
    (name "bindfs")
    (version "1.17.4")
    (source (origin
              (method url-fetch)
              (uri (string-append "https://bindfs.org/downloads/bindfs-"
                                  version ".tar.gz"))
              (sha256
               (base32
                "1k1xkyjk8ms11djbhlmykkzfbcids6ls5vpq7rhdnazcladszm3g"))))
    (build-system gnu-build-system)
    (arguments
     ;; XXX: The tests have no hope of passing until there is a "nogroup"
     ;; entry (or at least some group to which the guix builder does
     ;; not belong) in the /etc/group file of the build environment.
     ;; Currently we do not have such a group.  Disable tests for now.
     '(#:tests? #f))
    (native-inputs
       ;; Native inputs to run the tests
       ;; ("ruby" ,ruby)
       ;; ("valgrind" ,valgrind)
       ;; ("which" ,which)
     (list pkg-config))
    (inputs
     (list fuse-2))
    (home-page "https://bindfs.org")
    (synopsis "Bind mount a directory and alter permission bits")
    (description
     "@command{bindfs} is a FUSE file system for mounting a directory to
another location, similar to @command{mount --bind}.  It can be used for:
@itemize
@item Making a directory read-only.
@item Making all executables non-executable.
@item Sharing a directory with a list of users (or groups).
@item Modifying permission bits using rules with chmod-like syntax.
@item Changing the permissions with which files are created.
@end itemize")
    (license license:gpl2+)))

(define-public cachefilesd-inotify
  (package
    (name "cachefilesd-inotify")
    (version "0.11.0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://gitlab.com/tomalok/cachefilesd-inotify")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0qkrpz69ql6fb3fwh0l35hhf9znnqyxhgv5fzd1gl2a2kz13rq5a"))))
    (build-system gnu-build-system)
    (arguments
     `(#:make-flags
       (list (string-append "CC=" ,(cc-for-target))
             ;; The Makefile doesn't support prefix= or similar.
             (string-append "DESTDIR=" (assoc-ref %outputs "out"))
             "MANDIR=/share/man")
       #:tests? #f                      ; no test suite
       #:phases
       (modify-phases %standard-phases
         (delete 'configure))))         ; no configure script
    (home-page "https://gitlab.com/tomalok/cachefilesd-inotify")
    (synopsis
     "CacheFiles file system cache management daemon (using @code{inotify})")
    (description
     "This package provides the user space component of CacheFiles, a caching
back end that uses a directory on a locally mounted file system (such as ext4)
as a cache to speed up (by reducing) access to a slower file system and make it
appear more reliable.

The cached file system is often a network file system such as NFS or CIFS, but
can also be a local file system like ISO 9660 on a slow optical drive.

CacheFiles itself is part of the kernel but relies on this user space
@command{cachefilesd} daemon to perform maintenance tasks like culling and
reaping stale nodes.  Only one such daemon can be running at a time, and
communicates with the kernel through the @file{/dev/cachefiles} character
device.

This version modifies David Howells original cachefilesd---which appears
unmaintained---to use the @code{inotify} API instead of the deprecated
@code{dnotify} to monitor file changes.")
    (license license:gpl2+)))

(define-public avfs
  (package
    (name "avfs")
    (version "1.1.5")
    (source (origin
              (method url-fetch)
              (uri (string-append "mirror://sourceforge/avf/avfs/" version
                                  "/avfs-" version ".tar.bz2"))
              (sha256
               (base32
                "1kvjaaj2dlps98alpc8rhnzhk4vriw46f3y7b2h0jq2d21j3p7xd"))))
    (build-system gnu-build-system)
    (arguments
     '(#:configure-flags '("--enable-library" "--enable-fuse")))
    (native-inputs (list pkg-config))
    (inputs (list xz fuse-2))
    (synopsis "Virtual file system that allows browsing of compressed files")
    (description
     "AVFS is a FUSE-based filesystem that allows browsing of compressed
files.  It provides the @command{mountavfs} command that starts a small
@command{avfsd} daemon.  When a specially formatted path under @file{~/.avfs}
is accessed, the daemon provides listings and content access on the fly.  The
canonical form of virtual file name is:

@example
[basepath]#handler[options][:parameters][/internalpath]
@end example

Example file names:
@itemize
@item @file{~/.avfs/home/user/archive.tar.gz#ugz#utar/path/file}
@item @file{~/.avfs/#http:localhost|some|path}
@end itemize

@code{emacs-dired-hacks} has @code{dired-avfs} module which enables seamless
integration with @code{avfs}.")
    (home-page "https://avf.sourceforge.net")
    (license license:gpl2+)))

(define-public davfs2
  (package
    (name "davfs2")
    (version "1.6.1")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "https://download.savannah.nongnu.org/releases/"
                           "davfs2/davfs2-" version ".tar.gz"))
       (sha256
        (base32 "1h65j2py59b97wbzzjhp4wbkk6351v3hrjscjcfab0p5xi4bjgnf"))))
    (build-system gnu-build-system)
    (arguments
     `(#:configure-flags
       (list "--sysconfdir=/etc"        ; so man pages & binaries contain /etc
             (string-append "--docdir=" (assoc-ref %outputs "out")
                            "/share/doc/" ,name "-" ,version)
             (string-append "ssbindir=" (assoc-ref %outputs "out") "/sbin")
             ;; The default ‘davfs2’ user and group don't exist on most systems.
             "dav_user=nobody"
             "dav_group=nogroup")
       #:phases
       (modify-phases %standard-phases
         (add-after 'unpack 'omit-redundancy
           ;; Don't install redundant copies of /etc examples into /share.
           (lambda _
             (substitute* "etc/Makefile.in"
               (("(dist_pkgdata_DATA =.*) davfs2.conf secrets(.*)"
                 _ prefix suffix)
                (string-append prefix suffix)))))
         (add-after 'unpack 'patch-file-names
           (lambda _
             ;; Don't auto-load the FUSE kernel module.  That's up to root.
             ;; XXX If/when we restore the previous behaviour, make sure not
             ;; to introduce a security hole when mount.davfs is setuid.
             (substitute* "src/kernel_interface.c"
               (("/sbin/modprobe") "/modprobe/disabled"))))
         (replace 'install
           (lambda* (#:key make-flags outputs #:allow-other-keys)
             (let ((out (assoc-ref outputs "out")))
               (apply invoke "make" "install"
                      (string-append "pkgsysconfdir=" out "/etc")
                      make-flags)))))))
    (inputs
     (list neon
           ;; Neon requires but doesn't propagate zlib, nor would we want that.
           ;; XZ as well, but that's already present in the build environment.
           zlib))
    (home-page "https://savannah.nongnu.org/projects/davfs2")
    (synopsis "Mount remote WebDAV resources in the local file system")
    (description
     "The @acronym{WebDAV, Web Distributed Authoring and Versioning} extension
to the HTTP protocol defines a standard way to author resources on a remote Web
server.  Davfs2 exposes such resources as a typical file system which can be
used by standard applications with no built-in support for WebDAV, such as the
GNU coreutils (@command{cp}, @command{mv}, etc.) or a graphical word processor.

Davfs2 works with most WebDAV servers with no or little configuration.  It
supports TLS (HTTPS), HTTP proxies, HTTP basic and digest authentication, and
client certificates.  It performs extensive caching to avoid unnecessary network
traffic, stay responsive even over slow or unreliable connections, and prevent
data loss.  It aims to make use by unprivileged users as easy and secure as
possible.

However, davfs2 is not a full-featured WebDAV client.  The file system interface
and the WebDAV protocol are quite different.  Translating between the two is not
always possible.")
    (license (list license:bsd-2        ; src/fuse_kernel.h
                   license:gpl3+))))    ; everything else

(define-public exfat-utils
  (package
    (name "exfat-utils")
    (version "1.4.0")
    (source
     (origin
       (method url-fetch)
       (uri (string-append
             "https://github.com/relan/exfat/releases/download/v"
             version "/exfat-utils-" version ".tar.gz"))
       (sha256
        (base32 "0sdzflmwcxjjliq1yqhidy46kbkvj16kxrbrgsj0ci0hjgx7a594"))))
    (build-system gnu-build-system)
    (home-page "https://github.com/relan/exfat")
    (synopsis "Utilities to manipulate exFAT file systems")
    (description
     "This package provides an implementation of the exFAT file system,
including command-line tools to validate exFAT file systems and to create new
ones.")
    (license license:gpl2+)))

(define-public fsarchiver
  (package
    (name "fsarchiver")
    (version "0.8.7")
    (source
     (origin
       (method git-fetch)
       (uri
        (git-reference
         (url "https://github.com/fdupoux/fsarchiver")
         (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1vy8ay0fn32i298bx9scqghi7xm9z2101zxk5xshbrkl00b2m4nm"))))
    (build-system gnu-build-system)
    (native-inputs
     (list autoconf automake pkg-config))
    (inputs
     (list bzip2
           e2fsprogs
           libgcrypt
           lz4
           lzo
           `(,util-linux "lib")
           xz
           zlib
           `(,zstd "lib")))
    (synopsis "File system back-up, deployment, and migration tool")
    (description
     "FSArchiver saves the contents of a file system to a compressed archive
file, and restores it to a different file system and/or partition.  This
partition can be of a different size than the original and FSArchiver will
create a new file system if none exists.

All standard file attributes supported by the kernel are preserved, including
file permissions, timestamps, symbolic and hard links, and extended attributes.

Each file in the archive is protected by a checksum.  If part of the archive
is corrupted you'll lose the affected file(s) but not the whole back-up.")
    (home-page "https://www.fsarchiver.org/")
    (license license:gpl2)))

(define-public fstransform
  (package
    (name "fstransform")
    (version "0.9.4")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/cosmos72/fstransform")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0vhypb6pbghja95av62ds4mhldbg0h8g4yg94k9r7lsxm7bgpfr3"))))
    (build-system gnu-build-system)
    (arguments
     (list #:phases
           #~(modify-phases %standard-phases
               (add-after 'install 'install-README
                 ;; There are no man pages.  Install a poor substitute.
                 (lambda* (#:key outputs #:allow-other-keys)
                   (let* ((out (assoc-ref outputs "out"))
                          (doc (string-append out "/share/doc/" #$name)))
                     (install-file "README" doc)))))))
    (inputs (list e2fsprogs))
    (home-page "https://github.com/cosmos72/fstransform")
    (synopsis "Convert file system types in place without copying all data")
    (description
     "This package provides several command-line tools to transform a supported
file system, such as XFS, into one of a different supported type, such as ext4.
All existing file contents, names, and directories are preserved.

The conversion happens @dfn{in place}, without the need to create a complete
copy of the original data.  This lets you transform almost full file systems on
systems where adding (sufficient) additional storage space is not an option.

Do @emph{not} use this package when you could simply create an empty file system
from scratch and restore from a back-up.  Transformation is limited, slow, and
significantly increases the risk of irreversible data loss!")
    ;; Please follow <https://github.com/cosmos72/fstransform/issues/46>.
    (license (list license:gpl2         ; fsattr/src/e4attr.* → sbin/fsattr
                   license:gpl3+))))    ; the rest

(define-public gocryptfs
  (package
    (name "gocryptfs")
    (version "2.4.0")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/rfjakob/gocryptfs")
                    (commit (string-append "v" version))))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "08pdfx6bs1dc2k7xv54x7i1qbych4a7dlf31qwcm9wlz7lr5lawm"))))
    (build-system go-build-system)
    (arguments
     (list
      #:import-path "github.com/rfjakob/gocryptfs"
      #:build-flags
      #~(list
         "-ldflags" (string-append
                     "-X main.GitVersion=" #$version
                     " -X main.GitVersionFuse=" #$(package-version
                                                   go-github-com-hanwen-go-fuse-v2)
                     " -X main.BuildDate=" "[reproducible]"))
      #:phases
      #~(modify-phases %standard-phases
          ;; after 'check phase, should maybe unmount leftover mounts as in
          ;; https://github.com/rfjakob/gocryptfs/blob/a55b3cc15a6d9bce116a90f33df4bc99d9dd6a10/test.bash#L28
          (replace 'build
            (lambda arguments
              (for-each
               (lambda (directory)
                 (apply (assoc-ref %standard-phases 'build)
                        (append arguments (list #:import-path directory))))
               (list
                "github.com/rfjakob/gocryptfs"
                "github.com/rfjakob/gocryptfs/gocryptfs-xray"
                "github.com/rfjakob/gocryptfs/contrib/statfs"
                "github.com/rfjakob/gocryptfs/contrib/findholes"
                "github.com/rfjakob/gocryptfs/contrib/atomicrename")))))))
    (native-inputs (list
                    go-github-com-hanwen-go-fuse-v2
                    go-github-com-aperturerobotics-jacobsa-crypto
                    go-github-com-jacobsa-oglematchers
                    go-github-com-jacobsa-oglemock
                    go-github-com-jacobsa-ogletest
                    go-github-com-jacobsa-reqtrace
                    go-github-com-pkg-xattr
                    go-github-com-rfjakob-eme
                    go-github-com-sabhiram-go-gitignore
                    go-github-com-spf13-pflag
                    go-golang-org-x-crypto
                    go-golang-org-x-net
                    go-golang-org-x-sys
                    go-golang-org-x-term
                    openssl
                    pkg-config))
    (home-page "https://github.com/rfjakob/gocryptfs")
    (synopsis "Encrypted overlay filesystem")
    (description
     "Gocryptfs is an encrypted overlay filesystem written in Go.  It
features a file-based encryption that is implemented as a mountable
FUSE filesystem.

Gocryptfs was inspired by EncFS and strives to fix its security issues
while providing good performance.  Gocryptfs is as fast as EncFS in the
default mode and significantly faster than paranoia mode in EncFS,
which provides a security level comparable to Gocryptfs.

On CPUs without AES-NI, gocryptfs uses OpenSSL through a thin wrapper
called stupidgcm.  This provides a 4x speedup compared to Go's builtin
AES-GCM implementation.")
    (license license:expat)))

(define-public gphotofs
  (package
    (name "gphotofs")
    (version "0.5.0")
    (source
     (origin
       (method url-fetch)
       (uri
        (string-append "mirror://sourceforge/gphoto/gphotofs/" version
                       "/gphotofs-0.5.tar.gz"))
       (sha256
        (base32
         "04slwhr6ap9xcc27wphk22ad8yn79ngyy5z10lxams3k5liahvc2"))))
    (build-system gnu-build-system)
    (native-inputs
     (list pkg-config))
    (inputs
     (list fuse-2 glib libgphoto2))
    (synopsis "Virtual file system for libgphoto2 using FUSE")
    (description "GPhotoFS is a FUSE file system module to mount your camera as
a file system on Linux.  This allow using your camera with any tool able to read
from a mounted file system.")
    (home-page "http://www.gphoto.org/proj/gphotofs/")
    (license license:gpl2+)))

(define-public bcachefs-tools
  (package
    (name "bcachefs-tools")
    (version "1.4.1")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://evilpiepirate.org/git/bcachefs-tools.git")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0axwbckqrw1v3v50nzhpkvpyjbjwy3rq5bv23db84x3xia497apq"))))
    (build-system gnu-build-system)
    (arguments
     (list #:make-flags
           #~(list (string-append "VERSION=" #$version) ; ‘v…-nogit’ otherwise
                   (string-append "PREFIX=" #$output)
                   "INITRAMFS_DIR=$(PREFIX)/share/initramfs-tools"
                   "PKGCONFIG_UDEVRULESDIR=$(PREFIX)/lib/udev/rules.d"
                   (string-append "CC=" #$(cc-for-target))
                   (string-append "PKG_CONFIG=" #$(pkg-config-for-target))
                   ;; ‘This will be less of an option in the future, as more
                   ;; code gets rewritten in Rust.’
                   "NO_RUST=better")
           #:phases
           #~(modify-phases %standard-phases
               (delete 'configure)    ; no configure script
               (replace 'check
                 ;; The test suite is moribund upstream (‘never been useful’),
                 ;; but let's keep running it as a sanity check until then.
                 (lambda* (#:key tests? make-flags #:allow-other-keys)
                   (when tests?
                     ;; We must manually build the test_helper first.
                     (apply invoke "make" "tests" make-flags)
                     (invoke (string-append
                              #$(this-package-native-input "python-pytest")
                              "/bin/pytest") "-k"
                              ;; These fail (‘invalid argument’) on kernels
                              ;; with a previous bcachefs version.
                              (string-append "not test_format and "
                                             "not test_fsck and "
                                             "not test_list and "
                                             "not test_list_inodes and "
                                             "not test_list_dirent")))))
               (add-after 'install 'promote-mount.bcachefs.sh
                 ;; The (optional) ‘mount.bcachefs’ requires rust:cargo.
                 ;; This shell alternative does the job well enough for now.
                 (lambda* (#:key inputs #:allow-other-keys)
                   (define (whence file)
                     (dirname (search-input-file inputs file)))
                   (let ((mount (string-append #$output
                                               "/sbin/mount.bcachefs")))
                     (delete-file mount) ; symlink to ‘bcachefs’
                     (copy-file "mount.bcachefs.sh" mount)
                     ;; WRAP-SCRIPT causes bogus ‘Insufficient arguments’ errors.
                     (wrap-program mount
                       `("PATH" ":" prefix
                         ,(list (getcwd)
                                (whence "bin/tail")
                                (whence "bin/awk")
                                (whence "bin/mount"))))))))))
    (native-inputs
     (cons* pkg-config
            ;; For generating documentation with rst2man.
            python
            python-docutils
            ;; For tests.
            python-pytest
            (if (member (%current-system) (package-supported-systems valgrind))
                (list valgrind)
                '())))
    (inputs
     (list bash-minimal
           eudev
           keyutils
           libaio
           libscrypt
           libsodium
           liburcu
           `(,util-linux "lib")
           lz4
           zlib
           `(,zstd "lib")

           ;; Only for mount.bcachefs.sh.
           bash-minimal
           coreutils-minimal
           gawk
           util-linux))
    (home-page "https://bcachefs.org/")
    (synopsis "Tools to create and manage bcachefs file systems")
    (description
     "The bcachefs-tools are command-line utilities for creating, checking,
and otherwise managing bcachefs file systems.

Bcachefs is a @acronym{CoW, copy-on-write} file system supporting native
encryption, compression, snapshots, and (meta)data checksums.  It can use
multiple block devices for replication and/or performance, similar to RAID.

In addition, bcachefs provides all the functionality of bcache, a block-layer
caching system, and lets you assign different roles to each device based on its
performance and other characteristics.")
    (license license:gpl2+)))

(define-public bcachefs-tools/static
  (package
    (inherit bcachefs-tools)
    (name "bcachefs-tools-static")
    (arguments
     (substitute-keyword-arguments (package-arguments bcachefs-tools)
       ((#:make-flags make-flags)
        #~(append #$make-flags
                  (list "LDFLAGS=-static")))))
    (inputs (modify-inputs (package-inputs bcachefs-tools)
              (prepend `(,eudev "static")
                       `(,keyutils "static")
                       `(,libscrypt "static")
                       `(,lz4 "static")
                       `(,util-linux "static")
                       `(,zlib "static")
                       `(,zstd "static"))))))

(define-public bcachefs/static
  (package
    (name "bcachefs-static")
    (version (package-version bcachefs-tools))
    (source #f)
    (build-system trivial-build-system)
    (arguments
     (list #:modules '((guix build utils))
           #:builder
           #~(begin
               (use-modules (guix build utils)
                            (ice-9 ftw)
                            (srfi srfi-26))
               (mkdir-p #$output)
               (with-directory-excursion #$output
                 (install-file (string-append #$(this-package-input
                                                 "bcachefs-tools-static")
                                              "/sbin/bcachefs")
                               "sbin")
                 (remove-store-references "sbin/bcachefs")
                 (invoke "sbin/bcachefs" "version"))))) ; test suite
    (inputs
     (list bcachefs-tools/static))
    (home-page (package-home-page bcachefs-tools))
    (synopsis "Statically-linked bcachefs command from bcachefs-tools")
    (description "This package provides the statically-linked @command{bcachefs}
from the bcachefs-tools package.  It is meant to be used in initrds.")
    (license (package-license bcachefs-tools))))

(define-public exfatprogs
  (package
    (name "exfatprogs")
    (version "1.2.1")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/exfatprogs/exfatprogs")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1g5aqhjz0l58kvmis1j5b5qkn58hjs582f36ygiqkgxvp4njkny4"))))
    (build-system gnu-build-system)
    (arguments
     `(#:configure-flags
       (list "--disable-static")))
    (native-inputs
     (list autoconf automake libtool pkg-config))
    (home-page "https://github.com/exfatprogs/exfatprogs")
    (synopsis "Tools to create, check, and repair exFAT file systems")
    (description
     "These are command-line user space tools for the @acronym{exFAT,
Extensible File Allocation Table} file systems.  Included are
@command{mkfs.exfat} to create (format) new exFAT file systems, and
@command{fsck.exfat} to check their consistency and repair them.")
    (license license:gpl2+)))

(define-public httpfs2
  (package
    (name "httpfs2")
    (version "0.1.5")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "mirror://sourceforge/httpfs/httpfs2/"
                           "httpfs2-" version ".tar.gz"))
       (sha256
        (base32
         "1h8ggvhw30n2r6w11n1s458ypggdqx6ldwd61ma4yd7binrlpjq1"))))
    (build-system gnu-build-system)
    (native-inputs
     (list asciidoc docbook-xml libxml2 libxslt pkg-config))
    (inputs
     (list fuse-2 gnutls))
    (arguments
     (list #:phases
           #~(modify-phases %standard-phases
               (delete 'configure)      ; no configure script
               (replace 'install
                 ;; There's no ‘install’ target. Install all variants manually.
                 (lambda _
                   (let* ((bin (string-append #$output "/bin"))
                          (man1 (string-append #$output "/share/man/man1")))
                     (mkdir-p bin)
                     (mkdir-p man1)
                     (for-each
                      (lambda (variant)
                        (let ((man1-page (string-append variant ".1")))
                          (install-file variant bin)
                          (install-file man1-page man1)))
                      (list "httpfs2"
                            "httpfs2-mt"
                            "httpfs2-ssl"
                            "httpfs2-ssl-mt"))))))
           #:make-flags
           #~(list (string-append "CC=" #$(cc-for-target)))
           #:parallel-build? #f         ; can result in missing man pages
           #:tests? #f))                ; no tests
    (home-page "https://sourceforge.net/projects/httpfs/")
    (synopsis "Mount remote files over HTTP")
    (description "httpfs2 is a @code{fuse} file system for mounting any
@dfn{HyperText} (HTTP or HTTPS) URL.  It uses HTTP/1.1 byte ranges to request
arbitrary bytes from the web server, without needing to download the entire
file.  This is particularly useful with large archives such as ZIP files and
ISO images when you only need to inspect their contents or extract specific
files.  Since the HTTP protocol itself has no notion of directories, only a
single file can be mounted.")
    (license license:gpl2+)))

(define-public jfsutils
  (package
    (name "jfsutils")
    (version "1.1.15")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "http://jfs.sourceforge.net/project/pub/jfsutils-"
                           version ".tar.gz"))
       (sha256
        (base32 "0kbsy2sk1jv4m82rxyl25gwrlkzvl3hzdga9gshkxkhm83v1aji4"))
       (patches (search-patches "jfsutils-add-sysmacros.patch"
                                "jfsutils-gcc-compat.patch"
                                "jfsutils-include-systypes.patch"))))
    (build-system gnu-build-system)
    (inputs
     (list `(,util-linux "lib")))
    (home-page "https://jfs.sourceforge.net/home.html")
    (synopsis "Utilities for managing JFS file systems")
    (description
     "The JFSutils are a collection of utilities for managing the @acronym{JFS,
Journaled File System}, a 64-bit journaling file system created by IBM and later
ported to the kernel Linux.  The following commands are available:
@enumerate
@item @command{fsck.jfs}: check and repair a JFS file system or replay its
transaction log.
@item @command{logdump}: dump the JFS journal log.
@item @command{logredo}: replay the JFS journal log.
@item @command{mkfs.jfs}: create a new JFS file system.
@item @command{xchklog}: save a JFS fsck log to a file.
@item @command{xchkdmp}: dump the contents of such a log file.
@item @command{xpeek}: a JFS file system editor with a shell-like interface.
@end enumerate\n")
    (license license:gpl3+)))          ; no explicit version given

(define-public jfsutils/static
  (static-package
   (package
     (inherit jfsutils)
     (name "jfsutils-static")
     (inputs
      `(("util-linux:static" ,util-linux "static")
        ,@(package-inputs jfsutils))))))

(define-public jfs_fsck/static
  (package
    (name "jfs_fsck-static")
    (version (package-version jfsutils))
    (source #f)
    (build-system trivial-build-system)
    (arguments
     `(#:modules ((guix build utils))
       #:builder
       (begin
         (use-modules (guix build utils)
                      (ice-9 ftw)
                      (srfi srfi-26))
         (let* ((jfsutils (assoc-ref %build-inputs "jfsutils"))
                (fsck     "jfs_fsck")
                (out      (assoc-ref %outputs "out"))
                (sbin     (string-append out "/sbin")))
           (mkdir-p sbin)
           (with-directory-excursion sbin
             (install-file (string-append jfsutils "/sbin/" fsck)
                           ".")
             (remove-store-references fsck)
             (chmod fsck #o555))
           #t))))
    (inputs
     `(("jfsutils" ,jfsutils/static)))
    (home-page (package-home-page jfsutils))
    (synopsis "Statically-linked jfs_fsck command from jfsutils")
    (description "This package provides statically-linked jfs_fsck command taken
from the jfsutils package.  It is meant to be used in initrds.")
    (license (package-license jfsutils))))

(define-public nilfs-utils
  (package
    (name "nilfs-utils")
    (version "2.2.9")
    (source
      (origin
        (method url-fetch)
        (uri (string-append "https://nilfs.sourceforge.io/download"
                            "/nilfs-utils-" version ".tar.bz2"))
        (sha256
         (base32 "15vsayvzr8nc29n939sz9ddq46vpn53rp8h8qv484h88qac3kxjx"))))
    (build-system gnu-build-system)
    (arguments
     (list
       #:configure-flags
       #~(list "--enable-static=no")
       #:phases
       #~(modify-phases %standard-phases
           (add-before 'bootstrap 'force-bootstrap
             (lambda _
               (delete-file "configure")
               (substitute* "configure.ac"
                 (("\\[/etc\\]") "[${prefix}/etc]")
                 (("\\[/sbin\\]") "[${prefix}/sbin]")))))))
    (inputs
     (list (list util-linux "lib")))
    (native-inputs (list autoconf automake libtool))
    (home-page "https://nilfs.sourceforge.io/")
    (synopsis "Continuous Snapshotting Filesystem")
    (description
     "NILFS is a log-structured file system supporting versioning of the entire
file system and continuous snapshotting, which allows users to even restore
files mistakenly overwritten or destroyed just a few seconds ago.")
    (license license:gpl3+)))

(define-public disorderfs
  (package
    (name "disorderfs")
    (version "0.5.11")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://salsa.debian.org/reproducible-builds/disorderfs.git")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32
         "1pnrj0h8sgqwgsc18vz3fkqsp6vhigdbi75vdj0si1r6wgslnr7z"))))
    (build-system gnu-build-system)
    (native-inputs
     (list pkg-config))
    (inputs
     (list fuse-2 attr))
    (arguments
     `(#:phases (modify-phases %standard-phases
                  (delete 'configure))  ; no configure script
       #:make-flags (let ((out (assoc-ref %outputs "out")))
                      (list (string-append "PREFIX=" out)))
       #:test-target "test"
       ;; FIXME: Tests require 'run-parts' which is not in Guix yet.
       #:tests? #f))
    (home-page "https://salsa.debian.org/reproducible-builds/disorderfs")
    (synopsis "FUSE file system that introduces non-determinism")
    (description
     "An overlay FUSE file system that introduces non-determinism
into file system metadata.  For example, it can randomize the order
in which directory entries are read.  This is useful for detecting
non-determinism in the build process.")
    (license license:gpl3+)))

(define-public glusterfs
  (package
    (name "glusterfs")
    (version "7.0")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "https://download.gluster.org/pub/gluster/glusterfs/"
                           (version-major version) "/"
                           (version-major+minor version) "/"
                           "glusterfs-" version ".tar.gz"))
       (sha256
        (base32
         "0yzhx710ypj0j3m5dcgmmgvkp7p0rmmp2p7ld0axrm4vpwc2b1wa"))))
    (build-system gnu-build-system)
    (arguments
     `(#:configure-flags
       (let ((out (assoc-ref %outputs "out"))
             (p2 (assoc-ref %build-inputs "python-2")))
         (list (string-append "PYTHON=" p2 "/bin/python")
               (string-append "--with-initdir=" out "/etc/init.d")
               (string-append "--with-mountutildir=" out "/sbin")
               "--enable-cmocka"  ; unit tests
               ;; "--enable-debug"  ; debug build options
               ;; "--enable-asan"  ; Address Sanitizer
               ;; "--enable-tsan"  ; ThreadSanitizer
               ))
       #:phases
       (modify-phases %standard-phases
         (add-before 'configure 'autogen
           (lambda _ (invoke "./autogen.sh"))))))
    (native-inputs
     `(("pkg-config" ,pkg-config)
       ("libtirpc" ,libtirpc)
       ("rpcsvc-proto" ,rpcsvc-proto)
       ("python-2" ,python-2) ; must be version 2
       ("flex" ,flex)
       ("bison" ,bison)
       ("libtool" ,libtool)
       ("autoconf" ,autoconf)
       ("automake" ,automake)
       ("cmocka" ,cmocka)))
    (inputs
     `(("acl" ,acl)
       ("fuse" ,fuse-2)
       ("openssl" ,openssl)
       ("liburcu" ,liburcu)
       ("libuuid" ,util-linux "lib")
       ("libxml2" ,libxml2)
       ("readline" ,readline)
       ("zlib" ,zlib)
       ("libaio" ,libaio)
       ("rdma-core" ,rdma-core)))
    (home-page "https://www.gluster.org")
    (synopsis "Distributed file system")
    (description "GlusterFS is a distributed scalable network file system
suitable for data-intensive tasks such as cloud storage and media streaming.
It allows rapid provisioning of additional storage based on your storage
consumption needs.  It incorporates automatic failover as a primary feature.
All of this is accomplished without a centralized metadata server.")
    ;; The user may choose either LGPLv3+ or GPLv2 only.
    (license (list license:lgpl3+ license:gpl2+))))

(define-public curlftpfs
  (package
    (name "curlftpfs")
    (version "0.9.2")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "mirror://sourceforge/curlftpfs/curlftpfs/" version
                           "/curlftpfs-" version ".tar.gz"))
       (sha256
        (base32 "0n397hmv21jsr1j7zx3m21i7ryscdhkdsyqpvvns12q7qwwlgd2f"))
       (patches
        (search-patches "curlftpfs-fix-error-closing-file.patch"
                        "curlftpfs-fix-file-names.patch"
                        "curlftpfs-fix-memory-leak.patch"
                        "curlftpfs-fix-no_verify_hostname.patch"))))
    (build-system gnu-build-system)
    (arguments
     `(#:phases
       (modify-phases %standard-phases
         (add-after 'unpack 'fix-test
           (lambda _
             ;; One of the 512-Byte block counts is definitely wrong.
             ;; See <https://sourceforge.net/p/curlftpfs/bugs/73/>.
             (substitute* "tests/ftpfs-ls_unittest.c"
              (("4426192") "12814800"))
             #t)))))
    (inputs
     (list curl glib fuse-2))
    (native-inputs
     (list pkg-config))
    (home-page "https://curlftpfs.sourceforge.net/")
    (synopsis "Mount remote file systems over FTP")
    (description
     "This is a file system client based on the FTP File Transfer Protocol.")
    (license license:gpl2+)))

(define-public libeatmydata
  (package
    (name "libeatmydata")
    (version "131")        ; also update the "debian-files" input if available
    (source
     (origin
       (method url-fetch)
       (uri (string-append "https://www.flamingspork.com/projects/libeatmydata/"
                           "libeatmydata-" version ".tar.gz"))
       (sha256
        (base32 "1i5bp9a2vmljci3ihzlxf8482106di2ayy1lpr0qb8rq472sh66g"))))
    (build-system gnu-build-system)
    (arguments
     ;; All tests pass---but only if the host kernel allows PTRACE_TRACEME.
     `(#:tests? #f
       #:configure-flags
       (list "--disable-static")
       #:phases
       (modify-phases %standard-phases
         (add-after 'unpack 'patch-file-names
           (lambda* (#:key inputs #:allow-other-keys)
             (substitute* (list "eatmydata.in" "eatmydata.sh.in")
               (("basename|readlink|uname" command)
                (search-input-file inputs
                                   (string-append "bin/" command))))))
         (add-before 'patch-file-names 'tighten-symlink-mode
           ;; When the ‘eatmydata’ helper detects that it's a symlink, it will
           ;; transparently invoke the command of the same name.  However, it's
           ;; *always* a link in Guix profiles and doesn't handle that well.
           ;; Patch it to treat its own $name specially.
           (lambda _
             (substitute* "eatmydata.in"
               (("-L \"\\$0\"" match)
                (string-append match " ] && [ "
                               "\"x$(basename \"$0\")\" != \"x$name\"")))))
         (add-after 'install 'install-debian-files
           (lambda* (#:key inputs outputs #:allow-other-keys)
             (let* ((debian (assoc-ref inputs "debian-files"))
                    (out    (assoc-ref outputs "out"))
                    (share  (string-append out "/share")))
               (invoke "tar" "xvf" debian)
               (with-directory-excursion "debian"
                 (install-file "eatmydata.1" (string-append share "/man/man1"))
                 (install-file "eatmydata.bash-completion"
                               (string-append share "/bash-completion"
                                              "/completions")))))))))
    (native-inputs
     `(("debian-files"                  ; for the man page
        ,(origin
           ;; Debian being what it is, its version can lag behind a bit.  This
           ;; is tolerable as the man page is general and the command stable.
           (method url-fetch)
           (uri (string-append "https://deb.debian.org/debian/pool/main/"
                               "libe/libeatmydata/libeatmydata_130-2"
                               ".debian.tar.xz"))
           (sha256
            (base32 "1sg9g1nv3wl9ymzz33ig4ns563npkbxj67a64m7p34cc813jl95w"))))
       ;; For the test suite.
       ("strace" ,strace)
       ("which" ,which)))
    (inputs
     (list coreutils))
    (home-page "https://www.flamingspork.com/projects/libeatmydata/")
    (synopsis "Transparently ignore calls to synchronize data safely to disk")
    (description
     "Libeatmydata transparently disables most ways a program might force data
to be written to the file system, such as @code{fsync()} or @code{open(O_SYNC)}.

Such synchronisation calls provide important data integrity guarantees but are
expensive to perform and can significantly slow down software that (over)uses
them.

This price is worth paying if you care about the files being modified---which is
typically the case---or when manipulating important components of your system.
Please, @emph{do not} use something called ``eat my data'' in such cases!

However, it does not make sense to accept this performance hit if the data is
unimportant and you can afford to lose all of it in the event of a crash, for
example when running a software test suite.  Adding @file{libeatmydata.so} to
the @env{LD_PRELOAD} environment of such tasks will override all C library data
synchronisation functions with custom @i{no-op} ones that do nothing and
immediately return success.

A simple @command{eatmydata} script is included that does this for you.")
    (license license:gpl3+)))

(define-public libnfs
  (package
    (name "libnfs")
    (version "4.0.0")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/sahlberg/libnfs")
                    (commit (string-append "libnfs-" version))))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0i27wd4zvhjz7620q043p4d4mkx8zv2yz9adm1byin47dynahyda"))))
    (build-system gnu-build-system)
    (home-page "https://github.com/sahlberg/libnfs")
    (native-inputs
     (list autoconf automake libtool pkg-config))
    (synopsis "Client library for accessing NFS shares")
    (description "LIBNFS is a client library for accessing NFS shares over a
network.  LIBNFS offers three different APIs, for different use :

@enumerate
@item RAW, a fully asynchronous low level RPC library for NFS protocols.  This
  API provides very flexible and precise control of the RPC issued.
@item NFS ASYNC, a fully asynchronous library for high level vfs functions
@item NFS SYNC, a synchronous library for high level vfs functions.
@end enumerate\n")
    (license (list license:lgpl2.1+ ; library
                   license:gpl3+    ; tests
                   license:bsd-3    ; copied nsf4 files
                   ))))

(define-public apfs-fuse
  (let ((commit "66b86bd525e8cb90f9012543be89b1f092b75cf3")
        (revision "2"))
    (package
      (name "apfs-fuse")
      (version (git-version "0.0.0" revision commit))
      (source (origin
                (method git-fetch)
                (uri (git-reference
                       (url "https://github.com/sgan81/apfs-fuse")
                       (recursive? #t) ; for lzfse
                       (commit commit)))
         (sha256
          (base32 "0f63slyzv8fbgshpzrx2g01x9h73g5yvh5kis4yazl19fjm2b05r"))
         (file-name (git-file-name name version))))
      (build-system cmake-build-system)
      (arguments
       `(#:tests? #f ; No test suite
         #:phases
         (modify-phases %standard-phases
           ;; No 'install' target in CMakeLists.txt
           (replace 'install
             (lambda* (#:key outputs #:allow-other-keys)
               (let* ((out (assoc-ref outputs "out"))
                      (bin (string-append out "/bin"))
                      (lib (string-append out "/lib"))
                      (doc (string-append out "/share/doc/"
                                          (string-append ,name "-" ,version))))
                 (install-file "apfs-dump" bin)
                 (install-file "apfs-dump-quick" bin)
                 (install-file "apfs-fuse" bin)
                 (install-file "../source/README.md" doc)))))))
      (inputs
       (list bzip2 fuse zlib))
      (synopsis "Read-only FUSE driver for the APFS file system")
      (description "APFS-FUSE is a read-only FUSE driver for the @dfn{Apple File
System} (APFS).  It is currently in an experimental state — it may not be able
to read all files, and it does not support all the compression methods in
APFS.")
      (home-page "https://github.com/sgan81/apfs-fuse")
      (license license:gpl2+))))

(define-public snapper
  (package
    (name "snapper")
    (version "0.10.7")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/openSUSE/snapper")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0nwmyzjwid1lf29dsr6w72dr781c81xyrjpk5y3scn4r55b5df0h"))
       (modules '((guix build utils)))
       (snippet
        '(begin
           (delete-file-recursively "dists")
           (delete-file-recursively "zypp-plugin")
           (substitute* '("configure.ac" "doc/Makefile.am")
             ((".*dists.*") "")
             ((".*zypp-plugin.*") ""))
           (substitute* "Makefile.am"
             (("zypp-plugin") ""))))))
    (build-system gnu-build-system)
    (arguments
     (list #:phases #~(modify-phases %standard-phases
                        (add-after 'unpack 'relative-file-locations
                          (lambda* (#:key outputs #:allow-other-keys)
                            (let* ((out (assoc-ref outputs "out")))
                              (substitute* (list "scripts/Makefile.am"
                                                 "data/Makefile.am")
                                (("/usr/share")
                                 (string-append out "/share"))
                                (("/usr/lib")
                                 (string-append out "/lib"))
                                (("/etc/")
                                 (string-append out "/etc/"))))
                            (substitute* "client/Makefile.am"
                              (("/usr/lib")
                               "@libdir@")))))))
    (home-page "https://snapper.io")
    (native-inputs
     (list glibc-locales autoconf automake libtool pkg-config))
    (inputs
     (list btrfs-progs
           e2fsprogs
           `(,util-linux "lib")
           linux-pam
           dbus
           libxml2
           json-c
           acl
           boost
           ncurses/tinfo
           libxslt
           docbook-xsl
           gettext-minimal))
    (synopsis "Manage Btrfs file system snapshots and allow roll-backs")
    (description "This package provides Snapper, a tool that helps with
managing snapshots of Btrfs subvolumes and thin-provisioned LVM volumes.  It
can create and compare snapshots, revert differences between them, and
supports automatic snapshots timelines.")
    (license license:gpl2)))

(define-public xfstests
  ;; The last release (1.1.0) is from 2011.
  (let ((revision "3")
        (commit "8de535c53887bb49adae74a1b2e83e77d7e8457d"))
    (package
      (name "xfstests")
      (version (git-version "1.1.0" revision commit))
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "git://git.kernel.org/pub/scm/fs/xfs/xfstests-dev.git")
               (commit commit)))
         (file-name (git-file-name name version))
         (sha256
          (base32 "1sbkryl04xflrk6jb4fsl3h2whilj5m3vpdkpwwb26idp7ckjjv6"))))
      (build-system gnu-build-system)
      (arguments
       (list
        #:phases
        #~(modify-phases %standard-phases
            (add-after 'unpack 'patch-tool-locations
              (lambda* (#:key inputs #:allow-other-keys)
                (substitute* "common/config"
                  ;; Make absolute file names relative.
                  (("(MKFS_PROG=\").*(\")" _ pre post)
                   (string-append pre "mkfs" post)))
                (for-each (lambda (file)
                            (substitute* file
                              (("( -s|#.|[= ])(/bin/sh|/bin/bash)" _ pre match)
                               (string-append pre
                                              (search-input-file inputs match)))
                              (("/bin/(rm|true)" match)
                               (search-input-file inputs match))
                              (("/usr(/bin/time)" _ match)
                               (search-input-file inputs match))))
                          (append (find-files "common" ".*")
                                  (find-files "tests" ".*")
                                  (find-files "tools" ".*")
                                  (find-files "src" "\\.(c|sh)$")))))
            (replace 'bootstrap
              (lambda* (#:key make-flags #:allow-other-keys)
                (substitute* "Makefile"
                  ;; Avoid a mysterious (to me) ‘permission denied’ error.
                  (("cp ") "cp -f "))
                (substitute* "m4/package_utilies.m4"
                  ;; Fix the bogus hard-coded paths for every single binary.
                  (("(AC_PATH_PROG\\(.*, ).*(\\))" _ pre post)
                   (string-append pre (getenv "PATH") post)))
                (apply invoke "make" "configure" make-flags)))
            (add-after 'install 'wrap-xfstests/check
              ;; Keep wrapping distinct from 'create-helper-script below: users
              ;; must be able to invoke xfstests/check directly if they prefer.
              (lambda* (#:key inputs #:allow-other-keys)
                (wrap-program (string-append #$output "/xfstests/check")
                  ;; Prefix the user's PATH with the minimum required tools.
                  ;; The suite has many other optional dependencies and will
                  ;; automatically select tests based on the original PATH.
                  `("PATH" ":" prefix
                    ,(map (lambda (file)
                            (dirname (search-input-file inputs file)))
                          (list "bin/setfacl"         ; acl
                                "bin/attr"            ; attr
                                "bin/bc"              ; bc
                                "bin/df"              ; coreutils
                                "bin/hostname"        ; inetutils
                                "bin/perl"            ; perl
                                "sbin/mkfs.xfs")))))) ; xfsprogs
            (add-after 'install 'create-helper
              ;; Upstream installs only a ‘check’ script that's not in $PATH and
              ;; would try to write to the store without explaining how to change
              ;; that.  Install a simple helper script to make it discoverable.
              (lambda* (#:key inputs #:allow-other-keys)
                (let* ((check  (string-append #$output "/xfstests/check"))
                       (bin    (string-append #$output "/bin"))
                       (helper (string-append bin "/xfstests-check")))
                  (mkdir-p bin)
                  (with-output-to-file helper
                    (lambda _
                      (format #t "#!~a --no-auto-compile\n!#\n"
                              (search-input-file inputs "/bin/guile"))
                      (write
                       `(begin
                          (define (try proc dir)
                            "Try to PROC DIR.  Return DIR on success, else #f."
                            (with-exception-handler (const #f)
                              (lambda _ (proc dir) dir)
                              #:unwind? #t))

                          (define args
                            (cdr (command-line)))

                          (when (or (member "--help" args)
                                    (member "-h" args))
                            (format #t "Usage: ~a [OPTION]...
This Guix helper sets up a new writable RESULT_BASE if it's unset, then executes
xfstest's \"~a\" command (with any OPTIONs) as documented below.\n\n"
                                    ,(basename helper)
                                    ,(basename check)))

                          (let* ((gotenv-base (getenv "RESULT_BASE"))
                                 (base (or gotenv-base
                                           (let loop ((count 0))
                                             (or (try mkdir
                                                      (format #f "xfstests.~a"
                                                              count))
                                                 (loop (+ 1 count))))))
                                 (result-base (if (string-prefix? "/" base)
                                                  base
                                                  (string-append (getcwd) "/"
                                                                 base))))
                            (setenv "RESULT_BASE" result-base)
                            ;; CHECK must run in its own directory or will fail.
                            (chdir ,(dirname check))
                            (let ((status
                                   (status:exit-val (apply system* ,check args))))
                              (unless gotenv-base
                                (try rmdir result-base))
                              status))))))
                  (chmod helper #o755)))))))
      (native-inputs
       (list autoconf automake libtool))
      (inputs
       (list acl
             attr
             bash-minimal
             bc
             guile-3.0                  ; for our xfstests-check helper script
             inetutils
             `(,util-linux "lib")
             perl
             time
             xfsprogs))
      (home-page "https://git.kernel.org/pub/scm/fs/xfs/xfstests-dev.git")
      (synopsis "File system @acronym{QA, Quality Assurance} test suite")
      (description
       "The @acronym{FSQA, File System Quality Assurance} regression test suite,
more commonly known as xfstests, comprises over 1,500 tests that exercise
(@dfn{torture}) both the user- and kernel-space parts of many different file
systems.

As the package's name subtly implies, it was originally developed to test the
XFS file system.  Today, xfstests is the primary test suite for all major file
systems supported by the kernel Linux including XFS, ext4, and Btrfs, but also
virtual and network file systems such as NFS, 9P, and the overlay file system.

The packaged @command{check} script is not in @env{PATH} but can be invoked
with the included @command{xfstests-check} helper.")
      (license license:gpl2))))

(define-public zfs
  (package
    (name "zfs")
    (version "2.2.5")
    (outputs '("out" "module" "src"))
    (source
      (origin
        (method url-fetch)
          (uri (string-append "https://github.com/openzfs/zfs/releases"
                              "/download/zfs-" version
                              "/zfs-" version ".tar.gz"))
          (sha256
           (base32 "15w8s0f155kpylgdan56hgwc86fl1658br05dmyyhxfd55pwz213"))))
    (build-system linux-module-build-system)
    (arguments
     (list
      ;; The ZFS kernel module should not be downloaded since the license
      ;; terms don't allow for distributing it, only building it locally.
      #:substitutable? #f
      ;; Tests cannot run in an unprivileged build environment.
      #:tests? #f
      #:phases
      #~(modify-phases %standard-phases
          (add-after 'configure 'really-configure
            (lambda* (#:key inputs #:allow-other-keys)
              (substitute* "configure"
                (("-/bin/sh") (string-append "-" (which "sh"))))
              (invoke "./configure"
                      "--with-config=all"
                      (string-append "--prefix=" #$output)
                      (string-append "--with-dracutdir=" #$output
                                     "/lib/dracut")
                      (string-append "--with-udevdir=" #$output
                                     "/lib/udev")
                      (string-append "--with-mounthelperdir=" #$output
                                     "/sbin")
                      (string-append "--with-linux="
                                     (search-input-directory
                                      inputs
                                      "lib/modules/build")))))
          (add-after 'unpack 'patch-source
            (lambda* (#:key inputs #:allow-other-keys)
              ;; New feature "compatibility=" in 2.1.0.
              ;; This feature looks up in two locations:
              ;;   /etc/zfs/compatibility.d/
              ;;   /usr/share/zfs/compatibility.d/
              ;; The first is intended for system-specific compatibility
              ;; sets, while the second is what is installed with the
              ;; OpenZFS package, so use the absolute path for the first
              ;; (which requires patching in the file) and the store path
              ;; for the second (which it gets by default).
              (substitute* "include/sys/fs/zfs.h"
                (("#define\tZPOOL_SYSCONF_COMPAT_D.*$")
                 ;; Use absolute path.
                 "#define\tZPOOL_SYSCONF_COMPAT_D\t\"/etc/zfs/compatibility.d\"\n"))
              ;; Also update the manual, which uses absolute paths, so that
              ;; /usr/share/zfs/compatibility.d/ is referred via the store.
              (substitute* '("man/man7/zpoolprops.7"
                             "man/man7/zpool-features.7")
                (("/usr/share/zfs/compatibility.d")
                 (string-append #$output "/share/zfs/compatibility.d")))
              (substitute* "lib/libzfs/os/linux/libzfs_util_os.c"
                ;; Use path to /gnu/store/*-kmod in actual path that is
                ;; exec'ed.
                (("\"/sbin/modprobe\"")
                 (string-append "\""
                                (search-input-file inputs "/bin/modprobe")
                                "\""))
                ;; Just use 'modprobe' in message to user, since Guix
                ;; does not have a traditional /sbin/
                (("'/sbin/modprobe ") "'modprobe "))
              (substitute* "configure"
                (("/etc/default")
                 (string-append #$output "/etc/default"))
                (("/etc/bash_completion.d")
                 (string-append #$output "/etc/bash_completion.d")))
              (substitute* "Makefile.in"
                (("/usr/share/initramfs-tools")
                 (string-append #$output "/usr/share/initramfs-tools")))
              (substitute* "contrib/initramfs/Makefile.am"
                (("/usr/share/initramfs-tools")
                 (string-append #$output "/usr/share/initramfs-tools")))
              (substitute* "module/os/linux/zfs/zfs_ctldir.c"
                (("/usr/bin/env\", \"umount")
                 (string-append (search-input-file inputs "/bin/umount")
                                "\", \"-n"))
                (("/usr/bin/env\", \"mount")
                 (string-append (search-input-file inputs "/bin/mount")
                                "\", \"-n")))
              (substitute* "lib/libzfs/os/linux/libzfs_mount_os.c"
                (("/bin/mount") (search-input-file inputs "/bin/mount"))
                (("/bin/umount") (search-input-file inputs "/bin/umount")))
              (substitute* "lib/libshare/os/linux/nfs.c"
                (("/usr/sbin/exportfs")
                 (search-input-file inputs "/sbin/exportfs")))
              (substitute* "config/zfs-build.m4"
                (("\\$sysconfdir/init.d")
                 (string-append #$output "/etc/init.d")))
              (substitute* '("cmd/zed/Makefile.am")
                (("\\$\\(sysconfdir)") (string-append #$output "/etc")))
              (substitute* "udev/vdev_id"
                (("PATH=/bin:/sbin:/usr/bin:/usr/sbin")
                 (string-append "PATH="
                                (dirname (which "chmod")) ":"
                                (dirname (which "grep")) ":"
                                (dirname (which "sed")) ":"
                                (dirname (which "gawk")))))
              (substitute* '("Makefile.am" "Makefile.in")
                (("\\$\\(prefix)/src") (string-append #$output:src "/src")))
              (substitute* (find-files "udev/rules.d/" ".rules.in$")
                (("/sbin/modprobe")
                 (search-input-file inputs "/bin/modprobe")))))
          (replace 'build
            (lambda _ (invoke "make")))
          (replace 'install
            (lambda* (#:key inputs native-inputs #:allow-other-keys)
              (let* ((kmod (assoc-ref (or native-inputs inputs) "kmod")))
                (invoke "make" "install"
                        (string-append "DEFAULT_INITCONF_DIR="
                                       #$output "/etc/default")
                        (string-append "DEPMOD="
                                       (search-input-file
                                        (or native-inputs inputs)
                                        "/bin/depmod"))
                        (string-append "INSTALL_PATH=" #$output)
                        (string-append "INSTALL_MOD_PATH=" #$output:module)
                        "INSTALL_MOD_STRIP=1")
                (install-file
                 "contrib/bash_completion.d/zfs"
                 (string-append #$output
                                "/share/bash-completion/completions"))))))))
    (native-inputs
     (list attr kmod pkg-config))
    (inputs (list eudev
                  kmod
                  libaio
                  libtirpc
                  nfs-utils
                  openssl
                  python
                  python-cffi
                  util-linux
                  `(,util-linux "lib")
                  zlib))
    (home-page "https://zfsonlinux.org/")
    (synopsis "OpenZFS on Linux")
    (description
     "OpenZFS is an advanced file system and volume manager which was
originally developed for Solaris and is now maintained by the OpenZFS
community.")
    (license license:cddl1.0)))

(define-public zfs-auto-snapshot
  (package
    (name "zfs-auto-snapshot")
    (version "1.2.4")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url
              (string-append "https://github.com/zfsonlinux/" name))
             (commit
              (string-append "upstream/" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0m4xw7h5qlbn5zdf9wb137pcr5l7hyrr7w2dgr16dfm5ay64vvfq"))))
    (build-system gnu-build-system)
    (inputs
     ;; Note: if you are inheriting from the above zfs package in order
     ;; to provide a specific stable kernel version, you should also
     ;; inherit this package and replace the sole input below.
     (list zfs))
    (arguments
     `(#:tests? #f ; No tests
       #:phases
       (modify-phases %standard-phases
         (delete 'configure)
         (delete 'build)
         ;; Guix System may not have a traditional cron system, but
         ;; the cron scripts installed by this package are convenient
         ;; to use as targets for an mcron job specification, so make
         ;; sure they can be run in-store.
         (add-before 'install 'fix-scripts
           (lambda* (#:key outputs inputs #:allow-other-keys)
             (let* ((out                (assoc-ref outputs "out"))
                    (zfs-auto-snapshot  (string-append
                                         out
                                         "/sbin/zfs-auto-snapshot"))
                    (zfs-package        (assoc-ref inputs "zfs"))
                    (zpool              (string-append
                                         zfs-package
                                         "/sbin/zpool"))
                    (zfs                (string-append
                                         zfs-package
                                         "/sbin/zfs")))
               (substitute* '("etc/zfs-auto-snapshot.cron.daily"
                              "etc/zfs-auto-snapshot.cron.frequent"
                              "etc/zfs-auto-snapshot.cron.hourly"
                              "etc/zfs-auto-snapshot.cron.monthly"
                              "etc/zfs-auto-snapshot.cron.weekly")
                 (("zfs-auto-snapshot")
                  zfs-auto-snapshot))
               (substitute* "src/zfs-auto-snapshot.sh"
                 (("LC_ALL=C zfs list")
                  (string-append "LC_ALL=C " zfs " list"))
                 (("LC_ALL=C zpool status")
                  (string-append "LC_ALL=C " zpool " status"))
                 (("zfs snapshot")
                  (string-append zfs " snapshot"))
                 (("zfs destroy")
                  (string-append zfs " destroy"))))))
         ;; Provide DESTDIR and PREFIX on make command.
         (replace 'install
           (lambda* (#:key outputs #:allow-other-keys)
             (let ((out (assoc-ref outputs "out")))
               (invoke "make" "install"
                       "PREFIX="
                       (string-append "DESTDIR=" out)))
             #t)))))
    (home-page "https://github.com/zfsonlinux/zfs-auto-snapshot")
    (synopsis "Automatically create, rotate and destroy ZFS snapshots")
    (description "An alternative implementation of the zfs-auto-snapshot
service for Linux that is compatible with zfs-linux (now OpenZFS) and
zfs-fuse.

On Guix System, you will need to invoke the included shell scripts as
@code{job} definitions in your @code{operating-system} declaration.")
    (license license:gpl2+)))

(define-public mergerfs
  (package
    (name "mergerfs")
    (version "2.33.5")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "https://github.com/trapexit/mergerfs/"
                           "releases/download/" version "/"
                           "mergerfs-" version ".tar.gz"))
       (sha256
        (base32 "0m0fg191ax855yb20vqpvn6v2gc3i5xdizx09pgpymj1ybxc7yyw"))))
    (build-system gnu-build-system)
    (arguments
     `(#:make-flags
       (list (string-append "CC=" ,(cc-for-target))
             (string-append "CXX=" ,(cxx-for-target))
             (string-append "PREFIX=" (assoc-ref %outputs "out")))
       #:tests? #f                     ; all require a kernel with FUSE loaded
       #:phases
       (modify-phases %standard-phases
         (delete 'configure)            ; no configure script
         (add-after 'unpack 'set-file-names
           (lambda* (#:key inputs outputs #:allow-other-keys)
             (substitute* "libfuse/Makefile"
               (("/sbin") "$(EXEC_PREFIX)/sbin")
               (("chown") "true")  ; disallowed in the build environment
               (("strip") "true")) ; breaks cross-compilation
             ;; These were copied from the fuse-2 package.
             (substitute* '("libfuse/lib/mount_util.c"
                            "libfuse/util/mount_util.c")
               (("/bin/(u?)mount" _ maybe-u)
                (search-input-file inputs
                                   (string-append "bin/" maybe-u
                                                  "mount"))))
             (substitute* '("libfuse/util/mount.mergerfs.c")
               (("/bin/sh" command)
                (string-append (assoc-ref inputs "bash-minimal") command))
               ;; mount.mergerfs tries to execute `mergerfs`, which cannot be found
               ;; without an absolute path. Hard-coding the path is fine, since we don’t
               ;; link mount.mergerfs to mount.fuse anyway.
               (("add_arg\\(&command, type\\);")
                (string-append "add_arg(&command, \"" (assoc-ref outputs "out")
                               "/bin/mergerfs\");"))))))))
    ;; Mergerfs bundles a heavily modified copy of fuse.
    (inputs
     (list bash-minimal util-linux))
    (home-page "https://github.com/trapexit/mergerfs")
    (synopsis "Featureful union file system")
    (description "mergerfs is a union file system geared towards simplifying
storage and management of files across numerous commodity storage devices.  It
is similar to mhddfs, unionfs, and aufs.")
    (license (list
              license:isc                   ; mergerfs
              license:gpl2 license:lgpl2.0  ; Imported libfuse code.
              ))))

(define-public mergerfs-tools
  (let ((commit "3b6fe008517aeda715c306eaf4914f6f537da88d")
        (revision "3"))
    (package
      (name "mergerfs-tools")
      ;; No released version exists.
      (version (git-version "0.0.0" revision commit))
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "https://github.com/trapexit/mergerfs-tools")
               (commit commit)))
         (file-name (git-file-name name version))
         (sha256
          (base32 "15pgym6c4viy57ccgp28dnqwh12f3gr02axg86y578aqa2yaa0ad"))))
      (build-system copy-build-system)
      (inputs
       (list python python-xattr rsync))
      (arguments
       '(#:install-plan
         '(("src/" "bin/"))
         #:phases
         (modify-phases %standard-phases
           (add-after 'unpack 'patch-paths
             (lambda* (#:key inputs #:allow-other-keys)
               (substitute* (find-files "src" "^mergerfs\\.")
                 (("'rsync'")
                  (string-append "'" (assoc-ref inputs "rsync") "/bin/rsync'"))
                 (("'rm'")
                  (string-append "'" (assoc-ref inputs "coreutils") "/bin/rm'")))
               (substitute* "src/mergerfs.mktrash"
                 (("xattr")
                  (search-input-file inputs "/bin/xattr"))
                 (("mkdir")
                  (search-input-file inputs "/bin/mkdir"))))))))
      (synopsis "Tools to help manage data in a mergerfs pool")
      (description "mergerfs-tools is a suite of programs that can audit
permissions and ownership of files and directories on a mergerfs volume,
duplicates files and directories across branches in its pool, find and remove
duplicate files, balance pool drives, consolidate files in a single mergerfs
directory onto a single drive and create FreeDesktop.org Trash specification
compatible directories.")
      (home-page "https://github.com/trapexit/mergerfs-tools")
      (license license:isc))))

(define-public python-dropbox
  (package
    (name "python-dropbox")
    (version "11.36.2")
    (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "dropbox" version))
        (sha256
         (base32 "00650gk8557x3f38nd8a1mdby7v1l8l4l72aq48qpiw6shb3v3fl"))
        (snippet
         '(begin
            (use-modules (guix build utils))
            (substitute* "setup.py"
              (("pytest-runner == 5\\.2\\.0") "pytest-runner"))))))
    (build-system python-build-system)
    (arguments '(#:tests? #f))  ; Tests require a network connection.
    (native-inputs
     (list python-pytest python-pytest-runner))
    (propagated-inputs
     (list python-requests python-six python-stone))
    (home-page "https://www.dropbox.com/developers")
    (synopsis "Official Dropbox API Client")
    (description "This package provides a Python SDK for integrating with the
Dropbox API v2.")
    (license license:expat)))

(define-public dbxfs
  (package
    (name "dbxfs")
    (version "1.0.63")
    (source
      (origin
        ;; Release tarball contains files not in git repository.
        (method git-fetch)
        (uri (git-reference
               (url "https://thelig.ht/code/dbxfs")
               (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
         (base32
          "1vzfhw3z2r0rb6s0qdzirh3pl7rv1z8xmxa0z5h7h1wqhpl05ai7"))
        (patches (search-patches "dbxfs-remove-sentry-sdk.patch"))
        (snippet
         #~(begin (use-modules (guix build utils))
                  ;; Don't check for package updates.
                  (substitute* "dbxfs/main.py"
                    (("if version") "if False"))))))
    (build-system python-build-system)
    (arguments
     '(#:tests? #f)) ; tests requires safefs
    (propagated-inputs
     (list python-appdirs
           python-block-tracing
           python-dropbox
           python-keyring
           python-keyrings.alt
           python-privy
           python-userspacefs))
  (home-page "https://thelig.ht/code/dbxfs/")
  (synopsis "User-space file system for Dropbox")
  (description
   "@code{dbxfs} allows you to mount your Dropbox folder as if it were a
local file system using FUSE.")
  (license license:gpl3+)))

(define-public go-github-com-hanwen-fuse
  (package
    (name "go-github-com-hanwen-fuse")
    (version "2.0.3")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/hanwen/go-fuse")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32
         "1y44d08fxyis99s6jxdr6dbbw5kv3wb8lkhq3xmr886i4w41lz03"))))
    (build-system go-build-system)
    (arguments
     `(#:import-path "github.com/hanwen/go-fuse"))
    (propagated-inputs
     (list go-golang-org-x-sys))
    (home-page "https://github.com/hanwen/go-fuse")
    (synopsis "FUSE bindings for Go")
    (description
     "This package provides Go native bindings for the FUSE kernel module.")
    (license license:bsd-3)))

(define-public rewritefs
  (let ((revision "1")
        (commit "3a56de8b5a2d44968b8bc3885c7d661d46367306"))
    (package
      (name "rewritefs")
      (version (git-version "0.0.0" revision commit))
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "https://github.com/sloonz/rewritefs")
               (commit commit)))
         (file-name (git-file-name name version))
         (sha256
          (base32 "1w2rik0lhqm3wr68x51zs45gqfx79l7fi4p0sqznlfq7sz5s8xxn"))))
      (build-system gnu-build-system)
      (arguments
       (list
        #:modules
        '((guix build gnu-build-system)
          (guix build utils)
          (srfi srfi-26))
        #:make-flags
        #~(list (string-append "PREFIX=" #$output))
        #:test-target "test"
        #:tests? #f                    ; all require a kernel with FUSE loaded
        #:phases
        #~(modify-phases %standard-phases
            (delete 'configure)         ; no configure script
            (add-after 'install 'install-examples
              (lambda _
                (let ((doc (string-append #$output "/share/doc/"
                                          #$name "-" #$version)))
                  (for-each (cut install-file <> (string-append doc "/examples"))
                            (find-files "." "^config\\."))))))))
      (native-inputs
       (list pkg-config))
      (inputs
       (list fuse pcre))
      (home-page "https://github.com/sloonz/rewritefs")
      (synopsis "FUSE file system that changes particular file names")
      (description
       "RewriteFS is a @acronym{FUSE, File system in USEr space} to change the
name of accessed files on the fly based on any number of regular expressions.
It's like the @code{rewrite} action of many Web servers, but for your file
system.  For example, it can help keep your home directory tidy by transparently
rewriting the location of configuration files of software that doesn't follow
the XDG directory specification from @file{~/.@var{name}} to
@file{~/.config/@var{name}}.")
      (license license:gpl2+))))

(define-public squashfuse
  (package
    (name "squashfuse")
    (version "0.1.105")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/vasi/squashfuse")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "03aw8pw8694jyrzpnbry05rk9718sqw66kiyq878bbb679gl7224"))))
    (build-system gnu-build-system)
    (native-inputs (list autoconf automake libtool pkg-config))
    (inputs (list attr fuse-2 xz zlib `(,zstd "lib")))
    (home-page "https://github.com/vasi/squashfuse")
    (synopsis "Fuse filesystem to mount squashfs archives")
    (description
     "Squashfuse lets you mount SquashFS archives in user-space.  It supports
almost all features of the SquashFS format, yet is still fast and
memory-efficient.")
    (license license:bsd-2)))

(define-public tmsu
  (package
    (name "tmsu")
    (version "0.7.5")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/oniony/TMSU")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32
         "0834hah7p6ad81w60ifnxyh9zn09ddfgrll04kwjxwp7ypbv38wq"))))
    (build-system go-build-system)
    (arguments
     (list
      #:import-path "github.com/oniony/TMSU"
      #:unpack-path "github.com/oniony/TMSU"
      #:install-source? #f
      #:phases
      #~(modify-phases %standard-phases
          (add-after 'unpack 'adjust-makefile
            (lambda* (#:key import-path #:allow-other-keys)
              (with-directory-excursion (string-append "src/" import-path)
                (substitute* "Makefile"
                  (("SHELL=.*") (string-append "SHELL=" (which "sh") "\n"))
                  ;; Make sure we do not compile 2 more times during the check
                  ;; phase.
                  (("unit-test: compile") "unit-test:")
                  (("integration-test: compile") "integration-test:")
                  ;; Simplify install path.
                  (("usr/") "")))))
          (replace 'build
            (lambda* (#:key import-path #:allow-other-keys)
              (with-directory-excursion (string-append "src/" import-path)
                (invoke "make" "compile"))))
          (replace 'check
            (lambda* (#:key import-path tests? #:allow-other-keys)
              (when tests?
                (with-directory-excursion (string-append "src/" import-path)
                  ;; Remove shaky test file, see
                  ;; <https://github.com/oniony/TMSU/issues/281>.
                  (for-each
                   (lambda (test-file)
                     (delete-file test-file))
                   (find-files "." "^fingerprinter_test.go$"))
                  (invoke "make" "test")))))
          (replace 'install
            (lambda* (#:key import-path #:allow-other-keys)
              (with-directory-excursion (string-append "src/" import-path)
                (setenv "DESTDIR" #$output)
                (invoke "make" "install")))))))
    (inputs
     (list go-github-com-mattn-go-sqlite3 go-github-com-hanwen-fuse))
    (home-page "https://github.com/oniony/TMSU")
    (synopsis "Tag files and access them through a virtual file system")
    (description
     "TMSU is a tool for tagging your files.  It provides a simple
command-line utility for applying tags and a virtual file system to give you a
tag-based view of your files from any other program.  TMSU does not alter your
files in any way: they remain unchanged on disk, or on the network, wherever
your put them.  TMSU maintains its own database and you simply gain an
additional view, which you can mount where you like, based upon the tags you
set up.")
    (license license:gpl3+)))

(define-public udftools
  (package
    (name "udftools")
    (version "2.3")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/pali/udftools")
                    (commit version)))
              (sha256
               (base32
                "1nl2s61znyzaap23zhbdg3znj6l6akr313fchn5wwvjzj8k70is9"))
              (file-name (git-file-name name version))))
    (build-system gnu-build-system)
    (arguments
     `(#:configure-flags
       (list (string-append "--docdir=" (assoc-ref %outputs "out")
                            "/share/doc/" ,name "-" ,version))))
    (native-inputs
     (list automake autoconf libtool pkg-config))
    (home-page "https://github.com/pali/udftools")
    (synopsis "Tools to manage UDF file systems and DVD/CD-R(W) drives")
    (description "@code{udftools} is a set of programs for reading
and modifying @acronym{UDF, Universal Disk Format} file systems.
@acronym{UDF, Universal Disk Format} is a file system mostly used for DVDs
and other optical media.  It supports read-only media (DVD/CD-R)
and rewritable media that wears out (DVD/CD-RW).")
    (license license:gpl2+)))

(define-public fuse-overlayfs
  (package
    (name "fuse-overlayfs")
    (version "1.13")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/containers/fuse-overlayfs")
                    (commit (string-append "v" version))))
              (sha256
               (base32
                "03gqb4czswqhx6zrv9jj88mf3mczk4m7azcjgr785c2lmga442ly"))
              (file-name (git-file-name name version))))
    (build-system gnu-build-system)
    (native-inputs
     (list automake autoconf libtool pkg-config))
    (inputs
     (list fuse))
    (home-page "https://github.com/containers/fuse-overlayfs")
    (synopsis "FUSE implementation of overlayfs")
    (description "This package provides an implementation of overlay+shiftfs
in FUSE for rootless containers.")
    (license license:gpl3)))

(define-public bees
  (package
    (name "bees")
    (version "0.10")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/Zygo/bees")
                    (commit (string-append "v" version))))
              (file-name (git-file-name name version))
              (modules '((guix build utils)))
              (snippet
               ;; Unbundle cityhash.
               #~(begin
                   (for-each delete-file
                             '("lib/city.cc" "include/crucible/city.h"))
                   (substitute* "lib/Makefile"
                     (("city.o.*") ""))
                   (substitute* "src/bees-hash.cc"
                     (("#include .crucible/city.h.") "#include <city.h>"))))
              (sha256
               (base32
                "1j1v9bxijs8gvrb7rg0q1158xjvmfc8dlzwx768fxf3w8w2gfwvz"))))
    (build-system gnu-build-system)
    (arguments
     (list #:test-target "test"
           #:make-flags
           #~(list (string-append "CC=" #$(cc-for-target))
                   (string-append "DESTDIR=" #$output)
                   (string-append "BEES_VERSION=" #$version)
                   "PREFIX=''")
           #:phases
           #~(modify-phases %standard-phases
               (delete 'configure)
               (add-after 'unpack 'fixpath
                 (lambda* (#:key inputs #:allow-other-keys)
                   (substitute* "scripts/beesd.in"
                     (((string-append "\\<(" (string-join (list "realpath"
                                                                "uuidparse"
                                                                "grep"
                                                                "false"
                                                                "sed"
                                                                "true"
                                                                "head"
                                                                "mkdir"
                                                                "mount"
                                                                "touch"
                                                                "du"
                                                                "cut"
                                                                "rm"
                                                                "truncate"
                                                                "chmod")
                                                          "|") ")\\>") command)
                      (search-input-file inputs (string-append "/bin/" command)))

                     (("btrfs sub")
                      (string-append (search-input-file inputs "/bin/btrfs")
                                     " sub"))))))))
    (inputs (list btrfs-progs cityhash util-linux))
    (home-page "https://github.com/Zygo/bees")
    (synopsis "Deduplication agent for btrfs file systems")
    (description
     "@acronym{BEES, Best-Effort Extent-Same} is a block-oriented, user-space
deduplication agent designed for large btrfs file systems.  It combines off-line
data deduplication with incremental scanning to minimize the time your data
spend on disk between being written and being deduplicated.")
    (license (list license:gpl3+     ; the combined work
                   license:zlib      ; lib/crc64.cc
                   license:gpl2))))  ; include/crucible/btrfs.h

(define-public dwarfs
  (package
    (name "dwarfs")
    (version "0.6.2")
    (source (origin
              (method url-fetch)
              ;; The release archive is needed so that version.h is included.
              (uri (string-append "https://github.com/mhx/dwarfs/releases/download/v"
                                  version "/dwarfs-" version ".tar.xz"))
              (sha256
               (base32
                "1kncxf85gsj3anck8ccjmxn2azp5ifqbgkiky2kharmvphkbmfcv"))
              (snippet
               #~(begin
                   (use-modules (guix build utils))
                   ;; Prefer system libraries instead of submodules.
                   ;; TODO: Package fbthrift.
                   ;; TODO: Can we use Guix own folly?  There is no CMake option for it.
                   ;; TODO: Package parallel-hashmap.
                   (for-each delete-file-recursively
                             '(;; "fbthrift"
                               ;; "folly"
                               ;; "parallel-hashmap"
                               "xxHash"
                               "zstd"))))))
    (build-system cmake-build-system)
    (arguments
     '(#:tests? #f ; TODO: 1 test fails because 'modprobe fuse' needs privileged access.
       #:configure-flags
       (list "-DPREFER_SYSTEM_ZSTD=ON"
             "-DPREFER_SYSTEM_XXHASH=ON"
             "-DPREFER_SYSTEM_GTEST=ON"
             "-DWITH_TESTS=ON"
             ;; Disable man pages since ronn fails to run without hpricot.
             "-DWITH_MAN_PAGES=OFF")))
    (native-inputs
     (list
      ;; FIXME: Building with ronn fails because hpricot is missing from Guix.
      folly googletest libdwarf libevent pkg-config))
    (inputs
     (list
      boost
      double-conversion
      fmt
      fuse
      gflags
      jemalloc
      libarchive
      libunwind
      lz4
      openssl
      xxhash
      xz
      `(,zstd "lib")))
    (home-page "https://github.com/mhx/dwarfs")
    (synopsis "Fast high compression read-only file system")
    (description "DwarFS is a read-only file system with a focus on achieving
very high compression ratios in particular for very redundant data.

DwarFS also doesn't compromise on speed and for some cases it is on par with
or performs better than SquashFS.  For the primary use case, DwarFS
compression is an order of magnitude better than SquashFS compression, it's 6
times faster to build the file system, it's typically faster to access files
on DwarFS and it uses less CPU resources.

Distinct features of DwarFS are:

@itemize

@item Clustering of files by similarity using a similarity hash function.  This
makes it easier to exploit the redundancy across file boundaries.

@item Segmentation analysis across file system blocks in order to reduce the
size of the uncompressed file system.  This saves memory when using the
compressed file system and thus potentially allows for higher cache hit rates
as more data can be kept in the cache.

@item Highly multi-threaded implementation.  Both the file system creation tool
as well as the FUSE driver are able to make good use of the many cores of your
system.

@item Optional experimental Python scripting support to provide custom
filtering and ordering functionality.

@end itemize\n")
    (license license:gpl3)))

(define-public sirikali
  (package
    (name "sirikali")
    (version "1.5.1")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/mhogomchungu/sirikali")
                    (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "1l52s8rxkfcxcx3s2fnsh08wy6hhjjvp7gcggdi84aqc4dq3rdnm"))))
    (build-system cmake-build-system)
    (arguments
     '(#:tests? #f ;No tests
       #:configure-flags '("-DQT5=true")))
    (inputs (list xdg-utils libpwquality libgcrypt libsecret qtbase-5))
    (native-inputs (list pkg-config))
    (home-page "https://mhogomchungu.github.io/sirikali/")
    (synopsis "Graphical program for managing encrypted file-systems")
    (description "@dfn{SiriKali} is a Qt / C++ @acronym{GUI, graphical user
interface} application that manages ecryptfs, cryfs, encfs, gocryptfs, fscrypt
and securefs based encrypted folders.")
    (license license:gpl2+)))
v python-pytest-xdist)) (home-page "https://python-hyper.org/projects/priority/en/latest/") (synopsis "Pure-Python implementation of the HTTP/2 priority tree") (description "Priority is a pure-Python implementation of the priority logic for HTTP/2, set out in RFC 7540 Section 5.3 (Stream Priority).") (license license:expat))) (define-public python-wsproto (package (name "python-wsproto") (version "1.2.0") (source (origin (method url-fetch) (uri (pypi-uri "wsproto" version)) (sha256 (base32 "0rahm1j9danv1l6i6as80acwv16ycihxkhrvwjiqh9drxhk5ymmd")))) (build-system pyproject-build-system) (native-inputs (list python-pytest)) (propagated-inputs (list python-h11)) (home-page "https://github.com/python-hyper/wsproto/") (synopsis "WebSockets state-machine based protocol implementation") (description "@code{wsproto} is a pure-Python implementation of a WebSocket protocol stack. It's written from the ground up to be embeddable in whatever program you choose to use, ensuring that you can communicate via WebSockets, as defined in RFC6455, regardless of your programming paradigm.") (license license:expat))) (define-public hypercorn (package (name "hypercorn") (version "0.14.4") (source (origin (method git-fetch) ;PyPI does not have tests (uri (git-reference (url "https://github.com/pgjones/hypercorn") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0zyf5b8959sd12ycmqzvsb8746i3gn76rz55gxvix5cwj672m7yx")))) (build-system pyproject-build-system) ;; Propagate because Hypercorn also exposes functionality over a module. (propagated-inputs (list python-exceptiongroup python-h11 python-h2 python-priority python-tomli python-wsproto)) (native-inputs (list python-hypothesis python-poetry-core python-pytest python-pytest-asyncio python-pytest-cov python-pytest-trio python-trio)) (home-page "https://gitlab.com/pgjones/hypercorn/") (synopsis "ASGI Server based on Hyper libraries") (description "Hypercorn is an ASGI web server based on the sans-io hyper, h11, h2, and wsproto libraries and inspired by Gunicorn. It supports HTTP/1, HTTP/2, WebSockets (over HTTP/1 and HTTP/2), ASGI/2, and ASGI/3 specifications. It can utilise asyncio, uvloop, or trio worker types.") (license license:expat))) (define-public python-hypercorn (deprecated-package "python-hypercorn" hypercorn)) (define-public python-querystring-parser (package (name "python-querystring-parser") (version "1.2.4") (source (origin (method url-fetch) (uri (pypi-uri "querystring_parser" version)) (sha256 (base32 "0qlar8a0wa003hm2z6wcpb625r6vjj0a70rsni9h8lz0zwfcwkv4")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda _ ;; XXX FIXME: This test is broken with Python 3.7: ;; https://github.com/bernii/querystring-parser/issues/35 (substitute* "querystring_parser/tests.py" (("self\\.assertEqual\\(self\\.knownValuesNormalized, result\\)") "True")) (invoke "python" "querystring_parser/tests.py")))))) (propagated-inputs (list python-six)) (home-page "https://github.com/bernii/querystring-parser") (synopsis "QueryString parser that correctly handles nested dictionaries") (description "This package provides a query string parser for Python and Django projects that correctly creates nested dictionaries from sent form/querystring data.") (license license:expat))) (define-public python-tornado (package (name "python-tornado") (version "5.1.1") (source (origin (method url-fetch) (uri (pypi-uri "tornado" version)) (sha256 (base32 "02clqk2116jbnq8lnaqmdw3p52nqrd9ib59r4xz2ll43fpcmhlaf")))) (build-system python-build-system) (arguments (list #:phases '(modify-phases %standard-phases (add-after 'unpack 'fix-collections (lambda _ (substitute* "tornado/httputil.py" (("collections.MutableMapping") "collections.abc.MutableMapping")))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (substitute* "tornado/test/runtests.py" (("\"error\", category=DeprecationWarning") "\"ignore\", category=DeprecationWarning") ;; Disable tests that use SSL. (("'tornado.test.simple_httpclient_test',") "") (("'tornado.test.iostream_test',") "") (("'tornado.test.httpserver_test',") "") ;; Some timeouts are triggered in these two modules (("'tornado.test.queues_test',") "") (("'tornado.test.locks_test',") "")) ;; Skip all network tests (setenv "NO_NETWORK" "1") ;; Skip timing-relevant tests (setenv "TRAVIS" "1") (invoke "python" "-m" "tornado.test.runtests" "--verbose=yes"))))))) (native-inputs (list python-certifi)) (home-page "https://www.tornadoweb.org/") (synopsis "Python web framework and asynchronous networking library") (description "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed. By using non-blocking network I/O, Tornado can scale to tens of thousands of open connections, making it ideal for long polling, WebSockets, and other applications that require a long-lived connection to each user.") (license license:asl2.0))) (define-public python-tornado-6 (package (name "python-tornado") (version "6.2") (source (origin (method url-fetch) (uri (pypi-uri "tornado" version)) (sha256 (base32 "04rwzjfqa31ajz8vvkfcsp1539m8n960msnppxkcckp8plch8qwv")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (setenv "ASYNC_TEST_TIMEOUT" "25") ; Like in tox.ini. (invoke "python" "-m" "tornado.test.runtests"))))))) (native-inputs (list python-certifi)) (home-page "https://www.tornadoweb.org/") (synopsis "Python web framework and asynchronous networking library") (description "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed. By using non-blocking network I/O, Tornado can scale to tens of thousands of open connections, making it ideal for long polling, WebSockets, and other applications that require a long-lived connection to each user.") (license license:asl2.0))) (define-public python-tornado-http-auth (package (name "python-tornado-http-auth") (version "1.1.1") (source (origin (method url-fetch) (uri (pypi-uri "tornado-http-auth" version)) (sha256 (base32 "0hyc5f0a09i5yb99pk4bxpg6w9ichbrb5cv7hc9hff7rxd8w0v0x")))) (build-system python-build-system) (propagated-inputs (list python-tornado)) (home-page "https://github.com/gvalkov/tornado-http-auth") (synopsis "Digest and basic authentication module for Tornado") (description "Provides support for adding authentication to services using the Tornado web framework, either via the basic or digest authentication schemes.") (license license:asl2.0))) (define-public python-terminado (package (name "python-terminado") (version "0.10.0") (source (origin (method url-fetch) (uri (pypi-uri "terminado" version)) (sha256 (base32 "1smvra3sc9sg64w49kfn5yhagshq3x55839748ck5dvxvk4hgza6")))) (build-system python-build-system) (propagated-inputs (list python-tornado-6 python-ptyprocess)) (native-inputs (list python-pytest)) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda _ (invoke "pytest" "-vv")))))) (home-page "https://github.com/jupyter/terminado") (synopsis "Terminals served to term.js using Tornado websockets") (description "This package provides a Tornado websocket backend for the term.js Javascript terminal emulator library.") (license license:bsd-2))) (define-public python-wsgi-intercept (package (name "python-wsgi-intercept") (version "1.2.2") (source (origin (method url-fetch) (uri (pypi-uri "wsgi_intercept" version)) (sha256 (base32 "0kjj2v2dvmnpdd5h5gk9rzz0f54rhjb0yiz3zg65bmp65slfw65d")))) (build-system python-build-system) (propagated-inputs (list python-six)) (native-inputs (list python-pytest python-httplib2 python-requests python-urllib3)) (synopsis "Puts a WSGI application in place of a real URI for testing") (description "Wsgi_intercept installs a WSGI application in place of a real URI for testing. Testing a WSGI application normally involves starting a server at a local host and port, then pointing your test code to that address. Instead, this library lets you intercept calls to any specific host/port combination and redirect them into a WSGI application importable by your test program. Thus, you can avoid spawning multiple processes or threads to test your Web app.") (home-page "https://github.com/cdent/wsgi-intercept") (license license:expat))) (define-public python-webob (package (name "python-webob") (version "1.8.6") (source (origin (method url-fetch) (uri (pypi-uri "WebOb" version)) (sha256 (base32 "026i3z99nr3px75isa9mbnky5i7rffiv4d124h5kxfjjsxz92fma")))) (build-system python-build-system) (native-inputs (list python-nose)) (home-page "https://webob.org/") (synopsis "WSGI request and response object") (description "WebOb provides wrappers around the WSGI request environment, and an object to help create WSGI responses.") (license license:expat))) (define-public python-zc-lockfile (package (name "python-zc-lockfile") (version "3.0.post1") (source (origin (method url-fetch) (uri (pypi-uri "zc.lockfile" version)) (sha256 (base32 "1v41irj7azaag3f14xyviv3l8mvap74v5p3q274k68vakrnyxcmd")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (if tests? (invoke "zope-testrunner" "--test-path=src") (format #t "test suite not run~%"))))))) (native-inputs (list python-zope-testing python-zope-testrunner)) (home-page "https://github.com/zopefoundation/zc.lockfile") (synopsis "Interprocess locks using lock files") (description "This package provides an implementation of interprocess locks using lock files. These locks can also be used to mediate access to other files.") (license license:zpl2.1))) (define-public python-zconfig (package (name "python-zconfig") (version "4.0") (source (origin (method url-fetch) (uri (pypi-uri "ZConfig" version)) (sha256 (base32 "0mh13p38vq7ip4zkvaplzr8w0mqrmmqiyb5y663d165slvxl5mpq")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (if tests? (begin ;; This test assumes we still have setup.py in the ;; directory from which we import zconfig, which ;; does not work after installing the package. (delete-file-recursively "src/ZConfig/tests/test_readme.py") (invoke "zope-testrunner" "-vv" "--test-path=src" "--all")) (format #t "test suite not run~%"))))))) (native-inputs (list python-docutils python-manuel python-zope-exceptions python-zope-testrunner)) (home-page "https://github.com/zopefoundation/ZConfig/") (synopsis "Structured configuration library intended for general use") (description "@code{zconfig} is a configuration library intended for general use. It supports a hierarchical schema-driven configuration model that allows a schema to specify data conversion routines written in Python. Its model is very different from the model supported by the @code{configparser} module found in Python's standard library, and is more suitable to configuration-intensive applications.") (license license:zpl2.1))) (define-public python-zodb (package (name "python-zodb") (version "5.8.1") (source (origin (method url-fetch) (uri (pypi-uri "ZODB" version)) (sha256 (base32 "1pv4w8mnx6j4xvkcjbkh99pv8ljby7g9f7zjq7zhdmk06sykmiy6")))) (build-system pyproject-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (if tests? (begin ;; This test does not work after installing the ;; package, since it expects the ZODB source code ;; to reside in the src/ directory. (delete-file-recursively "src/ZODB/tests/testdocumentation.py") (invoke "zope-testrunner" "-vv" "--test-path=src" "--all")) (format #t "test suite not run~%"))))))) (propagated-inputs (list python-btrees python-persistent python-zconfig python-six python-transaction python-zc-lockfile python-zodbpickle python-zope-interface)) (native-inputs (list python-manuel python-zope-testing python-zope-testrunner)) (home-page "http://zodb-docs.readthedocs.io") (synopsis "Object-oriented database for Python") (description "@code{ZODB} provides an object-oriented and @acronym{ACID, Atomicity Consistency Isolation Durability} compliant database for Python with a high degree of transparency. @code{ZODB} is an object-oriented database, not an object-relational mapping. This comes with several advantaged: @itemize @item no separate language for database operations @item very little impact on your code to make objects persistent @item no database mapper that partially hides the database. @item almost no seam between code and database. @end itemize") (license license:zpl2.1))) (define-public python-zodbpickle (package (name "python-zodbpickle") (version "3.2") (source (origin (method url-fetch) (uri (pypi-uri "zodbpickle" version)) (sha256 (base32 "035bjrksl4h92mvjkx6id4gjcpc1k4mbci8ryjl6l9mki7ihx77b")))) (build-system pyproject-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (if tests? (invoke "zope-testrunner" "-vv" "--test-path=src" "--all") (format #t "test suite not run~%"))))))) (native-inputs (list python-zope-testrunner)) (home-page "https://github.com/zopefoundation/zodbpickle") (synopsis "Uniform pickling interface for @code{zodb}") (description "This package is a fork of the @code{pickle} module (and the supporting C extension) from both Python 3.2 and Python 3.3. The fork adds support for the @code{noload} operations used by @code{zodb}.") (license (list license:psfl license:zpl2.1)))) (define-public python-zope-event (package (name "python-zope-event") (version "4.4") (source (origin (method url-fetch) (uri (pypi-uri "zope.event" version)) (sha256 (base32 "1ksbc726av9xacml6jhcfyn828hlhb9xlddpx6fcvnlvmpmpvhk9")))) (build-system python-build-system) (home-page "https://pypi.org/project/zope.event/") (synopsis "Event publishing system for Python") (description "Zope.event provides an event publishing API, intended for use by applications which are unaware of any subscribers to their events. It is a simple event-dispatching system on which more sophisticated event dispatching systems can be built.") (license license:zpl2.1))) (define-public python-zope-interface (package (name "python-zope-interface") (version "5.1.0") (source (origin (method url-fetch) (uri (pypi-uri "zope.interface" version)) (sha256 (base32 "03nrl6b8cb600dnnh46y149awvrm0gxyqgwq5hdw3lvys8mw9r20")))) (build-system python-build-system) (arguments '(#:tests? #f)) ; test suite can't find python-zope-testing (native-inputs (list python-coverage python-nose python-zope-event python-zope-testing)) (home-page "https://github.com/zopefoundation/zope.interface") (synopsis "Python implementation of the \"design by contract\" methodology") (description "Zope.interface provides an implementation of \"object interfaces\" for Python. Interfaces are a mechanism for labeling objects as conforming to a given API or contract.") (license license:zpl2.1))) (define-public python-zope-exceptions (package (name "python-zope-exceptions") (version "4.6") (source (origin (method url-fetch) (uri (pypi-uri "zope.exceptions" version)) (sha256 (base32 "1kc3hql2i35ys5alkj9csiaz2s9bx0rff585vnrrgvavqsj297b1")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (if tests? (invoke "zope-testrunner" "--test-path=src") (format #t "test suite not run~%"))))))) (native-inputs `(("python-zope-testrunner" ,python-zope-testrunner-bootstrap))) (propagated-inputs (list python-zope-interface)) (home-page "https://pypi.org/project/zope.exceptions/") (synopsis "Zope exceptions") (description "Zope.exceptions provides general-purpose exception types that have uses outside of the Zope framework.") (license license:zpl2.1))) (define (python-zope-bootstrap-package orig) (package (inherit orig) (name (string-append (package-name orig) "-bootstrap")) (arguments (if (null? (package-arguments orig)) `(#:tests? #f #:phases (modify-phases %standard-phases (delete 'sanity-check))) (substitute-keyword-arguments (package-arguments orig) ((#:tests? _ #f) #f) ((#:phases phases '%standard-phases) `(modify-phases ,phases (delete 'sanity-check)))))) (propagated-inputs `()) (native-inputs `()) (properties `((hidden? . #t))))) (define-public python-zope-exceptions-bootstrap (python-zope-bootstrap-package python-zope-exceptions)) (define-public python-zope-testing (package (name "python-zope-testing") (version "4.7") (source (origin (method url-fetch) (uri (pypi-uri "zope.testing" version)) (sha256 (base32 "1sh3c3i0m8n8fnhqiry0bk3rr356i56ry7calmn57s1pvv8yhsyn")))) (build-system python-build-system) (home-page "https://pypi.org/project/zope.testing/") (synopsis "Zope testing helpers") (description "Zope.testing provides a number of testing utilities for HTML forms, HTTP servers, regular expressions, and more.") (license license:zpl2.1))) (define-public python-zope-testrunner (package (name "python-zope-testrunner") (version "5.2") (source (origin (method url-fetch) (uri (pypi-uri "zope.testrunner" version)) (sha256 (base32 "0jyyf1dcz156q95x2y7yw2v420q2xn3cff0c5aci7hmdmcbn0gc7")))) (build-system python-build-system) (arguments '(#:tests? #f ;FIXME: Tests can't find zope.interface. #:phases (modify-phases %standard-phases (add-after 'unpack 'remove-problematic-test (lambda _ ;; This test contains invalid syntax, which breaks bytecode ;; compilation. For simplicity just remove it. (delete-file "src/zope/testrunner/tests/testrunner-ex/sample2/badsyntax.py")))))) (native-inputs (list python-zope-testing)) (propagated-inputs (list python-six python-zope-exceptions python-zope-interface)) (home-page "https://pypi.org/project/zope.testrunner/") (synopsis "Zope testrunner script") (description "Zope.testrunner provides a script for running Python tests.") (license license:zpl2.1))) (define-public python-zope-testrunner-bootstrap (package (inherit (python-zope-bootstrap-package python-zope-testrunner)) (propagated-inputs `(("python-six" ,python-six) ("python-zope-exceptions" ,python-zope-exceptions-bootstrap))) (properties `((hidden? . #t))))) (define-public python-zope-i18nmessageid (package (name "python-zope-i18nmessageid") (version "5.0.1") (source (origin (method url-fetch) (uri (pypi-uri "zope.i18nmessageid" version)) (sha256 (base32 "0ndhn4w1qgwkfbwf9vm2bgq418z5g0wmfsgl0d9nz62cd0mi8d4m")))) (build-system python-build-system) (native-inputs (list python-coverage python-zope-testrunner)) (propagated-inputs (list python-six)) (home-page "https://pypi.org/project/zope.i18nmessageid/") (synopsis "Message identifiers for internationalization") (description "Zope.i18nmessageid provides facilities for declaring internationalized messages within program source text.") (license license:zpl2.1))) (define-public python-zope-schema (package (name "python-zope-schema") (version "7.0.1") (source (origin (method url-fetch) (uri (pypi-uri "zope.schema" version)) (sha256 (base32 "1fgvx7nim9plxnyiq6vmah1dji7ba5290fws1i0lwk9m0g5xpm7a")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key inputs outputs tests? #:allow-other-keys) (add-installed-pythonpath inputs outputs) (if tests? (invoke "zope-testrunner" "--test-path=src") #t)))))) (propagated-inputs (list python-zope-event python-zope-interface)) (native-inputs (list python-zope-i18nmessageid python-zope-testing python-zope-testrunner)) (home-page "https://pypi.org/project/zope.schema/") (synopsis "Zope data schemas") (description "Zope.scheme provides extensions to zope.interface for defining data schemas.") (license license:zpl2.1))) (define-public python-zope-sqlalchemy (package (name "python-zope-sqlalchemy") (version "1.6") (source (origin (method url-fetch) (uri (pypi-uri "zope.sqlalchemy" version)) (sha256 (base32 "1azm2awl2ra10xl6wps3yvy14jk2rpzvsyfsb9cncm97aydbwlww")))) (build-system python-build-system) (propagated-inputs (list python-sqlalchemy python-transaction python-zope-interface)) (native-inputs (list python-zope-testing)) (home-page "https://github.com/zopefoundation/zope.sqlalchemy") (synopsis "Minimal SQLAlchemy transaction integration for Zope") (description "The aim of this package is to unify the plethora of existing packages integrating SQLAlchemy with Zope's transaction management. As such, it only provides a data manager and makes no attempt to define a @i{zopeish} way to configure engines.") (license license:zpl2.1))) (define-public python-zope-configuration (package (name "python-zope-configuration") (version "4.4.0") (source (origin (method url-fetch) (uri (pypi-uri "zope.configuration" version)) (sha256 (base32 "0g6vrl7y27z9cj5xyrww9xlzk4npj55mgmlrcd9d2nj08jn2pw79")))) (build-system python-build-system) (native-inputs (list python-manuel python-zope-testing python-zope-testrunner)) (propagated-inputs (list python-zope-i18nmessageid python-zope-interface python-zope-schema)) (home-page "https://pypi.org/project/zope.configuration/") (synopsis "Zope Configuration Markup Language") (description "Zope.configuration implements ZCML, the Zope Configuration Markup Language.") (license license:zpl2.1))) (define-public python-zope-configuration-bootstrap (python-zope-bootstrap-package python-zope-configuration)) (define-public python-zope-copy (package (name "python-zope-copy") (version "4.2") (source (origin (method url-fetch) (uri (pypi-uri "zope.copy" version)) (sha256 (base32 "06m75434krl57n6p73c2qj55k5i3fixg887j8ss01ih6zw4rvfs7")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda _ (invoke "zope-testrunner" "--test-path=src" "\\[]")))))) (propagated-inputs (list python-zope-interface)) (native-inputs `(("python-zope-component" ,python-zope-component-bootstrap) ("python-zope-location" ,python-zope-location-bootstrap) ("python-zope-testing" ,python-zope-testing) ("python-zope-testrunner" ,python-zope-testrunner))) (home-page "https://github.com/zopefoundation/zope.copy") (synopsis "Pluggable object copying mechanism") (description "This package provides a pluggable mechanism for copying persistent objects.") (license license:zpl2.1))) (define-public python-zope-proxy (package (name "python-zope-proxy") (version "4.3.5") (source (origin (method url-fetch) (uri (pypi-uri "zope.proxy" version)) (sha256 (base32 "14h7nyfbl5vpfk0rbviy4ygdfx0yx5kncvg6jpbdb0dhwna0ssm6")))) (build-system python-build-system) (native-inputs (list python-zope-security-bootstrap python-zope-testrunner)) (propagated-inputs (list python-zope-interface)) (home-page "https://pypi.org/project/zope.proxy/") (synopsis "Generic, transparent proxies") (description "Zope.proxy provides generic, transparent proxies for Python. Proxies are special objects which serve as mostly-transparent wrappers around another object, intervening in the apparent behavior of the wrapped object only when necessary to apply the policy (e.g., access checking, location brokering, etc.) for which the proxy is responsible.") (license license:zpl2.1))) (define-public python-zope-proxy-bootstrap (python-zope-bootstrap-package python-zope-proxy)) (define-public python-zope-hookable (package (name "python-zope-hookable") (version "5.0.1") (source (origin (method url-fetch) (uri (pypi-uri "zope.hookable" version)) (sha256 (base32 "0hc82lfr7bk53nvbxvjkibkarngyrzgfk2i6bg8wshl0ly0pdl19")))) (build-system python-build-system) (native-inputs (list python-coverage python-zope-testing)) (home-page "https://github.com/zopefoundation/zope.hookable") (synopsis "Zope hookable") (description "This package supports the efficient creation of hookable objects, which are callable objects that are meant to be optionally replaced. The idea is that you create a function that does some default thing and make i hookable. Later, someone can modify what it does by calling its sethook method and changing its implementation. All users of the function, including those that imported it, will see the change.") (license license:zpl2.1))) (define-public python-zope-location (package (name "python-zope-location") (version "4.2") (source (origin (method url-fetch) (uri (pypi-uri "zope.location" version)) (sha256 (base32 "1b40pzl8v00d583d3gsxv1qjdw2dhghlgkbgxl3m07d5r3izj857")))) (build-system python-build-system) (arguments '(#:tests? #f)) ; FIXME: Tests can't find zope.interface. (native-inputs (list python-zope-testrunner)) (propagated-inputs (list python-zope-interface python-zope-proxy python-zope-schema)) (home-page "https://pypi.org/project/zope.location/") (synopsis "Zope location library") (description "Zope.location implements the concept of \"locations\" in Zope3, which are are special objects that have a structural location.") (license license:zpl2.1))) (define-public python-zope-location-bootstrap (python-zope-bootstrap-package python-zope-location)) (define-public python-zope-security (package (name "python-zope-security") (version "5.1.1") (source (origin (method url-fetch) (uri (pypi-uri "zope.security" version)) (sha256 (base32 "11lfw67cigscfax9c5j63xcvz2qcj724zx5fcdqyc94am2glim0h")))) (build-system python-build-system) (propagated-inputs (list python-zope-component python-zope-i18nmessageid python-zope-interface python-zope-location python-zope-proxy python-zope-schema)) (native-inputs (list python-btrees python-zope-component-bootstrap python-zope-configuration-bootstrap python-zope-location-bootstrap python-zope-testing python-zope-testrunner)) (home-page "https://pypi.org/project/zope.security/") (synopsis "Zope security framework") (description "Zope.security provides a generic mechanism to implement security policies on Python objects.") (license license:zpl2.1))) (define-public python-zope-security-bootstrap (package (inherit (python-zope-bootstrap-package python-zope-security)) (propagated-inputs `(("python-zope-i18nmessageid" ,python-zope-i18nmessageid) ("python-zope-interface" ,python-zope-interface) ("python-zope-proxy" ,python-zope-proxy-bootstrap) ("python-zope-schema" ,python-zope-schema))))) (define-public python-zope-component (package (name "python-zope-component") (version "4.6.2") (source (origin (method url-fetch) (uri (pypi-uri "zope.component" version)) (sha256 (base32 "14iwp95hh6q5dj4k9h1iw75cbp89bs27nany4dinyglb44c8jqli")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (if tests? (invoke "python" "setup.py" "test") (format #t "test suite not run~%"))))))) (native-inputs `(("python-persistent" ,python-persistent) ("python-zope-configuration" ,python-zope-configuration-bootstrap) ("python-zope-i18nmessageid" ,python-zope-i18nmessageid) ("python-zope-location" ,python-zope-location-bootstrap) ("python-zope-proxy" ,python-zope-proxy-bootstrap) ("python-zope-security" ,python-zope-security-bootstrap) ("python-zope-testing" ,python-zope-testing) ("python-zope-testrunner" ,python-zope-testrunner))) (propagated-inputs (list python-zope-deferredimport python-zope-deprecation python-zope-event python-zope-hookable python-zope-interface)) (home-page "https://github.com/zopefoundation/zope.component") (synopsis "Zope Component Architecture") (description "Zope.component represents the core of the Zope Component Architecture. Together with the zope.interface package, it provides facilities for defining, registering and looking up components.") (license license:zpl2.1))) (define-public python-zope-component-bootstrap (python-zope-bootstrap-package python-zope-component)) (define-public python-zope-deferredimport (package (name "python-zope-deferredimport") (version "4.3.1") (source (origin (method url-fetch) (uri (pypi-uri "zope.deferredimport" version)) (sha256 (base32 "1q89v54dwniiqypjbwywwdfjdr4kdkqlyqsgrpplgvsygdg39cjp")))) (build-system python-build-system) (propagated-inputs (list python-zope-proxy)) (native-inputs (list python-zope-testrunner)) (home-page "https://github.com/zopefoundation/zope.deferredimport") (synopsis "Defer imports until used by code") (description "Often, especially for package modules, you want to import names for convenience, but not actually perform the imports until necessary. The @code{zope.deferredimport} package provided facilities for defining names in modules that will be imported from somewhere else when used. You can also cause deprecation warnings to be issued when a variable is used.") (license license:zpl2.1))) (define-public python-ndg-httpsclient (package (name "python-ndg-httpsclient") (version "0.5.1") (source (origin (method url-fetch) (uri (pypi-uri "ndg_httpsclient" version)) (sha256 (base32 "0412b7i1s4vj7lz9r72nmb28h9syd4q2x89bdirkkc3a6z8awbyp")))) (build-system python-build-system) (arguments '(;; The tests appear to require networking. #:tests? #f)) (propagated-inputs (list python-pyasn1 python-pyopenssl)) (synopsis "HTTPS support for Python's httplib and urllib2") (description "This is a HTTPS client implementation for httplib and urllib2 based on PyOpenSSL. PyOpenSSL provides a more fully-featured SSL implementation over the default provided with Python and, importantly, enables full verification of the SSL peer.") (home-page "https://github.com/cedadev/ndg_httpsclient/") (license license:bsd-3))) (define-public python-nh3 (package (name "python-nh3") (version "0.2.17") (source (origin (method url-fetch) (uri (pypi-uri "nh3" version)) (sha256 (base32 "0a7hrca5bbbrz20cbqy16n8vaxf4v2q1r9zv9vjlbmn334d79l20")))) (build-system cargo-build-system) (arguments (list #:imported-modules `(,@%cargo-build-system-modules ,@%pyproject-build-system-modules) #:modules '((guix build cargo-build-system) ((guix build pyproject-build-system) #:prefix py:) (guix build utils)) #:phases #~(modify-phases %standard-phases (replace 'build (assoc-ref py:%standard-phases 'build)) (replace 'install (assoc-ref py:%standard-phases 'install)) ;; cargo-build-system's %standard-phases has 'check before 'install. (delete 'check) (add-after 'install 'check (lambda* (#:key tests? inputs outputs #:allow-other-keys) (when tests? (py:add-installed-pythonpath inputs outputs) (invoke "pytest" "-vv" "tests"))))) #:cargo-inputs `(("rust-ammonia" ,rust-ammonia-4) ("rust-pyo3" ,rust-pyo3-0.21)) #:install-source? #false)) (native-inputs (list maturin python-pytest python-wrapper)) (home-page "https://nh3.readthedocs.io") (synopsis "Python bindings to Ammonia HTML sanitization library") (description "This package provides Python bindings to Ammonia HTML sanitizer Rust crate.") (license license:expat))) (define-public python-noiseprotocol (package (name "python-noiseprotocol") (version "0.3.1") (source (origin (method url-fetch) (uri (pypi-uri "noiseprotocol" version)) (sha256 (base32 "0ifnj0mpbqsfqba9n12vf5yzxj4qf2gxql3ry43qyshgnrqsi4mh")))) (build-system pyproject-build-system) (propagated-inputs (list python-cryptography)) (home-page "https://github.com/plizonczyk/noiseprotocol") (synopsis "Implementation of Noise Protocol Framework") (description "This package provides an implementation of Noise Protocol Framework.") (license license:expat))) (define-public python-websocket-client (package (name "python-websocket-client") (version "1.2.3") (source (origin (method url-fetch) (uri (pypi-uri "websocket-client" version)) (sha256 (base32 "1xba9z6b211pandrlk2l5p8wj6gn7yfkpq1sxfbqjl6c19n8258k")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'skip-network-test (lambda _ ;; This test requires networking. (substitute* "websocket/tests/test_http.py" (("def testConnect") "def _testConnect")))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "-vv" "websocket/tests"))))))) (native-inputs (list python-pysocks python-pytest python-websockets)) (home-page "https://github.com/websocket-client/websocket-client") (synopsis "WebSocket client for Python") (description "The Websocket-client module provides the low level APIs for WebSocket usage in Python programs.") (license license:lgpl2.1+))) (define-public python-websocket-client-0.59 (package (inherit python-websocket-client) (version "0.59.0") (source (origin (method url-fetch) (uri (pypi-uri "websocket-client" version)) (sha256 (base32 "0p0cz2mdissq7iw1n7jrmsfir0jfmgs1dvnpnrx477ffx9hbsxnk")))))) (define-public python-purl (package (name "python-purl") (version "1.5") (source (origin (method url-fetch) (uri (pypi-uri "purl" version)) (sha256 (base32 "15ibnz1xrh5msmn04j0nr00sz4n7jwx6cwd6zlx99kkz3vpin53m")))) (build-system python-build-system) (propagated-inputs (list python-six)) (home-page "https://github.com/codeinthehole/purl") (synopsis "Python package for URL manipulation") (description "Purl is a Python package for handling URLs.") (license license:expat))) (define-public python-apiron (package (name "python-apiron") (version "5.1.0") (source (origin (method url-fetch) (uri (pypi-uri "apiron" version)) (sha256 (base32 "1qwbqn47sf0aqznj1snbv37v8ijx476qqkjf5l9pac7xjkxsr8qk")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key inputs outputs #:allow-other-keys) (add-installed-pythonpath inputs outputs) (invoke "pytest" "-vv" "--cov" "-k" ;; This test tries to connect to the internet. "not test_call")))))) (propagated-inputs (list python-requests)) (native-inputs (list python-pytest python-pytest-cov)) (home-page "https://github.com/ithaka/apiron") (synopsis "Python wrapper for interacting with RESTful APIs") (description "@code{apiron} provides a declarative, structured configuration of services and endpoints with a unified interface for interacting with RESTful APIs.") (license license:expat))) (define-public python-beren (package (name "python-beren") (version "0.7.0") (source (origin (method url-fetch) (uri (pypi-uri "beren" version)) (sha256 (base32 "1v3mdwfqsyza892zvs124ym9w1bkng1j56b7l4dwfjir3723xcgf")))) (build-system python-build-system) (arguments ;; The test tries to open a connection to a remote server. `(#:tests? #f)) (propagated-inputs (list python-apiron)) (home-page "https://github.com/teffalump/beren") (synopsis "REST client for Orthanc DICOM servers") (description "@code{beren} provides a REST client for Orthanc, a DICOM server.") (license license:gpl3+))) (define-public python-requests (package (name "python-requests") (version "2.28.1") (source (origin (method url-fetch) (uri (pypi-uri "requests" version)) (sha256 (base32 "10vrr7bijzrypvms3g2sgz8vya7f9ymmcv423ikampgy0aqrjmbw")))) (build-system python-build-system) (propagated-inputs (list python-certifi python-charset-normalizer python-idna python-urllib3)) (arguments ;; FIXME: Some tests require network access. '(#:tests? #f)) (home-page "http://python-requests.org/") (synopsis "Python HTTP library") (description "Requests is a Python HTTP client library. It aims to be easier to use than Python’s urllib2 library.") (license license:asl2.0))) (define-public python-requests-next (package (name "python-requests") (version "2.32.3") (source (origin (method url-fetch) (uri (pypi-uri "requests" version)) (sha256 (base32 "0q5742pnibwy74169kacin3dmqg9jzmzk7qab5aq5caffcbm8djm")))) (build-system python-build-system) (native-inputs (list nss-certs-for-test)) (propagated-inputs (list python-certifi python-charset-normalizer python-idna python-urllib3)) (arguments ;; FIXME: Some tests require network access. '(#:tests? #f)) (home-page "http://python-requests.org/") (synopsis "Python HTTP library") (description "Requests is a Python HTTP client library. It aims to be easier to use than Python’s urllib2 library.") (license license:asl2.0))) (define-public python-requests-kerberos (package (name "python-requests-kerberos") (version "0.14.0") ;; No tests in the PyPI tarball. (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/requests/requests-kerberos") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0s30pcnlir3j2jmf7yh065f294cf3x0x5i3ldskn8mm0a3657mv3")))) (build-system pyproject-build-system) (propagated-inputs (list python-cryptography python-pyspnego python-requests)) (native-inputs (list python-pytest python-pytest-mock)) (home-page "https://github.com/requests/requests-kerberos") (synopsis "Kerberos authentication handler for python-requests") (description "This package provides a Kerberos authentication handler for python-requests.") (license license:isc))) (define-public python-requests-unixsocket (package (name "python-requests-unixsocket") (version "0.2.0") (source (origin (method url-fetch) (uri (pypi-uri "requests-unixsocket" version)) (sha256 (base32 "1sn12y4fw1qki5gxy9wg45gmdrxhrndwfndfjxhpiky3mwh1lp4y")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (add-after 'unpack 'relax-requirements (lambda _ (substitute* "test-requirements.txt" (("(.*)==(.*)" _ name) (string-append name "\n"))))) (replace 'check (lambda* (#:key tests? inputs outputs #:allow-other-keys) ;; Avoid a deprecation error. (substitute* "pytest.ini" (("--pep8") "")) (when tests? (add-installed-pythonpath inputs outputs) (invoke "pytest" "-vv"))))))) (propagated-inputs (list python-pbr python-requests python-urllib3)) (native-inputs (list python-apipkg python-appdirs python-execnet python-packaging python-pep8 python-py python-pyparsing python-pytest python-pytest-cache python-pytest-pep8 python-six python-waitress)) (home-page "https://github.com/msabramo/requests-unixsocket") (synopsis "Talk HTTP via a UNIX domain socket") (description "This Python package lets you use the @code{requests} library to talk HTTP via a UNIX domain socket.") (license license:asl2.0))) (define-public python-requests_ntlm (package (name "python-requests_ntlm") (version "1.2.0") (source (origin (method url-fetch) (uri (pypi-uri "requests_ntlm" version)) (sha256 (base32 "1a0np7lk8ma1plv1s4aw5q9h2z3aljprkl9qsfypqcaf0zsqbhik")))) (build-system python-build-system) (propagated-inputs (list python-cryptography python-pyspnego python-requests)) (home-page "https://github.com/requests/requests-ntlm") (synopsis "NTLM authentication support for Requests") (description "This package allows for HTTP NTLM authentication using the requests library.") (license license:isc))) (define-public python-requests-mock (package (name "python-requests-mock") (version "1.8.0") (source (origin (method url-fetch) (uri (pypi-uri "requests-mock" version)) (sha256 (base32 "09nj8fmyj7xz2mgwyvbw0fl9zybmx2d3qd2hf529vvjc9s24d3z6")))) (build-system python-build-system) (propagated-inputs (list python-requests python-six)) (native-inputs (list python-pbr python-discover python-docutils python-fixtures python-mock python-purl python-pytest python-sphinx python-testrepository)) (home-page "https://requests-mock.readthedocs.org/") (synopsis "Mock out responses from the requests package") (description "This module provides a building block to stub out the HTTP requests portions of your testing code.") (license license:asl2.0))) (define-public python-requests-toolbelt (package (name "python-requests-toolbelt") (version "0.9.1") (source (origin (method url-fetch) (uri (pypi-uri "requests-toolbelt" version)) (sha256 (base32 "1h3gm88dcjbd7gm229a7x5qkkhnsqsjz0m0l2xyavm2ab3a8k04n")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (add-after 'unpack 'delete-problematic-tests (lambda _ ;; Fails because of expired certificate. (delete-file "tests/test_x509_adapter.py") ;; Fails due to networking (socket.gaierror: [Errno -2] ;; Name or service not known). (delete-file "tests/test_multipart_encoder.py")))))) (native-inputs (list python-betamax python-mock python-pytest)) (propagated-inputs (list python-requests)) (synopsis "Extensions to python-requests") (description "This is a toolbelt of useful classes and functions to be used with python-requests.") (home-page "https://github.com/requests/toolbelt/") (license license:asl2.0))) (define-public python-requests-ftp (package (name "python-requests-ftp") (version "0.3.1") (source (origin (method url-fetch) (uri (pypi-uri "requests-ftp" version)) (sha256 (base32 "0yh5v21v36dsjsgv4y9dx4mmz35741l5jf6pbq9w19d8rfsww13m")))) (build-system python-build-system) (propagated-inputs (list python-requests)) (home-page "https://github.com/Lukasa/requests-ftp") (synopsis "FTP Transport Adapter for Requests") (description "Requests-FTP is an implementation of a simple FTP transport adapter for use with the Requests library.") (license license:asl2.0))) (define-public python-aioftp (package (name "python-aioftp") (version "0.22.3") (source (origin (method url-fetch) (uri (pypi-uri "aioftp" version)) (sha256 (base32 "0w621mg956m9rn7v39jpwi4gpnpl90pprwl29cp640dahqqv38ms")))) (build-system pyproject-build-system) (native-inputs (list python-async-timeout python-pytest python-pytest-asyncio python-pytest-cov python-trustme)) (propagated-inputs (list python-siosocks)) (home-page "https://aioftp.readthedocs.io/") (synopsis "FTP client/server for asyncio in Python") (description "FTP client and server for asyncio (Python 3) Library implementing FTP protocol, both client and server for Python asyncio module. Supported commands as client: USER, PASS, ACCT, PWD, CWD, CDUP, MKD, RMD, MLSD, MLST, RNFR, RNTO, DELE, STOR, APPE, RETR, TYPE, PASV, ABOR, QUIT, REST, LIST (as fallback). Supported commands as server: USER, PASS, QUIT, PWD, CWD, CDUP, MKD, RMD, MLSD, LIST (non-standard), MLST, RNFR, RNTO, DELE, STOR, RETR, TYPE (\"I\" and \"A\"), PASV, ABOR, APPE, REST.") (license license:asl2.0))) (define-public python-msal (package (name "python-msal") (version "1.22.0") (home-page "https://github.com/AzureAD/microsoft-authentication-library-for-python") (source (origin (method git-fetch) ;; Pypi does not have tests. (uri (git-reference (url home-page) (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "1pgpf8fa0mdga69hr6i66mq2a2vyn8dlcf4fdzqmbgw2il9b37q6")))) (build-system python-build-system) (arguments ;; Tests (all?) rely on network access and only some can be disabled by ;; setting the environment variable TRAVIS_TAG. (list #:tests? #f)) (native-inputs (list python-mock)) (propagated-inputs (list python-cryptography python-pyjwt python-requests)) (synopsis "Microsoft Authentication Library (MSAL) for Python") (description "The Microsoft Authentication Library for Python enables applications to integrate with the Microsoft identity platform. It allows you to sign in users or apps with Microsoft identities (Azure AD, Microsoft Accounts and Azure AD B2C accounts) and obtain tokens to call Microsoft APIs such as Microsoft Graph or your own APIs registered with the Microsoft identity platform. It is built using industry standard OAuth2 and OpenID Connect protocols.") (license license:expat))) (define-public oauth2ms (let ((commit "a1ef0cabfdea57e9309095954b90134604e21c08") (revision "0")) (package (name "oauth2ms") (version (git-version "0.0.0" revision commit)) (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/harishkrupo/oauth2ms") (commit commit))) (file-name (git-file-name name version)) (sha256 (base32 "0dqi6n4npdrvb42r672n4sl1jl8z5lsk554fwiiihpj0faa9dx64")))) (build-system copy-build-system) (arguments (list #:install-plan #~`(("oauth2ms" "bin/oauth2ms") ("." #$(string-append "share/doc/" name "-" version "/") #:include-regexp ("\\.org$"))) #:phases #~(modify-phases %standard-phases (add-after 'install 'wrap-pythonpath (lambda* (#:key inputs outputs #:allow-other-keys) (let ((path (getenv "GUIX_PYTHONPATH"))) (wrap-program (string-append #$output "/bin/oauth2ms") `("GUIX_PYTHONPATH" ":" prefix (,path))))))))) (inputs (list bash-minimal python python-gnupg python-msal python-pyxdg)) (home-page "https://github.com/harishkrupo/oauth2ms") (synopsis "XOAUTH2 compatible Microsoft Office 365 token fetcher") (description "Oauth2ms can be used to fetch OAuth 2.0 tokens from the Microsoft Identity endpoint. Additionally, it can encode the token in the XOAUTH2 format to be used as authentication in IMAP mail servers.") (license license:asl2.0)))) (define-public python-oauthlib (package (name "python-oauthlib") (version "3.1.0") (source (origin (method url-fetch) (uri (pypi-uri "oauthlib" version)) (sha256 (base32 "12gqnabwck30gdlpwm6af3s28qm9p2yc7b1w8s4fk9ncbz1irr5y")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda _ (invoke "pytest" "-vv")))))) (native-inputs (list python-pytest python-pytest-cov python-mock)) (propagated-inputs (list python-cryptography python-pyjwt python-blinker)) (home-page "https://github.com/oauthlib/oauthlib") (synopsis "OAuth implementation for Python") (description "Oauthlib is a generic, spec-compliant, thorough implementation of the OAuth request-signing logic.") (license license:bsd-3))) (define-public python-rauth (package (name "python-rauth") (version "0.7.3") (source (origin (method url-fetch) (uri (pypi-uri "rauth" version)) (sha256 (base32 "02kv8w8l98ky223avyq7vw7x1f2ya9chrm59r77ylq45qb0xnk2j")))) (build-system python-build-system) (arguments `(#:test-target "check")) (propagated-inputs (list python-requests)) (home-page "https://github.com/litl/rauth") (synopsis "Python library for OAuth 1.0/a, 2.0, and Ofly") (description "Rauth is a Python library for OAuth 1.0/a, 2.0, and Ofly. It also provides service wrappers for convenient connection initialization and authenticated session objects providing things like keep-alive.") (license license:expat))) (define-public python-unalix (package (name "python-unalix") (version "0.9") (source (origin ;; There's only a wheel on PyPI. (method git-fetch) (uri (git-reference (url "https://github.com/AmanoTeam/Unalix") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0h8wc1axv26h753a8brc6dccqndx005c2bhr09gwg5c1hj9zsfml")))) (build-system python-build-system) (native-inputs (list python-pytest)) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest"))))))) (home-page "https://pypi.org/project/Unalix/") (synopsis "Python library for removing tracking fields from URLs") (description "Unalix is a library written in Python implementing the specification used by the @url{https://github.com/ClearURLs/Addon, ClearURLs} addon for removing tracking fields from URLs.") (license license:lgpl3+))) (define-public python-urllib3 (package (name "python-urllib3") (version "1.26.15") (source (origin (method url-fetch) (uri (pypi-uri "urllib3" version)) (sha256 (base32 "01dkqv0rsjqyw4wrp6yj8h3bcnl7c678qkj845596vs7p4bqff4a")))) (build-system python-build-system) (arguments `(#:tests? #f)) (propagated-inputs (append ;; These 5 inputs are used to build urrlib3[secure] (list python-certifi) (if (member (%current-system) (package-transitive-supported-systems python-cryptography)) (list python-cryptography) '()) (list python-idna) (if (member (%current-system) (package-transitive-supported-systems python-pyopenssl)) (list python-pyopenssl) '()) (list python-pysocks))) (home-page "https://urllib3.readthedocs.io/") (synopsis "HTTP library with thread-safe connection pooling") (description "Urllib3 supports features left out of urllib and urllib2 libraries. It can reuse the same socket connection for multiple requests, it can POST files, supports url redirection and retries, and also gzip and deflate decoding.") (license license:expat))) (define-public python-urllib3-next (package (name "python-urllib3") (version "1.26.17") (source (origin (method url-fetch) (uri (pypi-uri "urllib3" version)) (sha256 (base32 "08fzhaf77kbjj5abpl9xag6fpfxkdp1k5s7sqd3ayacdq91a5mi4")))) (build-system python-build-system) (arguments `(#:tests? #f)) (propagated-inputs (append ;; These 5 inputs are used to build urrlib3[secure] (list python-certifi) (if (member (%current-system) (package-transitive-supported-systems python-cryptography)) (list python-cryptography) '()) (list python-idna) (if (member (%current-system) (package-transitive-supported-systems python-pyopenssl)) (list python-pyopenssl) '()) (list python-pysocks))) (home-page "https://urllib3.readthedocs.io/") (synopsis "HTTP library with thread-safe connection pooling") (description "Urllib3 supports features left out of urllib and urllib2 libraries. It can reuse the same socket connection for multiple requests, it can POST files, supports url redirection and retries, and also gzip and deflate decoding.") (license license:expat))) (define-public awscli (package ;; Note: updating awscli typically requires updating botocore as well. (name "awscli") (version "1.22.90") (source (origin (method url-fetch) (uri (pypi-uri name version)) (sha256 (base32 "0ky4ax4xh7s8w1l0hwc7w9ii8afvh9nib3kz09qhiqdinxzrlv54")))) (build-system python-build-system) (arguments ;; FIXME: The 'pypi' release does not contain tests. '(#:tests? #f #:phases (modify-phases %standard-phases (add-after 'unpack 'use-recent-pyyaml (lambda _ (substitute* '("awscli.egg-info/requires.txt" "setup.cfg" "setup.py") (("<5.5") "<=6")))) (add-after 'unpack 'fix-reference-to-groff (lambda* (#:key inputs #:allow-other-keys) (substitute* "awscli/help.py" (("if not self._exists_on_path\\('groff'\\):") "") (("raise ExecutableNotFoundError\\('groff'\\)") "") (("cmdline = \\['groff'") (string-append "cmdline = ['" (search-input-file inputs "bin/groff") "'")))))))) (inputs (list groff python-colorama-for-awscli python-botocore python-s3transfer python-docutils-0.15 python-pyyaml python-rsa)) (home-page "https://aws.amazon.com/cli/") (synopsis "Command line client for AWS") (description "AWS CLI provides a unified command line interface to the Amazon Web Services (AWS) API.") (license license:asl2.0))) (define-public awscli-2 (package (inherit awscli) (name "awscli") (version "2.2.0") (source (origin (method url-fetch) (uri (pypi-uri (string-append name "v2") version)) (sha256 (base32 "0g1icsy2l4n540gnhliypy830dfp08hpfc3rk12dlxgc9v3ra4wl")))) (arguments ;; FIXME: The 'pypi' release does not contain tests. '(#:tests? #f)) (inputs (list python-importlib-resources python-executor)))) (define-public python-wsgiproxy2 (package (name "python-wsgiproxy2") (version "0.4.6") (source (origin (method url-fetch) (uri (pypi-uri "WSGIProxy2" version ".tar.gz")) (sha256 (base32 "16jch5nic0hia28lps3c678s9s9mjdq8n87igxncjg0rpi5adqnf")))) (build-system python-build-system) (native-inputs (list python-webtest)) (propagated-inputs (list python-requests python-six python-urllib3 python-webob)) (home-page "https://github.com/gawel/WSGIProxy2/") (synopsis "WSGI Proxy with various http client backends") (description "WSGI turns HTTP requests into WSGI function calls. WSGIProxy turns WSGI function calls into HTTP requests. It also includes code to sign requests and pass private data, and to spawn subprocesses to handle requests.") (license license:expat))) (define-public python-pastedeploy (package (name "python-pastedeploy") (version "2.1.1") (source (origin (method url-fetch) (uri (pypi-uri "PasteDeploy" version)) (sha256 (base32 "05s88qdjdwd9d9qs13fap7nqgxs7qs5qfzzjbrc5va13k2mxdskd")))) (build-system python-build-system) (arguments '(#:test-target "pytest")) (native-inputs (list python-pytest python-pytest-runner)) (home-page "https://pylonsproject.org/") (synopsis "Load, configure, and compose WSGI applications and servers") (description "This tool provides code to load WSGI applications and servers from URIs; these URIs can refer to Python Eggs for INI-style configuration files. Paste Script provides commands to serve applications based on this configuration file.") (license license:expat))) (define-public python-webtest (package (name "python-webtest") (version "2.0.35") (source (origin (method url-fetch) (uri (pypi-uri "WebTest" version)) (sha256 (base32 "11xhgdj251zkvz5w30fvspii08ki2vrpr1im9sph1wmlnasnihda")))) (build-system python-build-system) (arguments ;; Tests require python-pyquery, which creates a circular dependency. `(#:tests? #f)) (propagated-inputs (list python-waitress python-webob python-six python-beautifulsoup4)) (home-page "https://docs.pylonsproject.org/projects/webtest/") (synopsis "Helper to test WSGI applications") (description "Webtest allows you to test your Python web applications without starting an HTTP server. It supports anything that supports the minimum of WSGI.") (license license:expat))) (define-public python-flask (package (name "python-flask") (version "2.1.1") (source (origin (method url-fetch) (uri (pypi-uri "Flask" version)) (sha256 (base32 "1j0rjly2yhbm566lq2s8543fs7fz86f77abps539djcfalzbvjd8")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "-vv" "tests"))))))) (native-inputs (list python-pytest)) (propagated-inputs (list python-asgiref ;async extra python-click python-importlib-metadata python-itsdangerous python-jinja2 python-werkzeug)) (home-page "https://palletsprojects.com/p/flask/") (synopsis "Microframework based on Werkzeug, Jinja2 and good intentions") (description "Flask is a micro web framework based on the Werkzeug toolkit and Jinja2 template engine. It is called a micro framework because it does not presume or force a developer to use a particular tool or library.") (license license:bsd-3))) (define-public python-flask-compress (package (name "python-flask-compress") (version "1.13") (source (origin (method url-fetch) (uri (pypi-uri "Flask-Compress" version)) (sha256 (base32 "178jzz6jxlxllcjqamzh5q7ahfh90m5cl1il9vmjs3xhz65z35pf")))) (build-system pyproject-build-system) (propagated-inputs (list python-brotli python-flask)) (native-inputs (list python-setuptools-scm)) (home-page "https://github.com/colour-science/flask-compress") (synopsis "Compress responses in a Flask app") (description "This package lets you compress Flask application responses and static files with gzip, deflate or brotli. Flask-Compress both adds the various headers required for a compressed response and compresses the response data.") (license license:expat))) (define-public python-flask-seasurf (package (name "python-flask-seasurf") (version "1.1.1") (source (origin (method url-fetch) (uri (pypi-uri "Flask-SeaSurf" version)) (sha256 (base32 "1aaib4n27q0f2alp87mhv3f79vg7qckp71rphbd0mb39qw470lsl")))) (build-system pyproject-build-system) (arguments (list #:tests? #false)) ;there are none (propagated-inputs (list python-flask)) (home-page "https://github.com/maxcountryman/flask-seasurf/") (synopsis "CSRF extension for Flask") (description "SeaSurf is a Flask extension for preventing cross-site request forgery (CSRF). CSRF attacks are problematic because the mechanism they use is relatively easy to exploit. This extension attempts to aid you in securing your application from such attacks. This extension is based on the Django middleware.") (license license:bsd-3))) (define-public python-flask-wtf (package (name "python-flask-wtf") (version "1.0.1") (source (origin (method url-fetch) (uri (pypi-uri "Flask-WTF" version)) (sha256 (base32 "1jd614662r6ifh4svs8zfwm4k8bal5z3n6pq607bas8gxrpmrzil")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda _ (invoke "pytest" "-vv")))))) (propagated-inputs (list python-flask python-itsdangerous python-wtforms)) (native-inputs (list python-pytest)) (home-page "https://github.com/lepture/flask-wtf") (synopsis "Simple integration of Flask and WTForms") (description "Flask-WTF integrates Flask and WTForms, including CSRF, file upload, and reCAPTCHA.") (license license:bsd-3))) (define-public python-flask-multistatic (package (name "python-flask-multistatic") (version "1.0") (source (origin (method url-fetch) (uri (pypi-uri "flask-multistatic" version)) (sha256 (base32 "0p4v50rwv64wcd0zlq7rzl4waprwr4hj19s3cgf1isywa7jcisgm")))) (build-system python-build-system) (propagated-inputs (list python-flask)) (home-page "https://pagure.io/flask-multistatic") (synopsis "Flask plugin to allow overriding static files") (description "@code{flask-multistatic} is a flask plugin that adds support for overriding static files.") (license license:gpl3+))) (define-public python-cookies (package (name "python-cookies") (version "2.2.1") (source (origin (method url-fetch) (uri (pypi-uri "cookies" version)) (sha256 (base32 "13pfndz8vbk4p2a44cfbjsypjarkrall71pgc97glk5fiiw9idnn")))) (build-system python-build-system) (arguments `(;; test are broken: https://gitlab.com/sashahart/cookies/issues/3 #:tests? #f)) (native-inputs (list python-pytest)) (synopsis "HTTP cookie parser and renderer") (description "A RFC 6265-compliant HTTP cookie parser and renderer in Python.") (home-page "https://gitlab.com/sashahart/cookies") (license license:expat))) (define-public python-responses (package (name "python-responses") (version "0.22.0") (source (origin (method url-fetch) (uri (pypi-uri "responses" version)) (sha256 (base32 "0bhhffwl0zqin4xc89nc97ynzr7l3j4b8rjqk9w9flnj2cmcnsir")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "-v"))))))) (native-inputs (list python-pytest python-pytest-asyncio python-pytest-httpserver)) (propagated-inputs (list python-requests python-toml python-types-toml python-typing-extensions python-urllib3)) (home-page "https://github.com/getsentry/responses") (synopsis "Utility for mocking out the `requests` Python library") (description "A utility library for mocking out the `requests` Python library.") (license license:asl2.0))) (define-public python-grequests (package (name "python-grequests") (version "0.3.0") (source (origin (method url-fetch) (uri (pypi-uri "grequests" version)) (sha256 (base32 "1j9icncllbkv7x5719b20mx670c6q1jrdx1sakskkarvx3pc8h8g")))) (build-system python-build-system) (propagated-inputs (list python-gevent python-requests)) (native-inputs (list python-nose python-zope-interface python-zope-event)) (home-page "https://github.com/kennethreitz/grequests") (synopsis "Python library for asynchronous HTTP requests") (description "GRequests is a Python library that allows you to use @code{Requests} with @code{Gevent} to make asynchronous HTTP Requests easily") (license license:bsd-2))) (define-public python-gwebsockets (package (name "python-gwebsockets") (version "0.7") (source (origin (method url-fetch) (uri (pypi-uri "gwebsockets" version)) (sha256 (base32 "0kgq7wssz0mrhxdafkfc9prj0qjv9z0lyivyqvjvjnnypg54di7m")))) (build-system python-build-system) (propagated-inputs (list python-pygobject)) (home-page "https://github.com/sugarlabs/gwebsockets") (synopsis "GLib based websockets server") (description "This package provides a websocket server written in Python. It uses GIO for network communication and hence it easily integrates with the GLib mainloop.") (license license:asl2.0))) (define-public python-dpkt (package (name "python-dpkt") (version "1.9.4") (source (origin (method url-fetch) (uri (pypi-uri "dpkt" version)) (sha256 (base32 "1d28r8pmhzjjd6hrn1xcddinfhwv8lcl1s59ygmqa8kfmz5pkrgl")))) (build-system python-build-system) (home-page "https://github.com/kbandla/dpkt") (synopsis "Packet generator and parser for TCP/IP protocols") (description "The dpkt module is a fast, simple packet generator and parser for the basic TCP/IP protocols.") (license license:bsd-3))) (define-public python-geventhttpclient (package (name "python-geventhttpclient") (version "2.0.9") (source (origin (method url-fetch) (uri (pypi-uri "geventhttpclient" version)) (sha256 (base32 "04qmcc7qpnif70ph61339dcld4g107fkhpa0gdmbs8z98v9kkg4a")) (modules '((guix build utils))) (snippet '(begin ;; Delete pre-compiled files. (for-each delete-file (find-files "src/geventhttpclient" ".*\\.pyc")))))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (add-after 'unpack 'delete-network-tests (lambda _ (delete-file "src/geventhttpclient/tests/test_client.py"))) (add-after 'unpack 'fix-compatibility-issue ;; See: https://github.com/gwik/geventhttpclient/issues/137. (lambda _ (substitute* "src/geventhttpclient/tests/test_ssl.py" ((".*sock.last_seen_sni = None.*") "")))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "src/geventhttpclient/tests" "-v" ;; Append the test modules to sys.path to avoid ;; namespace conflict which breaks SSL tests. "--import-mode=append"))))))) (native-inputs (list nss-certs-for-test python-dpkt python-pytest)) (propagated-inputs (list python-brotli python-certifi python-gevent python-six python-urllib3)) (home-page "https://github.com/geventhttpclient/geventhttpclient") (synopsis "HTTP client library for gevent") (description "@code{python-geventhttpclient} is a high performance, concurrent HTTP client library for python using @code{gevent}.") (license license:expat))) (define-public python-requests-oauthlib (package (name "python-requests-oauthlib") (version "1.2.0") (source (origin (method url-fetch) (uri (pypi-uri "requests-oauthlib" version)) (sha256 (base32 "0mrglgcvq7k48pf27s4gifdk0za8xmgpf55jy15yjj471qrk6rdx")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases ;; removes tests that require network access (add-before 'check 'pre-check (lambda _ (delete-file "tests/test_core.py") #t))))) (native-inputs (list python-pyjwt python-requests-mock python-mock)) (propagated-inputs (list python-oauthlib python-requests)) (home-page "https://github.com/requests/requests-oauthlib") (synopsis "OAuthlib authentication support for Requests") (description "Requests-OAuthlib uses the Python Requests and OAuthlib libraries to provide an easy-to-use Python interface for building OAuth1 and OAuth2 clients.") (license license:isc))) (define-public python-url (package (name "python-url") (version "0.2.0") (source (origin (method url-fetch) (uri (pypi-uri "url" version)) (sha256 (base32 "0v879yadcz9qxfl41ak6wkga1kimp9cflla9ddz03hjjvgkqy5ki")))) (build-system python-build-system) (propagated-inputs (list python-publicsuffix)) (native-inputs (list python-coverage python-nose)) (arguments `(#:tests? #f)) ; FIXME: tests fail with "ImportError: No module named 'tests'" (home-page "https://github.com/seomoz/url-py") (synopsis "URL Parsing") (description "Library for parsing urls.") (license license:expat))) (define-public python-cachecontrol (package (name "python-cachecontrol") (version "0.12.10") (source (origin (method git-fetch) ;; Pypi does not have tests. (uri (git-reference (url "https://github.com/ionrock/cachecontrol") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0fviacb13h72l5c77p35lgr6kvlidfdb9xsicg3v6lblmp9cn2ws")))) (build-system python-build-system) (arguments ;; Versions > 0.11.6 depend on CherryPy for testing. ;; It's too much work to package CherryPy for now. `(#:tests? #f)) (propagated-inputs (list python-requests python-msgpack python-lockfile)) (home-page "https://github.com/ionrock/cachecontrol") (synopsis "The httplib2 caching algorithms for use with requests") (description "CacheControl is a port of the caching algorithms in @code{httplib2} for use with @code{requests} session objects.") (license license:asl2.0))) (define-public python-cachecontrol-0.11 (package (inherit python-cachecontrol) (name "python-cachecontrol") (version "0.11.7") (source (origin (method url-fetch) (uri (pypi-uri "CacheControl" version)) (sha256 (base32 "07jsfhlbcwgqg6ayz8nznzaqg5rmxqblbzxz1qvg5wc44pcjjy4g")))))) (define-public python-betamax (package (name "python-betamax") (version "0.8.1") (source (origin (method url-fetch) (uri (pypi-uri "betamax" version)) (sha256 (base32 "1hki1c2vs7adq7zr56wi6i5bhrkia4s2ywpv2c98ibnczz709w2v")))) (build-system python-build-system) (arguments '(;; Many tests fail because they require networking. #:tests? #f)) (propagated-inputs (list python-requests)) (home-page "https://github.com/sigmavirus24/betamax") (synopsis "Record HTTP interactions with python-requests") (description "Betamax will record your test suite's HTTP interactions and replay them during future tests. It is designed to work with python-requests.") (license license:expat))) (define-public python-betamax-matchers (package (name "python-betamax-matchers") (version "0.4.0") (source (origin (method url-fetch) (uri (pypi-uri "betamax-matchers" version)) (sha256 (base32 "07qpwjyq2i2aqhz5iwghnj4pqr2ys5n45v1vmpcfx9r5mhwrsq43")))) (build-system python-build-system) (propagated-inputs (list python-betamax python-requests-toolbelt)) (home-page "https://github.com/sigmavirus24/betamax_matchers") (synopsis "VCR imitation for python-requests") (description "@code{betamax-matchers} provides a set of Matchers for Betamax.") (license license:asl2.0))) (define-public python-betamax-serializers (package (name "python-betamax-serializers") (version "0.2.1") (source (origin (method url-fetch) (uri (pypi-uri "betamax-serializers" version)) (sha256 (base32 "0ja9isbjmzzhxdj69s0kdsvw8nkp073w6an6a4liy5vk3fdl2p1l")))) (build-system python-build-system) (propagated-inputs (list python-betamax python-pyyaml)) (synopsis "Set of third-party serializers for Betamax") (description "Betamax-Serializers are an experimental set of Serializers for Betamax that may possibly end up in the main package.") (home-page "https://gitlab.com/betamax/serializers") (license license:asl2.0))) (define-public python-s3transfer (package (name "python-s3transfer") (version "0.5.0") (source (origin (method url-fetch) (uri (pypi-uri "s3transfer" version)) (sha256 (base32 "0k6sc956yrrv9b4laa0r79jhxajpyxr21jcd1ka8m1n53lz85vah")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? ;; Some of the 'integration' tests require network access or ;; login credentials. (invoke "nosetests" "--exclude=integration"))))))) (native-inputs (list python-docutils python-mock python-nose)) (propagated-inputs (list python-botocore python-urllib3)) (synopsis "Amazon S3 Transfer Manager") (description "S3transfer is a Python library for managing Amazon S3 transfers.") (home-page "https://github.com/boto/s3transfer") (license license:asl2.0))) (define-public python-flask-jwt (package (name "python-flask-jwt") (version "0.3.2") (source (origin (method url-fetch) (uri (pypi-uri "Flask-JWT" version)) (sha256 (base32 "1bfh7cr0sf65rn4h1q67472y6ml9s8c4k0xxfhrwvwg0plpngh29")))) (build-system pyproject-build-system) (arguments (list #:phases '(modify-phases %standard-phases (add-after 'unpack 'compatibility (lambda _ (substitute* "setup.cfg" (("\\[pytest\\]") "[tool:pytest]")) (substitute* "requirements.txt" (("PyJWT>=1.4.0,<1.5.0") "PyJWT>=2.0.0")) (substitute* '("tests/test_jwt.py" "flask_jwt/__init__.py") (("access_token.decode\\('utf-8'\\)") "access_token"))))))) (propagated-inputs (list python-flask python-pyjwt)) (native-inputs (list python-pytest)) (home-page "https://github.com/mattupstate/flask-jwt") (synopsis "JWT token authentication for Flask apps") (description "This package implements JWT token authentication for Flask apps.") (license license:expat))) (define-public python-flask-restful (package (name "python-flask-restful") (version "0.3.9") (source (origin (method url-fetch) (uri (pypi-uri "Flask-RESTful" version)) (sha256 (base32 "0gm5dz088v3d2k1dkcp9b3nnqpkk0fp2jly870hijj2xhc5nbv6c")))) (build-system pyproject-build-system) (arguments ;; This test fails because '/' is not 'http://localhost/'. (list #:test-flags '(list "-k" "not test_redirect"))) (propagated-inputs (list python-aniso8601 python-flask python-pytz)) (native-inputs (list python-blinker python-mock python-pytest)) (home-page "https://www.github.com/flask-restful/flask-restful/") (synopsis "Flask module for creating REST APIs") (description "This package contains a Flask module for creating REST APIs.") (license license:bsd-3))) (define-public python-flask-basicauth (package (name "python-flask-basicauth") (version "0.2.0") (source (origin (method url-fetch) (uri (pypi-uri "Flask-BasicAuth" version)) (sha256 (base32 "1zq1spkjr4sjdnalpp8wl242kdqyk6fhbnhr8hi4r4f0km4bspnz")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'fix-imports (lambda _ (substitute* '("docs/index.rst" "docs/conf.py" "flask_basicauth.py" "test_basicauth.py") (("flask\\.ext\\.basicauth") "flask_basicauth")) #t))))) (propagated-inputs (list python-flask)) (home-page "https://github.com/jpvanhal/flask-basicauth") (synopsis "HTTP basic access authentication for Flask") (description "This package provides HTTP basic access authentication for Flask.") (license license:bsd-3))) (define-public python-flask-htpasswd (package (name "python-flask-htpasswd") (version "0.3.1") (source (origin (method url-fetch) (uri (pypi-uri "flask-htpasswd" version)) (sha256 (base32 "14q1y1y9i9bhabdnwd25jqzc4ljli23smxfyyh8abxz1vq93pxra")))) (build-system python-build-system) (propagated-inputs (list python-flask python-itsdangerous python-passlib python-tox)) (home-page "https://github.com/carsongee/flask-htpasswd") (synopsis "Basic authentication via htpasswd files in Flask applications") (description "This package provides Basic authentication via @file{htpasswd} files and access_token authentication in Flask applications.") (license license:bsd-3))) (define-public python-flask-sqlalchemy (package (name "python-flask-sqlalchemy") (version "2.5.1") (source (origin (method url-fetch) (uri (pypi-uri "Flask-SQLAlchemy" version)) (sha256 (base32 "04jrx4sjrz1b20j38qk4qin975xwz30krzq59rfv3b3w7ss49nib")))) (build-system python-build-system) (propagated-inputs (list python-flask python-sqlalchemy)) (home-page "https://github.com/mitsuhiko/flask-sqlalchemy") (synopsis "Module adding SQLAlchemy support to your Flask application") (description "This package adds SQLAlchemy support to your Flask application.") (license license:bsd-3))) (define-public python-flask-restful-swagger (package (name "python-flask-restful-swagger") (version "0.20.1") (source (origin (method url-fetch) (uri (pypi-uri "flask-restful-swagger" version)) (sha256 (base32 "1p66f98b5zpypnnz56pxpbirchqj6aniw6qyrp8h572l0dn9xlvq")))) (build-system python-build-system) (arguments '(#:tests? #f)) ;no tests (propagated-inputs (list python-flask-restful python-six)) (home-page "https://github.com/rantav/flask-restful-swagger") (synopsis "Extract Swagger specs from Flask-Restful projects") (description "This package lets you extract Swagger API documentation specs from your Flask-Restful projects.") (license license:expat))) (define-public python-htmlmin (package (name "python-htmlmin") (version "0.1.12") (source (origin (method url-fetch) (uri (pypi-uri "htmlmin" version)) (sha256 (base32 "0y51xhabw6x8jk8k93xl8vznshpz3jb6l28075r5sjip613fzhah")))) (arguments `(#:tests? #f)) ; no tests (build-system python-build-system) (home-page "https://htmlmin.readthedocs.org/en/latest/") (synopsis "HTML minifier") (description "@code{htmlmin} is an HTML minifier that just works. It comes with safe defaults and easily configurable options.") (license license:bsd-3))) (define-public python-flask-htmlmin (package (name "python-flask-htmlmin") (version "1.2") (source (origin (method url-fetch) (uri (pypi-uri "Flask-HTMLmin" version)) (sha256 (base32 "1n6zlq72kakkw0z2jpq6nh74lfsmxybm4g053pwhc14fbr809348")))) (propagated-inputs (list python-flask python-htmlmin)) (build-system python-build-system) (home-page "https://github.com/hamidfzm/Flask-HTMLmin") (synopsis "HTML response minifier for Flask") (description "Minify @code{text/html} MIME type responses when using @code{Flask}.") (license license:bsd-3))) (define-public python-jsmin (package (name "python-jsmin") (version "3.0.1") (source (origin (method url-fetch) (uri (pypi-uri "jsmin" version)) (sha256 (base32 "1z1brjsvni0260bypldkl8a05sgp0qk18x560zl44igr3q99m5f0")))) (build-system python-build-system) (home-page "https://github.com/tikitu/jsmin/") (synopsis "Python JavaScript minifier") (description "@code{jsmin} is a JavaScript minifier, usable from both Python code and on the command line.") (license license:expat))) (define-public python-flask-login (package (name "python-flask-login") (version "0.6.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/maxcountryman/flask-login") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "12yw01ccgjn9c88cbkrd6k1ykjxd8fxip2b1isvxjirphnlqhn9g")))) (build-system python-build-system) (arguments (list #:phases #~(modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "-vv" "-c" "/dev/null"))))))) (propagated-inputs (list python-flask)) (native-inputs ;; For tests. (list python-blinker python-mock python-pytest python-semantic-version python-werkzeug)) (home-page "https://github.com/maxcountryman/flask-login") (synopsis "User session management for Flask") (description "@code{Flask-Login} provides user session management for Flask. It handles the common tasks of logging in, logging out, and remembering your users' sessions over extended periods of time.") (license license:expat))) (define-public python-oauth2client (package (name "python-oauth2client") (version "4.0.0") (source (origin (method url-fetch) (uri (pypi-uri "oauth2client" version)) (sha256 (base32 "1irqqap2zibysf8dba8sklfqikia579srd0phm5n754ni0h59gl0")))) (build-system python-build-system) (arguments `(#:tests? #f)) (propagated-inputs (list python-httplib2 python-pyasn1 python-pyasn1-modules python-pyparsing python-rsa python-six)) (home-page "https://github.com/google/oauth2client/") (synopsis "OAuth 2.0 client library") (description "@code{python-oauth2client} provides an OAuth 2.0 client library for Python") (license license:asl2.0))) (define-public python-flask-oidc (package (name "python-flask-oidc") (version "1.4.0") (source (origin (method url-fetch) (uri (pypi-uri "flask-oidc" version)) (sha256 (base32 "0klgwpn2iy5y7011xh2c8zkryxdwkpxh7qjs3hp5cynl748ia4hc")))) (build-system python-build-system) (arguments (list #:phases #~(modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "nosetests"))))))) (propagated-inputs (list python-flask python-itsdangerous python-oauth2client python-six)) (native-inputs (list python-nose python-mock)) (home-page "https://github.com/puiterwijk/flask-oidc") (synopsis "OpenID Connect extension for Flask") (description "@code{python-flask-oidc} provides an OpenID Connect extension for Flask.") (license license:bsd-2))) (define-public python-webassets (package (name "python-webassets") (version "2.0") (source (origin (method url-fetch) (uri (pypi-uri "webassets" version)) (sha256 (base32 "1kc1042jydgk54xpgcp0r1ib4gys91nhy285jzfcxj3pfqrk4w8n")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (add-before 'check 'adjust-tests (lambda _ ;; Fix for Python 3.9 compatibility. (substitute* "tests/test_script.py" (("self\\.t\\.isAlive") "self.t.is_alive")) ;; This test requires 'postcss' and 'babel' which are ;; not yet available in Guix. (delete-file "tests/test_filters.py"))) (replace 'check (lambda _ (invoke "pytest" "-vv")))))) (native-inputs (list python-jinja2 python-mock python-nose python-pytest)) (home-page "https://github.com/miracle2k/webassets") (synopsis "Media asset management") (description "Merges, minifies and compresses Javascript and CSS files, supporting a variety of different filters, including YUI, jsmin, jspacker or CSS tidy. Also supports URL rewriting in CSS files.") (license license:bsd-2))) (define-public python-cssmin (package (name "python-cssmin") (version "0.2.0") (source (origin (method url-fetch) (uri (pypi-uri "cssmin" version)) (sha256 (base32 "1dk723nfm2yf8cp4pj785giqlwv42l0kj8rk40kczvq1hk6g04p0")))) (build-system python-build-system) (home-page "https://github.com/zacharyvoase/cssmin") (synopsis "Python port of the YUI CSS Compressor") (description "Python port of the YUI CSS Compressor.") (license (list license:expat license:bsd-3)))) (define-public python-elasticsearch (package (name "python-elasticsearch") (version "7.13.4") (source (origin (method url-fetch) (uri (pypi-uri "elasticsearch" version)) (sha256 (base32 "1q38w9nh2j2yi82d8rhzb57597l4lq5zx7xzfg45xf7ffrgsipaj")))) (build-system python-build-system) (propagated-inputs (list python-certifi python-urllib3)) (arguments ;; tests require the test_elasticsearch module but it is not distributed. `(#:tests? #f)) (home-page "https://github.com/elastic/elasticsearch-py") (synopsis "Low-level client for Elasticsearch") (description "Official low-level client for Elasticsearch. Its goal is to provide common ground for all Elasticsearch-related code in Python; because of this it tries to be opinion-free and very extendable.") (license license:expat))) (define-public python-engineio (package (name "python-engineio") (version "4.0.1") (source (origin (method url-fetch) (uri (pypi-uri "python-engineio" version)) (sha256 (base32 "0xqkjjxbxakz9fd7v94rkr2r5r9nrkap2c3gf3abbd0j6ld5qmxv")))) (build-system python-build-system) (propagated-inputs (list python-aiohttp python-requests python-websocket-client)) (arguments '(#:tests? #f)) ; Tests not included in release tarball. (home-page "https://github.com/miguelgrinberg/python-engineio/") (synopsis "Engine.IO server") (description "Python implementation of the Engine.IO realtime client and server.") (license license:expat))) (define-public epicyon ;; The software is still in development but stopped making official releases ;; after 1.3.0. (let ((revision "0") (commit "1b984f9a30d1e83c068bab357b3a08b409634341")) (package (name "epicyon") (version (git-version "1.3.0" revision commit)) (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/bashrc2/epicyon") (commit commit))) (file-name (string-append name "-" version)) (sha256 (base32 "0ki2290rsc432cba30pmiv63iakdnz15ayy05sj9xgj9brjmxdqi")))) (build-system pyproject-build-system) (arguments (list #:phases #~(modify-phases %standard-phases (add-after 'unpack 'fix-requirements (lambda _ (substitute* '("setup.cfg") ;; Loosen version requirements. (("^(\\s+(cryptography|idna|pillow))([^\\S].*)?\n$" _ dep) (string-append dep "\n")) ;; Fix name: `socks' -> `python-socks'. (("^(\\s+)socks([^\\S].*)?\n$" _ ind) (string-append ind "python-socks\n"))))) (add-after 'unpack 'add-missing-package-data (lambda _ (substitute* '("setup.cfg") (("^(\\s)+\\*\\.txt\n$" all ind) (string-append ;; Epicyon's setup.cfg is outdated and the ;; `[options.package_data]' section doesn't list some ;; necessary data files/directories. We add the ;; required missing ones here while omitting the ones ;; not used by the daemon (`README*` files, ;; directories `architecture/', `deploy/', `gemini/' ;; and `scripts/', etc.). all ind "default_about.md\n" ind "default_tos.md\n" ind "cwlists/**\n" ind "data/**\n" ind "defaultwelcome/**\n" ind "manual/**\n" ind "ontology/**\n" ind "specification/**\n"))))) (add-after 'unpack 'patch-program-names (lambda* (#:key inputs #:allow-other-keys) (let ((exiftool (assoc-ref inputs "perl-image-exiftool")) (imagemagick (assoc-ref inputs "imagemagick"))) (substitute* '("media.py" "person.py") (("'(/usr/bin/)?(exiftool|convert|mogrify)" _ _ tool) (format #f "'~a/bin/~a" (if (string= tool "exiftool") exiftool imagemagick) tool)))))) (add-after 'unpack 'add-epicyon-entry-point (lambda _ (define (append-to-file filename text) (let ((port (open-file filename "a"))) (display text port) (close-port port))) (append-to-file "setup.cfg" " [options.entry_points] console_scripts = epicyon = epicyon:_guix_main ") (substitute* "epicyon.py" (("^if __name__ == .__main__.:\n$") "def _guix_main():\n")) ;; Some of the tests check if there are no unused ;; functions, we need _guix_main() to be used somewhere ;; besides the entry point. (append-to-file "epicyon.py" " if __name__ == '__main__': _guix_main() "))) (add-after 'unpack 'skip-networked-test-during-build (lambda _ (substitute* "tests.py" (("^(\\s+)print\\(.test_site_is_active.\\)\n$" all ind) (string-append all ind "if os.environ['HOME'] == '/homeless-shelter':\n" ind ind "print('...skipped...')\n" ind ind "return\n"))))) (add-after 'install 'remove-useless-scripts ;; Those are used for hosting through tor or i2p under a ;; systemd-based distro. (lambda _ (for-each (lambda (script) (delete-file (format #f "~a/bin/~a" #$output script))) '("i2p" "onion")))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke (format #f "~a/bin/epicyon" #$output) "--tests"))))))) (inputs (list imagemagick perl-image-exiftool python-cryptography python-dateutil python-django-timezone-field python-idna python-numpy python-pillow python-pypng python-pyqrcode python-requests python-socks)) (home-page "https://github.com/bashrc2/epicyon") (synopsis "A modern ActivityPub compliant server implementing both S2S and C2S protocols.") (description "Epicyon is a Fediverse server suitable for self-hosting a small number of accounts on low power systems. Key features: @itemize @item Open standards: HTML, CSS, ActivityPub S2S and C2S, RSS, CalDAV. @item Supports common web browsers and shell browsers. @item Will not drain your mobile or laptop battery. @item Customisable themes. It doesn't have to look bland. @item Emoji reactions. @item Geospatial hashtags. @item Does not require much RAM, either on server or client. @item Suitable for installation on single board computers. @item No timeline algorithms. @item No javascript. @item No database. Data stored as ordinary files. @item No fashionable web frameworks. \"Boring by design\". @item No blockchain garbage. @item Written in Python, with few dependencies. @item AGPL license, which big tech hates. @end itemize ") (license license:agpl3+)))) (define-public python-flask-migrate (package (name "python-flask-migrate") (version "3.1.0") (home-page "https://github.com/miguelgrinberg/flask-migrate/") (source (origin (method git-fetch) (uri (git-reference (url home-page) (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0zj7qpknvlhrh4fsp5sx4fwyx3sp41ynclka992zympm3xym9zyq")))) (build-system python-build-system) (propagated-inputs (list python-flask python-alembic python-flask-sqlalchemy)) (synopsis "SQLAlchemy database migrations for Flask programs using Alembic") (description "This package contains SQLAlchemy database migration tools for Flask programs that are using @code{python-alembic}.") (license license:expat))) (define-public python-genshi (package (name "python-genshi") (version "0.7.7") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/edgewall/genshi") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "06q14mn5n56rdnqvsbbjixygilblgg85fzw029n96qf6f1rvldiq")))) (propagated-inputs (list python-six)) (build-system python-build-system) (home-page "https://genshi.edgewall.org/") (synopsis "Toolkit for generation of output for the web") (description "Genshi is a Python library that provides an integrated set of components for parsing, generating, and processing HTML, XML or other textual content for output generation on the web.") (license license:bsd-3))) (define-public python-flask-principal (package (name "python-flask-principal") (version "0.4.0") (source (origin (method url-fetch) (uri (pypi-uri "Flask-Principal" version)) (sha256 (base32 "0lwlr5smz8vfm5h9a9i7da3q1c24xqc6vm9jdywdpgxfbi5i7mpm")))) (build-system python-build-system) (propagated-inputs (list python-blinker)) (native-inputs (list python-flask python-nose)) (home-page "https://pythonhosted.org/Flask-Principal/") (synopsis "Identity management for Flask") (description "@code{flask_principal} is a identity management library for Flask. It supports managing both authentication and authorization data in a thread-local variable.") (license license:expat))) (define-public python-flask-httpauth (package (name "python-flask-httpauth") (version "3.2.3") (source (origin (method url-fetch) (uri (pypi-uri "Flask-HTTPAuth" version)) (sha256 (base32 "13gff5w1mqpzm5nccyg02v3ifb9ifqh5k866cssjhghhg6msfjsz")))) (build-system python-build-system) (native-inputs (list python-flask)) (home-page "https://github.com/miguelgrinberg/flask-httpauth/") (synopsis "Basic and Digest HTTP authentication for Flask routes") (description "@code{flask_httpauth} provides Basic and Digest HTTP authentication for Flask routes.") (license license:expat))) (define-public python-uritemplate (package (name "python-uritemplate") (version "4.1.1") (source (origin (method url-fetch) (uri (pypi-uri "uritemplate" version)) (sha256 (base32 "1w14a775d92mx9pdhb5zimifpfr2lfcn0vfdpjagcy9vbkyfsij3")))) (build-system python-build-system) (home-page "https://uritemplate.readthedocs.org") (synopsis "Library to deal with URI Templates") (description "@code{uritemplate} provides Python library to deal with URI Templates.") ;; The software is made available under the terms of *either* of the ;; licenses found in LICENSE.APACHE or LICENSE.BSD. Contributions ;; are made under *both* licenses (excerpt from the LICENSE file). (license (list license:bsd-2 license:asl2.0)))) (define-public python-uritemplate-3 (package (inherit python-uritemplate) (name "python-uritemplate") (version "3.0.1") (source (origin (method url-fetch) (uri (pypi-uri "uritemplate" version)) (sha256 (base32 "1bkwmgr0ia9gcn4bszs2xlvml79f0bi2s4a87xg22ky9rq8avy2s")))))) (define-public python-publicsuffix (package (name "python-publicsuffix") (version "1.1.0") (source (origin (method url-fetch) (uri (pypi-uri "publicsuffix" version)) (sha256 (base32 "1adx520249z2cy7ykwjr1k190mn2888wqn9jf8qm27ly4qymjxxf")))) (build-system python-build-system) (arguments `(#:tests? #f)) ; tests use the internet (home-page "https://www.tablix.org/~avian/git/publicsuffix.git") (synopsis "Get suffix for a domain name") (description "Get a public suffix for a domain name using the Public Suffix List.") (license license:expat))) (define-public python-publicsuffix2 (package (name "python-publicsuffix2") (version "2.20191221") (source (origin (method url-fetch) (uri (pypi-uri "publicsuffix2" version)) (sha256 (base32 "0yzysvfj1najr1mb4pcqrbmjir3xpb69rlffln95a3cdm8qwry00")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (add-after 'unpack 'ignore-maintainer-inputs (lambda _ ;; Comment out a demand for python-requests, which is used only by ;; the unused ‘update_psl’ helper command. (substitute* "setup.py" (("'requests " match) (format #f "# ~a" match))) #t))) #:tests? #f)) ; the test suite requires network access (home-page "https://github.com/pombredanne/python-publicsuffix2") (synopsis "Get a public suffix for a domain name using the Public Suffix List") (description "Get a public suffix for a domain name using the Public Suffix List. Forked from and using the same API as the publicsuffix package.") (license (list license:expat license:mpl2.0)))) (define-public python-werkzeug (package (name "python-werkzeug") (version "2.0.2") (source (origin (method url-fetch) (uri (pypi-uri "Werkzeug" version)) (sha256 (base32 "16nvv9dh37ssf5pkny9yj2li0n6wyzsygh8a9i86r3gfipybcaxa")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? inputs outputs #:allow-other-keys) (when tests? (add-installed-pythonpath inputs outputs) (invoke "python" "-m" "pytest" ;; Test tries to use the network. "-k not test_reloader_sys_path"))))))) (propagated-inputs (list python-requests)) (native-inputs (list python-pytest python-pytest-timeout python-pytest-xprocess)) (home-page "https://palletsprojects.com/p/werkzeug/") (synopsis "Utilities for WSGI applications") (description "One of the most advanced WSGI utility modules. It includes a powerful debugger, full-featured request and response objects, HTTP utilities to handle entity tags, cache control headers, HTTP dates, cookie handling, file uploads, a powerful URL routing system and a bunch of community-contributed addon modules.") (license license:x11))) (define-public python-werkzeug-1.0 (package (inherit python-werkzeug) (version "1.0.1") (source (origin (method url-fetch) (uri (pypi-uri "Werkzeug" version)) (sha256 (base32 "0z74sa1xw5h20yin9faj0vvdbq713cgbj84klc72jr9nmpjv303c")) (patches (search-patches "python-werkzeug-tests.patch")))) (arguments '(#:phases (modify-phases %standard-phases (delete 'check) (add-after 'install 'check (lambda* (#:key inputs outputs #:allow-other-keys) (add-installed-pythonpath inputs outputs) (invoke "python" "-m" "pytest")))))) (propagated-inputs (list python-requests)) (native-inputs (list python-pytest python-pytest-timeout)))) (define-public python-bottle (package (name "python-bottle") (version "0.12.23") (source (origin (method url-fetch) (uri (pypi-uri "bottle" version)) (sha256 (base32 "0rs1w293gp5bhxip2cci8mfkhld6n5qcznvlna3nxclz76mf6gb8")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (with-directory-excursion "test" (invoke "pytest" "-vvv")))))))) (native-inputs (list python-pytest)) (home-page "https://bottlepy.org/") (synopsis "WSGI framework for small web-applications") (description "@code{python-bottle} is a WSGI framework for small web-applications.") (license license:expat))) (define-public python-wtforms (package (name "python-wtforms") (version "3.1.2") (source (origin (method url-fetch) (uri (pypi-uri "wtforms" version)) (sha256 (base32 "1fblnkzvs6339glwx8bskdjy7nhn2ap90y9g6b399713sy063mzq")))) (build-system pyproject-build-system) (native-inputs (list python-hatchling python-pytest)) (propagated-inputs (list python-babel python-email-validator python-markupsafe)) (home-page "https://wtforms.readthedocs.io/") (synopsis "Form validation and rendering library for Python web development") (description "WTForms is a flexible forms validation and rendering library for Python web development. It is very similar to the web form API available in Django, but is a standalone package.") (license license:bsd-3))) (define-public python-wtforms-sqlalchemy (package (name "python-wtforms-sqlalchemy") (version "0.4.1") (source (origin (method url-fetch) (uri (pypi-uri "WTForms-SQLAlchemy" version)) (sha256 (base32 "1nx4x0ifanlbrzh3f9ns8ihnchlkzf54ilvqmgcgcz2j72vm43rp")))) (build-system pyproject-build-system) (native-inputs (list python-pytest)) (propagated-inputs (list python-sqlalchemy python-wtforms)) (home-page "https://github.com/wtforms/wtforms-sqlalchemy/") (synopsis "SQLAlchemy tools for WTForms") (description "WTForms-SQLAlchemy is a fork of the @code{wtforms.ext.sqlalchemy} package from WTForms. The package has been renamed to @code{wtforms_sqlalchemy} but otherwise should function the same as @code{wtforms.ext.sqlalchemy} did.") (license license:bsd-3))) (define-public python-paste (package (name "python-paste") (version "3.5.2") (source (origin (method url-fetch) (uri (pypi-uri "Paste" version)) (sha256 (base32 "1xjakxrdvy4kgfy170gb9bl8zp9hqjjwh1h1vlik1pxw606399ym")) (patches (search-patches "python-paste-remove-timing-test.patch")) (modules '((guix build utils))) (snippet '(begin ;; This test calls out to the internet. (delete-file "tests/test_proxy.py") #t)))) (build-system pyproject-build-system) (native-inputs (list python-pytest python-nose)) (propagated-inputs (list python-six)) (home-page "https://pythonpaste.readthedocs.io/") (synopsis "Python web development tools, focusing on WSGI") (description "Paste provides a variety of web development tools and middleware which can be nested together to build web applications. Paste's design closely follows ideas flowing from WSGI (Web Standard Gateway Interface).") (license license:expat))) (define-public python-pastescript (package (name "python-pastescript") (version "2.0.2") (source (origin (method url-fetch) (uri (pypi-uri "PasteScript" version)) (sha256 (base32 "1h3nnhn45kf4pbcv669ik4faw04j58k8vbj1hwrc532k0nc28gy0")))) (build-system python-build-system) (native-inputs (list python-nose)) (propagated-inputs (list python-paste python-pastedeploy)) (home-page (string-append "https://web.archive.org/web/20161025192515/" "http://pythonpaste.org/script/")) (arguments '(;; Unfortunately, this requires the latest unittest2, ;; but that requires traceback2 which requires linecache2 which requires ;; unittest2. So we're skipping tests for now. ;; (Note: Apparently linetest2 only needs unittest2 for its tests, ;; so in theory we could get around this situation somehow.) #:tests? #f)) (synopsis "Pluggable command line tool for serving web applications and more") (description "PasteScript is a plugin-friendly command line tool which provides a variety of features, from launching web applications to bootstrapping project layouts.") (license license:expat))) (define-public python-urlgrabber (package (name "python-urlgrabber") (version "4.1.0") (source (origin (method url-fetch) (uri (pypi-uri "urlgrabber" version)) (sha256 (base32 "0fg16zlw49cw7pjq9dhpc5vd35d5zz1mlki55m464qxfmfpzhnh7")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key inputs outputs tests? #:allow-other-keys) (when tests? (add-installed-pythonpath inputs outputs) (invoke "python" "test/runtests.py"))))))) (propagated-inputs (list python-pycurl python-setuptools python-six)) (home-page "http://urlgrabber.baseurl.org/") ; no HTTPS (synopsis "High-level cross protocol url-grabber") (description "@code{urlgrabber} is a library that unifies access to files available on the web, FTP or locally. It supports HTTP, FTP and file:// protocols, it supports features like HTTP keep-alive, reget, throttling and more.") (license license:lgpl2.1+))) (define-public python-pycares (package (name "python-pycares") (version "4.3.0") (source (origin (method url-fetch) (uri (pypi-uri "pycares" version)) (sha256 (base32 "0i8d0433wmm7wi8i2l2hjiyhmy35b9s888qrk6fqx5xcdmpnjhn5")))) (build-system python-build-system) (arguments `(#:tests? #f)) ;tests require internet access (propagated-inputs (list python-cffi)) (home-page "https://github.com/saghul/pycares") (synopsis "Python interface for @code{c-ares}") (description "@code{pycares} is a Python module which provides an interface to @code{c-ares}, a C library that performs DNS requests and name resolutions asynchronously.") (license license:expat))) (define-public python-yarl (package (name "python-yarl") (version "1.6.3") (source (origin (method url-fetch) (uri (pypi-uri "yarl" version)) (sha256 (base32 "045z4ssg8g5h0qhz8hnx74hswgkndaldqq1xi5l1n5s0j996d44a")) (modules '((guix build utils))) (snippet #~(begin (delete-file "yarl/_quoting_c.c"))))) (build-system python-build-system) (arguments (list #:tests? #f ; test suite can't find yarl._quoting_c #:phases #~(modify-phases %standard-phases (add-after 'unpack 'cythonize-code (lambda _ (invoke "cython" "yarl/_quoting_c.pyx"))) (replace 'check (lambda* (#:key tests? inputs outputs #:allow-other-keys) (when tests? (substitute* "setup.cfg" (("--cov=yarl") "")) (add-installed-pythonpath inputs outputs) (invoke "python" "-m" "pytest"))))))) (native-inputs (list python-cython python-pytest python-pytest-runner)) (propagated-inputs (list python-idna python-multidict)) (home-page "https://github.com/aio-libs/yarl/") (synopsis "Yet another URL library") (description "@code{yarl} module provides handy @code{URL} class for URL parsing and changing.") (license license:asl2.0))) (define-public python-canvasapi (package (name "python-canvasapi") (version "3.2.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/ucfopen/canvasapi") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1vbd3ndhmxi8scxgxs6sc7r0rdaliqd80384n06nyb3haqz25inm")))) (build-system pyproject-build-system) (propagated-inputs (list python-arrow python-pytz python-requests)) (native-inputs (list python-requests-mock)) (home-page "https://github.com/ucfopen/canvasapi") (synopsis "API wrapper for the Canvas LMS") (description "CanvasAPI is a Python library for accessing Instructure’s Canvas LMS API. The library enables developers to programmatically manage Canvas courses, users, gradebooks, and more.") (license license:expat))) (define-public python-google (package (name "python-google") (version "3.0.0") (source (origin (method url-fetch) (uri (pypi-uri "google" version)) (sha256 (base32 "1gncv3l11za0mpxvmpaf5n5j3jzp282rz62yml4ha4z55q930d8l")))) (build-system python-build-system) (arguments `(#:tests? #f)) ; There are no tests. (propagated-inputs (list python-beautifulsoup4)) (home-page "https://breakingcode.wordpress.com/") (synopsis "Python bindings to the Google search engine") (description "This package provides Python bindings for using the Google search engine. Its module is called @code{googlesearch}.") (license license:bsd-3))) (define-public python-google-api-client (package (name "python-google-api-client") (version "2.102.0") (source (origin (method url-fetch) (uri (pypi-uri "google-api-python-client" version)) (sha256 (base32 "07b9afz3g3lk976i974h6ikvl7wzwm0a0ws0iynxvmd4favgjvwh")))) (build-system python-build-system) (arguments `(#:tests? #f)) ; tests require internet access (propagated-inputs (list python-google-api-core python-google-auth python-google-auth-httplib2 python-httplib2 python-pyparsing python-six python-uritemplate-3)) (home-page "https://github.com/google/google-api-python-client") (synopsis "Core Python library for accessing Google APIs") (description "Python client library for Google's discovery based APIs") (license license:asl2.0))) (define-public python-google-auth-httplib2 (package (name "python-google-auth-httplib2") (version "0.1.1") (source (origin (method url-fetch) (uri (pypi-uri "google-auth-httplib2" version)) (sha256 (base32 "0agwwgw04nks7lzpm224fbvpnjfgzz67pkrfls77ipf6zmawajy6")))) (build-system python-build-system) (propagated-inputs (list python-google-auth python-httplib2 python-six)) (native-inputs (list python-flask python-mock python-pytest python-pytest-localserver)) (home-page "https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2") (synopsis "Google Authentication Library: httplib2 transport") (description "This package provides a Google Authentication Library plugin for httplib2 transport.") (license license:asl2.0))) (define-public python-google-auth-oauthlib (package (name "python-google-auth-oauthlib") (version "1.1.0") (source (origin (method url-fetch) (uri (pypi-uri "google-auth-oauthlib" version)) (sha256 (base32 "1yvsjd1vh440nsh9vpnig23sq4k1ia749x5g1dwm7r4110xqrsl3")))) (build-system python-build-system) (propagated-inputs (list python-google-auth python-requests-oauthlib)) (native-inputs (list python-flask)) (home-page "https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib") (synopsis "Google Authentication Library: oauthlib") (description "This package provides a Google Authentication Library plugin with oauthlib.") (license license:asl2.0))) (define-public whoogle-search (package (name "whoogle-search") (version "0.8.4") (source (origin (method url-fetch) (uri (pypi-uri "whoogle-search" version)) (sha256 (base32 "0hsy4l98nzj6i1lf63wvqd0yharkaz44zsxh863ymy47rxnwimz7")))) (build-system pyproject-build-system) (arguments (list ;; The tests need network access #:tests? #f)) (propagated-inputs (list python-beautifulsoup4 python-brotli python-cryptography python-cssutils python-defusedxml python-flask python-dotenv python-requests python-stem python-validators python-waitress)) (home-page "https://github.com/benbusby/whoogle-search") (synopsis "Self-hosted, ad-free, privacy-respecting metasearch engine") (description "Get Google results, but without any ads, javascript, AMP links, cookies, or IP address tracking. Quick and simple to implement as a primary search engine replacement on both desktop and mobile.") (license license:expat))) (define-public python-hawkauthlib (package (name "python-hawkauthlib") (version "2.0.0") (source (origin (method url-fetch) (uri (pypi-uri "hawkauthlib" version)) (sha256 (base32 "03ai47s4h8nfnrf25shbfvkm1b9n1ccd4nmmj280sg1fayi69zgg")))) (build-system python-build-system) (propagated-inputs (list python-requests python-webob)) (home-page "https://github.com/mozilla-services/hawkauthlib") (synopsis "Hawk Access Authentication protocol") (description "This is a low-level Python library for implementing Hawk Access Authentication, a simple HTTP request-signing scheme.") (license license:mpl2.0))) (define-public python-pybrowserid (package (name "python-pybrowserid") (version "0.14.0") (source (origin (method url-fetch) (uri (pypi-uri "PyBrowserID" version)) (sha256 (base32 "1qvi79kfb8x9kxkm5lw2mp42hm82cpps1xknmsb5ghkwx1lpc8kc")))) (build-system python-build-system) (propagated-inputs (list python-requests)) (native-inputs (list python-mock)) (home-page "https://github.com/mozilla/PyBrowserID") (synopsis "Python library for the BrowserID protocol") (description "This is a Python client library for the BrowserID protocol that underlies Mozilla Persona.") (license license:mpl2.0))) (define-public python-pyfxa (package (name "python-pyfxa") (version "0.6.0") (source (origin (method url-fetch) (uri (pypi-uri "PyFxA" version)) (sha256 (base32 "0axl16fyrz2r88gnw4b12mk7dpkqscv8c4wsc1y5hicl7bsbc4fm")))) (build-system python-build-system) (arguments '(#:tests? #f)) ; 17 tests require network access (propagated-inputs (list python-cryptography python-hawkauthlib python-pybrowserid python-requests python-six)) (native-inputs (list python-grequests python-mock python-responses python-unittest2)) (home-page "https://github.com/mozilla/PyFxA") (synopsis "Firefox Accounts client library for Python") (description "This is a Python library for interacting with the Firefox Accounts ecosystem.") (license license:mpl2.0))) (define-public python-hyperlink (package (name "python-hyperlink") (version "21.0.0") (source (origin (method url-fetch) (uri (pypi-uri "hyperlink" version)) (sha256 (base32 "0sx50lkivsfjxx9zr4yh7l9gll2l9kvl0v0w8w4wk2x5v9bzjyj2")))) (build-system pyproject-build-system) (arguments (list #:phases #~(modify-phases %standard-phases (add-before 'check 'pretend-to-be-CI (lambda _ ;; Pretend to be a CI system to skip flaky tests. (setenv "CI" "true")))))) (native-inputs (list python-pytest)) (propagated-inputs (list python-idna)) (home-page "https://github.com/python-hyper/hyperlink") (synopsis "Python module to create immutable URLs according to spec") (description "This package provides a Python module to create immutable, and correct URLs for Python according to RFCs 3986 and 3987.") (license license:expat))) (define-public python-treq (package (name "python-treq") (version "18.6.0") (source (origin (method url-fetch) (uri (pypi-uri "treq" version)) (sha256 (base32 "0j4zwq9p1c9piv1vc66nxcv9s6hdinf90jwkbsm91k14npv9zq4i")))) (build-system python-build-system) (propagated-inputs (list python-attrs python-idna python-incremental python-requests python-service-identity python-twisted)) (home-page "https://github.com/twisted/treq") (synopsis "Requests-like API built on top of twisted.web's Agent") (description "This package provides an HTTP library inspired by @code{requests}} but written on top of Twisted's @code{Agents}. It offers a high level API for making HTTP requests when using Twisted.") (license license:expat))) (define-public python-autobahn (package (name "python-autobahn") (version "19.2.1") (source (origin (method url-fetch) (uri (pypi-uri "autobahn" version)) (sha256 (base32 "1mm7j24ls01c7jb1ad5p5cpyxvzgydiyf8b04ihykh2v8g98j0x7")))) (build-system python-build-system) (arguments ;; The tests fail to run: ;; https://github.com/crossbario/autobahn-python/issues/1117 `(#:tests? #f)) (propagated-inputs (list python-cffi python-twisted python-txaio)) (home-page "https://crossbar.io/autobahn/") (synopsis "Web Application Messaging Protocol implementation") (description "This package provides an implementation of the @dfn{Web Application Messaging Protocol} (WAMP). WAMP connects components in distributed applications using Publish and Subscribe (PubSub) and routed Remote Procedure Calls (rRPC). It is ideal for distributed, multi-client and server applications such as IoT applications or multi-user database-driven business applications.") (license license:expat))) (define-public python-ws4py (package (name "python-ws4py") (version "0.5.1") (source (origin (method url-fetch) (uri (pypi-uri "ws4py" version)) (sha256 (base32 "10slbbf2jm4hpr92jx7kh7mhf48sjl01v2w4d8z3f1p0ybbp7l19")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'python3.7-compatibility (lambda _ (substitute* '("ws4py/server/tulipserver.py" "ws4py/async_websocket.py") (("asyncio.async") "asyncio.ensure_future")) #t)) ;; We don't have a package for cherrypy. (add-after 'unpack 'remove-cherrypy-support (lambda _ (delete-file "ws4py/server/cherrypyserver.py") #t))))) (propagated-inputs (list python-gevent python-tornado)) (home-page "https://github.com/Lawouach/WebSocket-for-Python") (synopsis "WebSocket client and server library") (description "This package provides a WebSocket client and server library for Python.") (license license:bsd-3))) (define-public python-slugify (package (name "python-slugify") (version "5.0.2") (source (origin (method url-fetch) (uri (pypi-uri "python-slugify" version)) (sha256 (base32 "1aww2ncglyii4jkbfjxqhinivawf9zmwifcj32d69gpwp6h86czi")))) (propagated-inputs (list python-unidecode python-text-unidecode)) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "python" "test.py"))))))) (build-system python-build-system) (home-page "https://github.com/un33k/python-slugify") (synopsis "Python Slugify application that handles Unicode") (description "This package provides a @command{slufigy} command and library to create slugs from unicode strings while keeping it DRY.") (license license:expat))) (define-public python-branca (package (name "python-branca") (version "0.7.2") (source (origin (method git-fetch) ; no tests in PyPI (uri (git-reference (url "https://github.com/python-visualization/branca") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1vs94nqa7r6iwm8mj3m29hg090gmgz4ywnayxh8qiz9ij8jv96wa")))) (build-system pyproject-build-system) (arguments ;; This file requires Selenium. (list #:test-flags #~(list "--ignore" "tests/test_iframe.py" ;; This test passes but is very slow. "-k" "not test_color_brewer_extendability") #:phases #~(modify-phases %standard-phases (add-before 'build 'pretend-version ;; The version string is usually derived via setuptools-scm, ;; but without the git metadata available, the version string ;; is set to '0.0.0'. (lambda _ (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$(package-version this-package))))))) (propagated-inputs (list python-jinja2)) (native-inputs (list python-numpy python-pytest python-setuptools-scm)) (home-page "https://github.com/python-visualization/branca") (synopsis "Generate complex HTML+JS pages with Python") (description "This library is a spinoff from @code{folium} that would host the non-map-specific features. It can be used to generate HTML + JS.") (license license:expat))) (define-public python-tinycss (package (name "python-tinycss") (version "0.4") (source (origin (method url-fetch) (uri (pypi-uri "tinycss" version)) (sha256 (base32 "0vkifr595h28ymkjhrswwf0bm23lhznh5f44xyp7x7jy1ssnyc0j")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'disable-flake8-isort ;; Flake8 and isort tests fail. (lambda _ (substitute* "setup.cfg" ((" --flake8 --isort") "")) #t)) (replace 'check (lambda _ ;; Disable failing test. (invoke "python" "-m" "pytest" "-k" "not test_speedups")))))) (native-inputs (list python-pytest-cov python-pytest-flake8 python-pytest-isort python-pytest-runner)) (home-page "https://tinycss.readthedocs.io/") (synopsis "Complete yet simple CSS parser for Python") (description "@code{tinycss} is a complete yet simple CSS parser for Python. It supports the full syntax and error handling for CSS 2.1 as well as some CSS 3 modules: @itemize @item CSS Color 3 @item CSS Fonts 3 @item CSS Paged Media 3 @end itemize") (license license:bsd-3))) (define-public python-tinycss2 (package (name "python-tinycss2") (version "1.1.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/Kozea/tinycss2") (commit (string-append "v" version)) (recursive? #true))) (file-name (git-file-name name version)) (sha256 (base32 "0zyc48vbmczpqj7f3f0d7zb3bz29fyj50dg0m6bbwbr5i88kq3sq")))) (build-system pyproject-build-system) (propagated-inputs (list python-webencodings)) (native-inputs (list python-flit python-pytest python-pytest-cov python-pytest-flake8 python-pytest-isort)) (home-page "https://tinycss2.readthedocs.io/") (synopsis "Low-level CSS parser for Python") (description "@code{tinycss2} can parse strings, return Python objects representing tokens and blocks, and generate CSS strings corresponding to these objects. Based on the CSS Syntax Level 3 specification, @code{tinycss2} knows the grammar of CSS but doesn’t know specific rules, properties or values supported in various CSS modules.") (license license:bsd-3))) (define-public python-cssselect2 (package (name "python-cssselect2") (version "0.4.1") (source (origin (method url-fetch) (uri (pypi-uri "cssselect2" version)) (sha256 (base32 "1j2fcr217rsvkipsg6zjq03rl64rxnvb5hqqpx0dv58fhspvkywk")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'disable-linters ;; Their check fails; none of our business. (lambda _ (substitute* '("setup.py" "pyproject.toml") (("'pytest-flake8',") "") (("'pytest-isort',") "") (("--flake8") "") (("--isort") "")))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (lambda _ (invoke "pytest")))))))) (propagated-inputs (list python-tinycss2)) (native-inputs (list python-pytest-cov python-pytest-runner)) (home-page "https://cssselect2.readthedocs.io/") (synopsis "CSS selectors for Python ElementTree") (description "@code{cssselect2} is a straightforward implementation of CSS3 Selectors for markup documents (HTML, XML, etc.) that can be read by ElementTree-like parsers (including cElementTree, lxml, html5lib, etc.). Unlike the Python package @code{cssselect}, it does not translate selectors to XPath and therefore does not have all the correctness corner cases that are hard or impossible to fix in cssselect.") (license license:bsd-3))) (define-public python-uvloop (package (name "python-uvloop") (version "0.16.0") (source (origin (method url-fetch) (uri (pypi-uri "uvloop" version)) (sha256 (base32 "0a0jzwrhkszknh14alflrp1db6dyjp7ph730f9yc5lb7gc6c4jzp")) (modules '((guix build utils))) (snippet '(begin (delete-file-recursively "vendor") (delete-file "uvloop/loop.c"))))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'preparations (lambda _ ;; Use packaged libuv. (substitute* "setup.py" (("self.use_system_libuv = False") "self.use_system_libuv = True")) ;; Replace hardcoded shell command. (substitute* "uvloop/loop.pyx" (("b'/bin/sh'") (string-append "b'" (which "sh") "'"))) #t)) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? ;; Remove Python module, which conflicts with the installed version, ;; but lacks the built C module. (delete-file-recursively "uvloop") ;; The tests are prone to get stuck. Use pytest-timeout’s --timeout ;; flag to get a meaningful idea about where. (invoke "pytest" "-vv" "--timeout=300" "--timeout-method=thread" "-k" (string-append ;; Timeout, because SIGINT cannot be sent to child. "not test_signals_sigint_pycode_continue " "and not test_signals_sigint_pycode_stop " "and not test_signals_sigint_uvcode " "and not test_signals_sigint_uvcode_two_loop_runs " ;; This test is racy and prone to get stuck on ;; various platforms, possibly a aiohttp issue: ;; https://github.com/MagicStack/uvloop/issues/412 "and not test_remote_shutdown_receives_trailing_data " ;; It looks like pytest is preventing ;; custom stdout/stderr redirection, ;; even with -s. "and not test_process_streams_redirect ")))))))) (native-inputs (list python-aiohttp python-cython python-psutil python-pyopenssl python-pytest python-pytest-timeout)) (inputs (list libuv)) (home-page "https://github.com/MagicStack/uvloop") (synopsis "Fast implementation of asyncio event loop on top of libuv") (description "@code{uvloop} is a fast, drop-in replacement of the built-in asyncio event loop. It is implemented in Cython and uses libuv under the hood.") (license license:expat))) (define-public gunicorn (package (name "gunicorn") (version "20.1.0") (source (origin (method url-fetch) (uri (pypi-uri "gunicorn" version)) (sha256 (base32 "1s7670qw36x90bgmazmgib170i5gnpyb2ypxzlla7y0mpasniag0")))) (outputs '("out" "doc")) (build-system pyproject-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-after 'build 'build-doc (lambda _ (invoke "make" "-C" "docs" "PAPER=a4" "html" "info") (delete-file "docs/build/texinfo/Makefile") (delete-file "docs/build/texinfo/Gunicorn.texi"))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (if tests? (begin (invoke "pytest" "-vv" ;; Disable the geventlet tests because eventlet uses ;; dnspython, which does not work in the build ;; container due to lack of /etc/resolv.conf, etc. "--ignore=tests/workers/test_geventlet.py")) (format #t "test suite not run~%")))) (add-after 'install 'install-doc (lambda* (#:key outputs #:allow-other-keys) (let* ((doc (string-append (assoc-ref outputs "doc") "/share/doc/" ,name "-" ,version)) (html (string-append doc "/html")) (info (string-append doc "/info")) (examples (string-append doc "/examples"))) (mkdir-p html) (mkdir-p info) (mkdir-p examples) (copy-recursively "docs/build/html" html) (copy-recursively "docs/build/texinfo" info) (copy-recursively "examples" examples) (for-each (lambda (file) (copy-file file (string-append doc "/" file))) '("README.rst" "NOTICE" "LICENSE" "THANKS"))))) ;; XXX: The wrap phase includes native inputs on PYTHONPATH, (see ;; <https://bugs.gnu.org/25235>), leading to an inflated closure ;; size. Override it to only add the essential entries. (replace 'wrap (lambda* (#:key native-inputs inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (python (assoc-ref (or native-inputs inputs) "python")) (sitedir (string-append "/lib/python" (python-version python) "/site-packages"))) (wrap-program (string-append out "/bin/gunicorn") `("PYTHONPATH" ":" prefix ,(map (lambda (output) (string-append output sitedir)) (list python out)))))))))) (inputs (list bash-minimal)) (native-inputs (list binutils ;; for ctypes.util.find_library() python-aiohttp python-gevent python-pytest python-pytest-cov python-sphinx texinfo)) (home-page "https://gunicorn.org/") (synopsis "Python WSGI HTTP Server for UNIX") (description "Gunicorn ‘Green Unicorn’ is a Python WSGI HTTP Server for UNIX. It’s a pre-fork worker model ported from Ruby’s Unicorn project. The Gunicorn server is broadly compatible with various web frameworks, simply implemented, light on server resources, and fairly speedy.") (license license:expat))) (define-public gunicorn-next (package (inherit gunicorn) (name "gunicorn") (version "22.0.0") (source (origin (method url-fetch) (uri (pypi-uri "gunicorn" version)) (sha256 (base32 "0qzc3ghayc137hlwrqqwkkhaf8f5h9ja21qwy4rznxpz75i462sa")))) ;; CVE-2024-1135 is fixed in version 22.0.0. (properties `((lint-hidden-cve . ("CVE-2024-1135")))))) ;; break cyclic dependency for python-aiohttp, which depends on gunicorn for ;; its tests (define-public gunicorn-bootstrap (package (inherit gunicorn) (name "gunicorn") (arguments `(#:tests? #f)) (properties '((hidden? . #t))) (native-inputs `()))) (define-public python-httptools (package (name "python-httptools") (version "0.1.1") (source (origin ;; PyPI tarball comes with a vendored http-parser and no tests. (method git-fetch) (uri (git-reference (url "https://github.com/MagicStack/httptools") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0g08128x2ixsiwrzskxc6c8ymgzs39wbzr5mhy0mjk30q9pqqv77")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (add-after 'unpack 'preparations (lambda _ ;; Skip a failing test (AssertionError). Bug report: ;; https://github.com/MagicStack/httptools/issues/10. (substitute* "tests/test_parser.py" ((" def test_parser_response_1") (string-append " @unittest.skip(\"Disabled.\")\n" " def test_parser_response_1"))) ;; Use packaged http-parser. (substitute* "setup.py" (("self.use_system_http_parser = False") "self.use_system_http_parser = True")) ;; This path is hardcoded. Hardcode our own. (substitute* "httptools/parser/cparser.pxd" (("../../vendor/http-parser") (string-append (assoc-ref %build-inputs "http-parser") "/include"))) ;; Don't force Cython version. (substitute* "setup.py" (("Cython==") "Cython>=")) #t))))) (native-inputs (list python-cython python-pytest)) (inputs (list http-parser)) (home-page "https://github.com/MagicStack/httptools") (synopsis "Collection of framework independent HTTP protocol utils") (description "@code{httptools} is a Python binding for the nodejs HTTP parser.") (license license:expat))) (define-public python-uvicorn (package (name "python-uvicorn") (version "0.23.2") (source (origin ;; PyPI tarball has no tests. (method git-fetch) (uri (git-reference (url "https://github.com/encode/uvicorn") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "1qa4cwifss9cnasfr0ffn76rvh7wcfjkl6nw99yz43rjmdpj3h7p")))) (build-system pyproject-build-system) (arguments (list #:test-flags #~(list "-o" "asyncio_mode=auto" "-k" (string-join ;; These error or fail due to networking. '("not test_keepalive" "not test_bind_unix_socket_works_with_reload_or_workers") " and ")))) (native-inputs (list python-a2wsgi python-hatchling python-httpx-bootstrap python-pytest python-pytest-asyncio python-pytest-mock python-requests python-trustme python-wsproto)) (propagated-inputs (list python-click python-dotenv python-h11 python-httptools python-pyyaml python-uvloop python-watchgod python-websockets)) (home-page "https://github.com/encode/uvicorn") (synopsis "Fast ASGI server implementation") (description "@code{uvicorn} is a fast ASGI server implementation, using @code{uvloop} and @code{httptools}. It currently supports HTTP/1.1 and WebSockets. Support for HTTP/2 is planned.") (license license:bsd-3))) (define-public python-translation-finder (package (name "python-translation-finder") (version "1.7") (source (origin (method url-fetch) (uri (pypi-uri "translation-finder" version)) (sha256 (base32 "1pcy9z8gmb8x41gjhw9x0lkr0d2mv5mdxcs2hwg6q8mxs857j589")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-before 'build 'remove-failing-test (lambda _ (delete-file "translation_finder/test_api.py") #t))))) (propagated-inputs (list python-chardet python-pathlib2 python-ruamel.yaml python-six)) (native-inputs (list python-codecov python-codacy-coverage python-pytest-cov python-pytest-runner python-twine)) (home-page "https://weblate.org/") (synopsis "Translation file finder for Weblate") (description "This package provides a function to find translation file in the source code of a project. It supports many translation file formats and is part of the Weblate translation platform.") (license license:gpl3+))) (define-public python-gitlab (package (name "python-gitlab") (version "3.2.0") (source (origin (method url-fetch) (uri (pypi-uri "python-gitlab" version)) (sha256 (base32 "1gi4lp2g4k99zqcx2bgqx940bpmpbc1w9qkl5gy33hpy148yhvlg")))) (build-system python-build-system) (arguments `(#:tests? #f)) ;tests require network access (propagated-inputs (list python-requests python-requests-toolbelt)) (home-page "https://github.com/python-gitlab/python-gitlab") (synopsis "Interact with GitLab API") (description "This package provides an extended library for interacting with GitLab instances through their API.") (license license:lgpl3+))) (define-public python-path-and-address (package (name "python-path-and-address") (version "2.0.1") (source (origin ;; The source distributed on PyPI doesn't include tests. (method git-fetch) (uri (git-reference (url "https://github.com/joeyespo/path-and-address") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0b0afpsaim06mv3lhbpm8fmawcraggc11jhzr6h72kdj1cqjk5h6")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key inputs outputs #:allow-other-keys) (add-installed-pythonpath inputs outputs) (invoke "py.test")))))) (native-inputs (list python-pytest)) (home-page "https://github.com/joeyespo/path-and-address") (synopsis "Functions for command-line server tools used by humans") (description "Path-and-address resolves ambiguities of command-line interfaces, inferring which argument is the path, and which is the address.") (license license:expat))) (define-public grip (package (name "grip") (version "4.6.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/joeyespo/grip") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0vhimd99zw7s1fihwr6yfij6ywahv9gdrfcf5qljvzh75mvzcwh8")))) (build-system python-build-system) (propagated-inputs (list python-docopt python-flask python-markdown python-path-and-address python-pygments python-requests)) (native-inputs (list python-pytest python-responses)) (arguments (list #:phases #~(modify-phases %standard-phases (replace 'check (lambda* (#:key inputs outputs tests? #:allow-other-keys) (when tests? (add-installed-pythonpath inputs outputs) (setenv "PATH" (string-append (getenv "PATH") ":" #$output "/bin")) (invoke "py.test" "-m" "not assumption"))))))) (home-page "https://github.com/joeyespo/grip") (synopsis "Preview Markdown files using the GitHub API") (description "Grip is a command-line server application written in Python that uses the GitHub Markdown API to render a local Markdown file. The styles and rendering come directly from GitHub, so you'll know exactly how it will appear. Changes you make to the file will be instantly reflected in the browser without requiring a page refresh.") (license license:expat))) (define-public python-port-for (package (name "python-port-for") (version "0.4") (source (origin (method url-fetch) (uri (pypi-uri "port-for" version)) (sha256 (base32 "1pncxlj25ggw99r0ijfbkq70gd7cbhqdx5ivsxy4jdp0z14cpda7")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'use-urllib3 (lambda _ (substitute* "port_for/_download_ranges.py" (("urllib2") "urllib3"))))))) (propagated-inputs (list python-urllib3)) (native-inputs (list python-mock)) (home-page "https://github.com/kmike/port-for/") (synopsis "TCP localhost port finder and association manager") (description "This package provides a utility that helps with local TCP ports management. It can find an unused TCP localhost port and remember the association.") (license license:expat))) (define-public python-livereload (package (name "python-livereload") (version "2.6.3") (source (origin (method url-fetch) (uri (pypi-uri "livereload" version)) (sha256 (base32 "0scqjnhg3ap81v36ghp0pik774dnfdkwqsx5j1jfbzarbs32yvvp")))) (build-system python-build-system) (propagated-inputs (list python-six python-tornado)) (home-page "https://github.com/lepture/python-livereload") (synopsis "Python LiveReload") (description "Python LiveReload provides a command line utility, @command{livereload}, for starting a web server in a directory. It can trigger arbitrary commands and serve updated contents upon changes to the directory.") (license license:bsd-3))) (define-public python-vf-1 (package (name "python-vf-1") (version "0.0.11") (source (origin (method url-fetch) (uri (pypi-uri "VF-1" version)) (sha256 (base32 "0xlqsaxsiayk1sd07kpz8abbcnab582y29a1y4882fq6j4gma5xi")))) (build-system python-build-system) (home-page "https://github.com/solderpunk/VF-1") (synopsis "Command line gopher client") (description "@code{VF-1} is a command line gopher client with @acronym{TLS, Transport Layer Security} support.") (license license:bsd-2))) (define-public python-httpcore (package (name "python-httpcore") (version "0.17.0") (source (origin ;; PyPI tarball does not contain tests. (method git-fetch) (uri (git-reference (url "https://github.com/encode/httpcore") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0qf2w6sgn51jd41a4k230jincrk6rchgc0k1bclxhyyzv44q4q8c")))) (build-system pyproject-build-system) (arguments (list #:test-flags '(list "--override-ini=asyncio_mode=auto" "-k" (string-join '("not test_ssl_request" ;; PytestUnraisableExceptionWarning "test_authenticated_socks5_request" "test_socks5_request" "test_socks5_request_connect_failed" "test_socks5_request_failed_to_provide_auth" "test_socks5_request_incorrect_auth" ;; marked with @pytest.mark.asyncio but it is not an async function "test_connection_pool_concurrency" "test_connection_pool_concurrency_same_domain_keepalive" "test_response_async_read" "test_response_async_streaming" ;; SSL connection has been closed "test_extra_info") " and not ")))) (native-inputs (list nss-certs-for-test python-pytest python-pytest-asyncio python-pytest-cov python-pytest-httpbin python-pytest-trio python-uvicorn python-trustme)) (propagated-inputs (list python-anyio python-certifi python-h11 python-h2 python-sniffio python-socksio python-trio python-trio-typing)) (home-page "https://github.com/encode/httpcore") (synopsis "Minimal, low-level HTTP client") (description "HTTP Core provides a minimal and low-level HTTP client, which does one thing only: send HTTP requests. Some things HTTP Core does do: @itemize @item Sending HTTP requests. @item Provides both sync and async interfaces. @item Supports HTTP/1.1 and HTTP/2. @item Async backend support for asyncio and trio. @item Automatic connection pooling. @item HTTP(S) proxy support. @end itemize") (license license:bsd-3))) ;;; Variant used to break a cycle between python-httpx and python-uvicorn. (define-public python-httpcore-bootstrap (hidden-package (package/inherit python-httpcore (name "python-httpcore-bootstrap") (arguments (list #:tests? #f)) (native-inputs '())))) (define-public python-httpx (package (name "python-httpx") (version "0.24.1") (source (origin ;; PyPI tarball does not contain tests. (method git-fetch) (uri (git-reference (url "https://github.com/encode/httpx") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "121cnzp5jq638wrvfmxa9q0rwank7q6v5fi1lnih50fd5219yvm8")))) (build-system pyproject-build-system) (arguments (list #:test-flags '(list "-vv" "-o" "asyncio_mode=auto" "-k" ;; These tests try to open an outgoing connection. (string-append "not test_connect_timeout" " and not test_that_send_cause_async_client_to_be_not_closed" " and not test_that_async_client_caused_warning_when_being_deleted" " and not test_that_send_cause_client_to_be_not_closed" " and not test_async_proxy_close" " and not test_sync_proxy_close" ;; This test is apparently incompatible with ;; python-click 8, fails with " AttributeError: ;; 'function' object has no attribute 'name'". " and not test_main")))) (native-inputs (list nss-certs-for-test python-cryptography python-hatchling python-hatch-fancy-pypi-readme python-pytest python-pytest-asyncio python-pytest-trio python-trio python-trio-typing python-trustme python-uvicorn)) (propagated-inputs (list python-charset-normalizer python-brotli python-certifi python-chardet python-httpcore python-idna python-rfc3986 python-sniffio)) (home-page "https://www.python-httpx.org/") (synopsis "HTTP client for Python") (description "HTTPX is a fully featured HTTP client for Python 3, which provides sync and async APIs, and support for both HTTP/1.1 and HTTP/2. HTTPX builds on the well-established usability of requests, and gives you: @itemize @item A broadly requests-compatible API. @item Standard synchronous interface, but with async support if you need it. @item HTTP/1.1 and HTTP/2 support. @item Ability to make requests directly to WSGI applications or ASGI applications. @item Strict timeouts everywhere. @item Fully type annotated. @item 99% test coverage. @end itemize Plus all the standard features of requests: @itemize @item International Domains and URLs @item Keep-Alive & Connection Pooling @item Sessions with Cookie Persistence @item Browser-style SSL Verification @item Basic/Digest Authentication @item Elegant Key/Value Cookies @item Automatic Decompression @item Automatic Content Decoding @item Unicode Response Bodies @item Multipart File Uploads @item HTTP(S) Proxy Support @item Connection Timeouts @item Streaming Downloads @item .netrc Support @item Chunked Requests @end itemize") (license license:bsd-3))) ;;; Variant used to break a cycle with python-uvicorn. (define-public python-httpx-bootstrap (hidden-package (package/inherit python-httpx (name "python-httpx-bootstrap") (arguments (list #:tests? #f)) (native-inputs (list python-hatchling python-hatch-fancy-pypi-readme)) (propagated-inputs (modify-inputs (package-propagated-inputs python-httpx) (replace "python-httpcore" python-httpcore-bootstrap)))))) (define-public python-wsgiprox (package (name "python-wsgiprox") (version "1.5.2") (source (origin (method url-fetch) (uri (pypi-uri "wsgiprox" version)) (sha256 (base32 "11fsm199pvwbmqx2lccznvws65aam1rqqv0w79gal8hispwgd5rs")))) (build-system python-build-system) (arguments ;; The test suite hangs (see: ;; https://github.com/webrecorder/wsgiprox/issues/6). `(#:tests? #f #:phases (modify-phases %standard-phases (add-after 'unpack 'fix-pytest-argument (lambda _ ;; See: https://github.com/webrecorder/wsgiprox/issues/7. (substitute* "setup.py" (("--doctest-module") "--doctest-modules"))))))) (propagated-inputs (list python-certauth python-gevent python-websocket-client)) (native-inputs (list python-mock python-pytest-cov python-waitress)) (home-page "https://github.com/webrecorder/wsgiprox") (synopsis "HTTP/S proxy with WebSockets over WSGI") (description "@code{wsgiprox} is a Python WSGI (Web Server Gateway Interface) middle-ware for adding HTTP and HTTPS proxy support to a WSGI application. The library accepts HTTP and HTTPS proxy connections, and routes them to a designated prefix.") (license license:asl2.0))) (define-public python-warcio ;; The PyPI release is missing some test support files (see: ;; https://github.com/webrecorder/warcio/issues/132). (let ((revision "0") (commit "aa702cb321621b233c6e5d2a4780151282a778be")) (package (name "python-warcio") (version (git-version "1.7.4" revision commit)) (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/webrecorder/warcio") (commit commit))) (file-name (git-file-name name version)) (sha256 (base32 "11afr6zy3r6rda81010iq496dazg4xid0izg3smg6ighpmvsnzf2")))) (build-system python-build-system) (arguments (list #:phases #~(modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "-vv" ;; These tests fail due to networking requirements. "-k" (format #f "not ~a" (string-join '("test_post_chunked" "test_remote" "test_capture_http_proxy" "test_capture_https_proxy" "test_capture_https_proxy_same_session") " and not "))))))))) (native-inputs ;; These inputs are required for the test suite. (list python-httpbin python-pytest-cov python-requests python-wsgiprox)) (home-page "https://github.com/webrecorder/warcio") (synopsis "Streaming web archival archive (WARC) library") (description "warcio is a Python library to read and write the WARC format commonly used in Web archives. It is designed for fast, low-level access to web archival content, oriented around a stream of WARC records rather than files.") (license license:asl2.0)))) (define-public python-websockets (package (name "python-websockets") (version "12.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/aaugustin/websockets") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "1a587a1knjsy9zmgab9v2yncx0803pg2hfcvf7kz6vs8ixaggqmh")))) (build-system python-build-system) (arguments (list #:phases #~(modify-phases %standard-phases (add-before 'check 'extend-test-timeout (lambda _ (setenv "WEBSOCKETS_TESTS_TIMEOUT_FACTOR" "10")))))) (home-page "https://github.com/aaugustin/websockets") (synopsis "Python implementation of the WebSocket Protocol (RFC 6455 & 7692)") (description "@code{websockets} is a library for building WebSocket servers and clients in Python with a focus on correctness and simplicity. Built on top of @code{asyncio}, Python's standard asynchronous I/O framework, it provides an elegant coroutine-based API.") (license license:bsd-3))) (define-public python-selenium (package (name "python-selenium") (version "3.141.0") (source (origin (method url-fetch) (uri (pypi-uri "selenium" version)) (sha256 (base32 "039hf9knvl4s3hp21bzwsp1g5ri9gxsh504dp48lc6nr1av35byy")))) (build-system python-build-system) (propagated-inputs (list python-urllib3)) (home-page "https://github.com/SeleniumHQ/selenium/") (synopsis "Python bindings for Selenium") (description "Selenium enables web browser automation. Selenium specifically provides infrastructure for the W3C WebDriver specification — a platform and language-neutral coding interface compatible with all major web browsers.") (license license:asl2.0))) (define-public python-rapidjson (package (name "python-rapidjson") (version "1.10") (source (origin (method url-fetch) (uri (pypi-uri "python-rapidjson" version)) (sha256 (base32 "0h1m9m4a5rlf5hw6ak7z3qbgdhmqarzxw9d140mcf7mrxpswpzmc")) (modules '((guix build utils))) (snippet '(delete-file-recursively "rapidjson")))) (build-system pyproject-build-system) (arguments (list #:test-flags '(list "tests") #:phases #~(modify-phases %standard-phases ;; We cannot seem to use #:configure-flags with the ;; pyproject-build-system to override rj_include_dir. (add-after 'unpack 'override-rapidjson-sources (lambda _ (substitute* "setup.py" (("^rj_include_dir =.*") (string-append "rj_include_dir = '" #$(this-package-native-input "rapidjson") "/include/rapidjson" "'")) (("if not os.path.isdir.*") "if False:"))))))) (native-inputs (list rapidjson python-pytest python-pytz)) (home-page "https://github.com/python-rapidjson/python-rapidjson") (synopsis "Python wrapper around rapidjson") (description "This package provides a python wrapper around rapidjson.") (license license:expat))) (define-public python-venusian (package (name "python-venusian") (version "3.0.0") (source (origin (method url-fetch) (uri (pypi-uri "venusian" version)) (sha256 (base32 "0f7f67dkgxxcjfhpdd5frb9pszkf04lyzzpn5069q0xi89r2p17n")))) (build-system python-build-system) (native-inputs `(("python-pytest" ,python-pytest) ("python-runner" ,python-pytest-runner) ("python-pytest-cov" ,python-pytest-cov))) (arguments '(#:test-target "pytest")) (home-page "https://docs.pylonsproject.org/projects/venusian") (synopsis "Library for deferring decorator actions") (description "Venusian is a library which allows framework authors to defer decorator actions. Instead of taking actions when a function (or class) decorator is executed at import time, you can defer the action usually taken by the decorator until a separate scan phase.") (license license:repoze))) (define-public python-zope-deprecation (package (name "python-zope-deprecation") (version "4.4.0") (source (origin (method url-fetch) (uri (pypi-uri "zope.deprecation" version)) (sha256 (base32 "1pz2cv7gv9y1r3m0bdv7ks1alagmrn5msm5spwdzkb2by0w36i8d")))) (build-system python-build-system) (native-inputs `()) (propagated-inputs `()) (home-page "https://zopedeprecation.readthedocs.io/") (synopsis "Function for marking deprecations") (description "The @code{zope.deprecation} module provides a function for marking modules, classes, functions, methods and properties as deprecated, displaying warnings when usaged in application code.") (license license:zpl2.1))) (define-public python-translationstring (package (name "python-translationstring") (version "1.3") (source (origin (method url-fetch) (uri (pypi-uri "translationstring" version)) (sha256 (base32 "0bdpcnd9pv0131dl08h4zbcwmgc45lyvq3pa224xwan5b3x4rr2f")))) (build-system python-build-system) (home-page "https://docs.pylonsproject.org/projects/translationstring") (synopsis "Internationalization tooling for the Pylons project") (description "This package provides a library used by various Pylons project packages for internationalization (i18n) duties related to translation.") (license license:repoze))) (define-public python-plaster (package (name "python-plaster") (version "1.0") (source (origin (method url-fetch) (uri (pypi-uri "plaster" version)) (sha256 (base32 "1hy8k0nv2mxq94y5aysk6hjk9ryb4bsd13g83m60hcyzxz3wflc3")))) (build-system python-build-system) (native-inputs (list python-pytest)) (home-page "https://docs.pylonsproject.org/projects/plaster/en/latest/") (synopsis "Configuration loader for multiple config file formats") (description "Plaster is a loader interface around multiple config file formats. It exists to define a common API for applications to use when they wish to load configuration. The library itself does not aim to handle anything except a basic API that applications may use to find and load configuration settings. Any specific constraints should be implemented in a pluggable loader which can be registered via an entrypoint.") (license license:repoze))) (define-public python-plaster-pastedeploy (package (name "python-plaster-pastedeploy") (version "0.7") (source (origin (method url-fetch) (uri (pypi-uri "plaster_pastedeploy" version)) (sha256 (base32 "1zg7gcsvc1kzay1ry5p699rg2qavfsxqwl17mqxzr0gzw6j9679r")))) (build-system python-build-system) (native-inputs (list python-pytest)) (propagated-inputs (list python-plaster python-pastedeploy)) (home-page "https://github.com/Pylons/plaster_pastedeploy") (synopsis "Plugin for python-plaster adding PasteDeploy syntax") (description "This plugin for @code{python-plaster} adds support for PasteDeploy syntax, it provides a plaster @code{Loader} object that can parse ini files according to the standard set by PasteDeploy") (license license:expat))) (define-public python-hupper (package (name "python-hupper") (version "1.10.3") (source (origin (method url-fetch) (uri (pypi-uri "hupper" version)) (sha256 (base32 "1nbc648d110jx6ziji980cdmzsd14p8fqrcarsdvr1vm5jvm2vyd")))) (build-system python-build-system) (arguments '(#:test-target "pytest")) (native-inputs (list python-pytest python-pytest-runner python-watchdog python-mock python-pytest-cov)) (propagated-inputs (list python-pytz)) (home-page "https://readthedocs.org/projects/hupper") (synopsis "Integrated process monitor tracking changes to imported Python files") (description "Hupper is an integrated process monitor that will track changes to any imported Python files in sys.modules as well as custom paths. When files are changed the process is restarted.") (license license:expat))) (define-public python-pyowm (package (name "python-pyowm") (version "3.3.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/csparpa/pyowm") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "1ha4pp96y3jk33qnyir5851cnj4dc06q6wqn1b0w54l3fsds28vi")))) (build-system pyproject-build-system) (arguments (list #:test-flags #~(list "tests/unit"))) (native-inputs (list python-pytest)) (propagated-inputs (list python-geojson-for-pyowm python-pysocks python-requests)) (home-page "https://github.com/csparpa/pyowm") (synopsis "Python wrapper around OpenWeatherMap web APIs") (description "This package provides a Python wrapper around OpenWeatherMap web APIs.") (license license:expat))) (define-public python-pyramid (package (name "python-pyramid") (version "1.10.4") (source (origin (method url-fetch) (uri (pypi-uri "pyramid" version)) (sha256 (base32 "0rkxs1ajycg2zh1c94xlmls56mx5m161sn8112skj0amza6cn36q")))) (build-system python-build-system) (propagated-inputs (list python-hupper python-plaster-pastedeploy python-translationstring python-venusian python-webob python-zope-deprecation python-zope-interface python-webtest python-zope-component python-plaster)) (home-page "https://trypyramid.com/") (synopsis "Python web-framework suitable for small and large sites") (description "Pyramid makes it easy to write web applications. From minimal request/response web apps to larger, grown applications.") (license license:repoze))) (define-public python-random-user-agent (package (name "python-random-user-agent") (version "1.0.1") (source (origin (method url-fetch) (uri (pypi-uri "random_user_agent" version)) (sha256 (base32 "04nhzdh2ki7ybhjrmghxci6hcm6i03vvin2q2ynj87fbr1pa534g")))) (build-system python-build-system) (home-page "https://github.com/Luqman-Ud-Din/random_user_agent") (synopsis "List of user agents") (description "This package provides a list of user agents, from a collection of more than 326,000 known user-agents. Users can pick a random one, or select one based on filters.") (license license:expat))) (define-public python-flask-restx (package (name "python-flask-restx") (version "0.5.1") (source ;; We fetch from the Git repo because there are no tests in the PyPI ;; archive. (origin (method git-fetch) (uri (git-reference (url "https://github.com/python-restx/flask-restx") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "18vrmknyxw6adn62pz3kr9kvazfgjgl4pgimdf8527fyyiwcqy15")))) (build-system python-build-system) (propagated-inputs (list python-aniso8601 python-flask python-jsonschema python-pytz)) (native-inputs (list python-blinker python-faker python-pytest python-pytest-benchmark python-pytest-flask python-pytest-mock)) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda _ (invoke "pytest" "--benchmark-skip" "-k" ;; Those tests need internet access (string-join '("not test_check and not test_valid_value_check \ and not test_override_app_level" "not test_redirect") " and "))))))) (home-page "https://github.com/python-restx/flask-restx") (synopsis "Framework for fast, easy and documented API development with Flask") (description "Flask-RESTX is an extension for Flask that adds support for quickly building REST APIs. Flask-RESTX encourages best practices with minimal setup. If you are familiar with Flask, Flask-RESTX should be easy to pick up. It provides a coherent collection of decorators and tools to describe your API and expose its documentation properly using Swagger.") (license license:bsd-3))) (define-public python-flask-restplus (deprecated-package "python-flask-restplus" python-flask-restx)) (define-public python-flask-socketio (package (name "python-flask-socketio") (version "5.0.1") (source (origin (method url-fetch) (uri (pypi-uri "Flask-SocketIO" version)) (sha256 (base32 "09r2gpj2nbn72v2zaf6xsvlazln77pgqzp2pg2021nja47sijhsw")))) (build-system python-build-system) (propagated-inputs (list python-flask python-socketio)) (arguments '(#:tests? #f)) ; Tests not included in release tarball. (home-page "https://github.com/miguelgrinberg/Flask-SocketIO/") (synopsis "Socket.IO integration for Flask applications") (description "Socket.IO integration for Flask applications") (license license:expat))) (define-public python-manuel (package (name "python-manuel") (version "1.10.1") (source (origin (method url-fetch) (uri (pypi-uri "manuel" version)) (sha256 (base32 "1bdzay7j70fly5fy6wbdi8fbrxjrrlxnxnw226rwry1c8a351rpy")))) (build-system python-build-system) (propagated-inputs (list python-six)) (native-inputs (list python-zope-testing)) (home-page "https://pypi.org/project/manuel/") (synopsis "Build tested documentation") (description "Manuel lets you mix and match traditional doctests with custom test syntax.") (license license:asl2.0))) (define-public python-pecan (package (name "python-pecan") (version "1.4.1") (source (origin (method git-fetch) ;no tests in pypi release (uri (git-reference (url "https://github.com/pecan/pecan") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "10lz0cqafx3j24m52vv9ph0bxrzyx6wv2dgz7g9kfm60lhaskqkh")))) (build-system python-build-system) (arguments (list #:phases #~(modify-phases %standard-phases (add-after 'unpack 'relax-requirements (lambda _ (substitute* "test-requirements.txt" ;; Drop extraneous virtualenv requirement. ((".*virtualenv.*") "")))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "-vv" "pecan"))))))) (native-inputs (list gunicorn python-genshi python-jinja2 python-pytest python-sqlalchemy uwsgi)) (propagated-inputs (list python-logutils python-mako python-six python-webob python-webtest)) (home-page "http://github.com/pecan/pecan") (synopsis "WSGI object-dispatching web framework") (description "This package provides a WSGI object-dispatching web framework, designed to be lean and fast, with few dependencies.") (license license:bsd-3))) (define-public python-persistent (package (name "python-persistent") (version "4.6.4") (source (origin (method url-fetch) (uri (pypi-uri "persistent" version)) (sha256 (base32 "0imm9ji03lhkpcfmhid7x5209ix8g2rlgki9ik1qxks4b8sm8gzq")))) (build-system python-build-system) (propagated-inputs (list python-cffi python-zope-interface)) (native-inputs (list python-manuel python-zope-testrunner)) (home-page "https://github.com/zopefoundation/persistent/") (synopsis "Translucent persistent objects") (description "This package contains a generic persistence implementation for Python. It forms the core protocol for making objects interact \"transparently\" with a database such as the ZODB.") (license license:zpl2.1))) (define-public python-btrees (package (name "python-btrees") (version "4.7.2") (source (origin (method url-fetch) (uri (pypi-uri "BTrees" version)) (sha256 (base32 "0iiq0g9k1g6qgqq84q9h6639vlvzznk1rgdm0rfcnnqkbkmsbr3w")))) (build-system python-build-system) (propagated-inputs (list python-persistent python-zope-interface)) (native-inputs (list python-persistent python-transaction python-zope-testrunner)) (home-page "https://github.com/zopefoundation/BTrees") (synopsis "Scalable persistent object containers") (description "This package contains a set of persistent object containers built around a modified BTree data structure. The trees are optimized for use inside ZODB's \"optimistic concurrency\" paradigm, and include explicit resolution of conflicts detected by that mechanism.") (license license:zpl2.1))) (define-public python-transaction (package (name "python-transaction") (version "3.0.0") (source (origin (method url-fetch) (uri (pypi-uri "transaction" version)) (sha256 (base32 "0bdaks31bgfh78wnj3sij24bfysmqk25crsis6amz8kzrc0d82iv")))) (build-system python-build-system) (propagated-inputs (list python-zope-interface)) (native-inputs (list python-coverage python-mock python-nose)) (home-page "https://github.com/zopefoundation/transaction") (synopsis "Transaction management for Python") (description "This package contains a generic transaction implementation for Python. It is mainly used by the ZODB.") (license license:zpl2.1))) (define-public python-robot-detection (package (name "python-robot-detection") (version "0.4") (source (origin (method url-fetch) (uri (pypi-uri "robot-detection" version)) (sha256 (base32 "1xd2jm3yn31bnk1kqzggils2rxj26ylxsfz3ap7bhr3ilhnbg3rx")))) (build-system python-build-system) (arguments '(#:tests? #f)) ; Tests not shipped in pypi release. (propagated-inputs (list python-six)) (home-page "https://github.com/rory/robot-detection") (synopsis "Detect web crawlers") (description "@code{robot_detection} is a python module to detect if a given HTTP User Agent is a web crawler. It uses the list of registered robots from @url{http://www.robotstxt.org}.") (license license:gpl3+))) (define-public python-robotframework-requests (package (name "python-robotframework-requests") (version "0.9.7") (source (origin (method git-fetch) ; no tests in PyPI release (uri (git-reference (url "https://github.com/MarketSquare/robotframework-requests") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "077j8p5k41v53slyv8h32fcmqfi7m6z3r4gmyqqaawm5szfmy61m")))) (build-system pyproject-build-system) (propagated-inputs (list python-requests python-robotframework)) (native-inputs (list python-pytest)) (home-page "https://github.com/MarketSquare/robotframework-requests") (synopsis "Robot Framework keyword library wrapper around requests") (description "@code{RequestsLibrary} is a @url{https://robotframework.org/, Robot Framework} library aimed to provide HTTP API testing functionalities by wrapping the @code{requests} Python library.") (license license:expat))) (define-public python-pysolr (package (name "python-pysolr") (version "3.9.0") (source (origin (method url-fetch) (uri (pypi-uri "pysolr" version)) (sha256 (base32 "1rj5jmscvxjwcmlfi6hmkj44l4x6n3ln5p7d8d18j566hzmmzw3f")))) (build-system python-build-system) (arguments '(#:tests? #f)) ; Tests require network access. (propagated-inputs (list python-requests)) (native-inputs (list python-setuptools-scm)) (home-page "https://github.com/django-haystack/pysolr/") (synopsis "Lightweight python wrapper for Apache Solr") (description "This module provides an interface that queries the Apache Solr server using a pure Python implementation.") (license license:bsd-3))) (define-public python-pyjsparser (package (name "python-pyjsparser") (version "2.7.1") (source (origin (method url-fetch) (uri (pypi-uri "pyjsparser" version)) (sha256 (base32 "0ycmf9fsvwliqmm1n6sfz7x71y7i2kbfgn39d8lsbiccfxmxlq5y")))) (build-system python-build-system) (home-page "https://github.com/PiotrDabkowski/pyjsparser") (synopsis "Fast JavaScript parser") (description "This package provides a fast JavaScript parser (based on esprima.js)") (license license:expat))) (define-public python-js2py (package (name "python-js2py") (version "0.71") (source (origin (method url-fetch) (uri (pypi-uri "Js2Py" version)) (sha256 (base32 "1kkzkys6dfcbdv51vqxr9cmak350ab4mmykb8dysx60lvl4i06x4")))) (build-system python-build-system) (arguments '(#:tests? #false)) ; none included (propagated-inputs (list python-pyjsparser python-six python-tzlocal)) (home-page "https://github.com/PiotrDabkowski/Js2Py") (synopsis "JavaScript to Python translator") (description "This package provides a JavaScript to Python translator and a JavaScript interpreter written in pure Python.") (license license:expat))) (define-public python-http-ece (package (name "python-http-ece") (version "1.1.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/web-push-libs/encrypted-content-encoding") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0bp4cc0xc123i72h80ax3qz3ixfwx3j7pw343kc7i6kdvfi8klx7")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'change-directory (lambda _ (chdir "python") #t))))) (propagated-inputs (list python-cryptography)) (native-inputs (list python-coverage python-flake8 python-mock python-nose)) (home-page "https://github.com/web-push-libs/encrypted-content-encoding") (synopsis "Encrypted Content Encoding for HTTP") (description "This package provices a simple implementation of Encrypted Content Encoding for HTTP.") (license license:expat))) (define-public python-cloud-init (package (name "python-cloud-init") (version "24.2") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/canonical/cloud-init") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "18872z2y9wkh558y1bx5r0rksb4i584jbc8z4g8marwawhwxq506")))) (build-system pyproject-build-system) (arguments (list #:test-flags '(list ;; This requires usermod "--ignore=tests/unittests/distros/test_create_users.py" ;; This writes to /var "--ignore=tests/unittests/net/test_dhcp.py" "-k" (string-append ;; This test messes with PATH, so it cannot find mkdir "not test_path_env_gets_set_from_main" " and not test_apt_configure_sources_list_" ;; These all fail because /bin/sh doesn't exist. We cannot patch ;; this because the generated scripts must use /bin/sh as they are ;; supposed to be run on minimal systems. " and not test_handler_creates_and_runs_bootcmd_script_with_instance_id" " and not test_handler_runs_bootcmd_script_with_error" " and not test_subp_combined_stderr_stdout" " and not test_handle_part")) #:phases #~(modify-phases %standard-phases (add-after 'unpack 'patch-references (lambda _ (substitute* "tests/unittests/cmd/test_clean.py" (("#!/bin/sh") (string-append "#!" (which "sh")))))) (add-after 'install 'move-files (lambda* (#:key inputs outputs #:allow-other-keys) (for-each (lambda (dir) (let ((source (string-append (site-packages inputs outputs) "/" dir)) (target (string-append #$output "/" (basename dir)))) (copy-recursively source target) (delete-file-recursively source))) (list "etc" "lib" "usr/lib" "usr/share"))))))) (propagated-inputs (list python-configobj python-jinja2 python-jsonpatch python-jsonschema python-netifaces python-oauthlib python-pyserial python-pyyaml python-responses)) (native-inputs (list procps ;for ps when running tests python-pytest python-pytest-cov python-pytest-mock python-passlib)) (home-page "https://github.com/canonical/cloud-init") (synopsis "Cloud instance initialization tools") (description "Cloud-init is the multi-distribution method for cross-platform cloud instance initialization. It is supported across all major public cloud providers, provisioning systems for private cloud infrastructure, and bare-metal installations.") ;; Either license can be chosen (license (list license:asl2.0 license:gpl3)))) (define-public python-cloudscraper (package (name "python-cloudscraper") (version "1.2.60") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/VeNoMouS/cloudscraper") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "00cmxgwdm0x1j4a4ipwvpzih735hdzidljbijk1b3laj3dgvnvsm")) (modules '((guix build utils))) (snippet '(with-directory-excursion "cloudscraper" (for-each delete-file '("captcha/9kw.py" "captcha/anticaptcha.py")) (substitute* "__init__.py" ;; Perhaps it's a joke, but don't promote proprietary software. (("([Th]is feature is not available) in the .*'" _ prefix) (string-append prefix ".'"))))))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases ;; XXX: Dependencies, that have not yet been packaged ;; and cause an import error when included. (add-after 'unpack 'drop-unsupported-sources (lambda _ (with-directory-excursion "cloudscraper" (for-each delete-file '("interpreters/v8.py"))))) (add-after 'unpack 'fix-references (lambda _ (substitute* "cloudscraper/interpreters/nodejs.py" (("'node'") (string-append "'" (which "node") "'"))))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "-vv" "-k" "not test_getCookieString_challenge_js_challenge1_16_05_2020"))))))) (inputs (list node)) (propagated-inputs (list python-js2py python-polling2 python-requests python-requests-toolbelt python-responses python-pyparsing)) (native-inputs (list python-pytest)) (home-page "https://github.com/venomous/cloudscraper") (synopsis "Cloudflare anti-bot bypass") (description "This module acts as a webbrowser solving Cloudflare's Javascript challenges.") (license license:expat))) (define-public python-imap-tools (package (name "python-imap-tools") (version "1.6.0") (source (origin (method git-fetch) ; no tests in PyPI release (uri (git-reference (url "https://github.com/ikvk/imap_tools") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0w4x5l5w7rz1mrmbbjbfqbf3f5p89wi2fw245yvg8k98zgy012sg")))) (arguments (list #:test-flags ;; Tests require a network connection #~(list "-k" (string-append "not test_action" " and not test_attributes" " and not test_connection" " and not test_folders" " and not test_idle" " and not test_live")))) (build-system pyproject-build-system) (native-inputs (list python-pytest)) (home-page "https://github.com/ikvk/imap_tools") (synopsis "Work with email and mailbox by IMAP") (description "This Python library provides tools to deal with email and mailboxes over IMAP: @itemize @item Parsed email message attributes @item Query builder for searching emails @item Work with emails in folders (copy, delete, flag, move, seen) @item Work with mailbox folders (list, set, get, create, exists, rename, delete, status) @end itemize") (license license:asl2.0))) (define-public python-giturlparse (package (name "python-giturlparse") (version "0.10.0") (source (origin (method url-fetch) (uri (pypi-uri "giturlparse" version)) (sha256 (base32 "0dxk7sqy8ibaqdl6jzxd0ac1p7shzp4p9f3lhkd7qw9h3llsp595")))) (build-system python-build-system) (home-page "https://github.com/nephila/giturlparse") (synopsis "Git URL parsing module") (description "This package provides a git URL parsing module which supports parsing and rewriting of remote git URLs from various hosting providers.") (license license:asl2.0))) (define-public python-hstspreload (package (name "python-hstspreload") (version "2020.10.20") (source (origin (method url-fetch) (uri (pypi-uri "hstspreload" version)) (sha256 (base32 "1qah80p2xlib1rhivvdj9v5y3girxrj7dwp1mnh8mwaj5wy32y8a")))) (build-system python-build-system) (home-page "https://github.com/sethmlarson/hstspreload") (synopsis "Chromium HSTS Preload list as a Python package") (description "@code{python-hstspreload} contains Chromium HSTS Preload list as a Python package.") (license license:bsd-3))) (define-public python-sanic-routing (package (name "python-sanic-routing") (version "23.12.0") (source (origin (method url-fetch) (uri (pypi-uri "sanic-routing" version)) (sha256 (base32 "014bhkharcgyprdvlk7wjxhjp1pr0cva1nwj4f2qrr23qiidrjhx")))) (build-system pyproject-build-system) (arguments ;; PyPi sources does not contain tests, recursive dependency on ;; python-sanic. (list #:tests? #f)) (home-page "https://github.com/sanic-org/sanic-routing/") (synopsis "Routing component for Sanic") (description "Internal package for @code{python-sanic}, which provides the @code{BasicRouter}.") (license license:expat))) (define-public python-sanic-testing (package (name "python-sanic-testing") (version "23.12.0") (source (origin (method url-fetch) (uri (pypi-uri "sanic-testing" version)) (sha256 (base32 "0gqkzv90sbj9rw7yfly9c58lq9dq30g5hhcgjl3ihzjb66vm571b")))) (build-system pyproject-build-system) (arguments ;; PyPi sources does not contain tests, recursive dependency on ;; python-sanic. (list #:tests? #f)) (propagated-inputs (list python-httpx python-sanic-bootstrap)) (home-page "https://github.com/sanic-org/sanic-testing/") (synopsis "Test clients for Sanic") (description "Internal package for @code{python-sanic}, which is meant to be the core testing utility and clients for testing Sanic applications.") (license license:expat))) (define-public python-sanic (package (name "python-sanic") (version "23.12.1") (source (origin (method url-fetch) (uri (pypi-uri "sanic" version)) (sha256 (base32 "115vnir4qijv89139g5h0i4l0n4w3bgh1ickgnk8xidxsa0wla15")))) (build-system pyproject-build-system) (arguments (list #:test-flags '(list "-k" (string-append ;; PyPi sources lack examples module. "not test_gunicorn_" ;; Does not expect brotli and reordered headers. " and not test_raw_headers" ;; These look like buggy testcases. " and not test_zero_downtime" " and not test_non_default_uvloop_config_raises_warning" " and not test_listeners_triggered" " and not test_keep_alive_connection_context" " and not test_keep_alive_client_timeout" ;; Unclear why they fail since core-updates merge. " and not test_missing_sni" " and not test_no_matching_cert" " and not test_wildcards" ;; These tests fail because subprotocols appear to be ;; parameterized as None " and not test_websocket_route_with_subprotocols" ;; AF_UNIX path too long " and not test_setup_and_teardown_unix" " and not test_configure_socket" ;; Freezes " and not test_server_run_with_repl")) #:phases #~(modify-phases %standard-phases (replace 'check (lambda* (#:key tests? test-flags #:allow-other-keys) (when tests? (apply invoke "pytest" "-vv" "./tests" test-flags))))))) (propagated-inputs (list python-aiofiles python-aioquic python-html5tagger python-httptools python-multidict python-sanic-routing python-tracerite python-typing-extensions python-ujson python-uvloop python-websockets)) (native-inputs (list python-bandit python-beautifulsoup4 python-chardet python-coverage python-cryptography python-docutils python-mypy python-pygments python-pytest python-pytest-benchmark python-pytest-sanic python-sanic-testing python-slotscheck python-towncrier python-tox python-types-ujson python-uvicorn)) (home-page "https://github.com/sanic-org/sanic/") (synopsis "Async Python web server/framework") (description "Sanic is a Python web server and web framework that's written to go fast. It allows the usage of the @code{async/await} syntax added in Python 3.5, which makes your code non-blocking and speedy.") (license license:expat))) (define-public python-sanic-bootstrap (package (inherit python-sanic) (name "python-sanic-bootstrap") (arguments (list #:tests? #f)) (native-inputs '()))) (define-public python-socketio (package (name "python-socketio") (version "5.1.0") (source (origin (method url-fetch) (uri (pypi-uri "python-socketio" version)) (sha256 (base32 "14vhpxdn54lz54mhcqlgcks0ssbws9gd1y7ii16a2g3gpfdc531k")))) (build-system python-build-system) (propagated-inputs (list python-aiohttp python-bidict python-engineio python-requests python-websocket-client python-websockets)) (arguments '(#:tests? #f)) ; Tests not included in release tarball. (home-page "https://github.com/miguelgrinberg/python-socketio/") (synopsis "Python Socket.IO server") (description "Python implementation of the Socket.IO realtime client and server.") (license license:expat))) (define-public python-socks (package (name "python-socks") (version "2.0.3") (source (origin (method url-fetch) (uri (pypi-uri "python-socks" version)) (sha256 (base32 "12msk06c0glljcrx1byd78xgv05lxw81vknqwhn8ccs7an7cmag3")))) (build-system python-build-system) (arguments `(#:tests? #f ; tests not included #:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "tests/" "-s"))))))) (propagated-inputs (list python-async-timeout python-curio python-trio)) (native-inputs (list python-pytest)) (home-page "https://github.com/romis2012/python-socks") (synopsis "Core proxy (SOCKS4, SOCKS5, HTTP tunneling) functionality for Python") (description "Socks is a library providing core proxy (SOCKS4, SOCKS5, HTTP tunneling) functionality.") (license license:asl2.0))) (define-public python-socksio (package (name "python-socksio") (version "1.0.0") (source (origin (method url-fetch) (uri (pypi-uri "socksio" version)) (sha256 (base32 "1b64j45w35jzhjhnq44bnyad9ydh1iyyd7a6j2c8phxmllyyp2zq")))) (build-system python-build-system) (home-page "https://github.com/sethmlarson/socksio") (synopsis "Sans-I/O implementation of SOCKS4, SOCKS4A, and SOCKS5") (description "The @code{socksio} Python module is a client-side sans-I/O SOCKS proxy implementation. It supports SOCKS4, SOCKS4A, and SOCKS5. @code{socksio} is a sans-I/O library similar to @code{h11} or @code{h2}; this means the library itself does not handle the actual sending of the bytes through the network, it only deals with the implementation details of the SOCKS protocols. It can be paired with any I/O library.") (license license:expat))) (define-public python-siosocks (package (name "python-siosocks") (version "0.3.0") (source (origin (method url-fetch) (uri (pypi-uri "siosocks" version)) (sha256 (base32 "0qqxy8wl5mrmlkblzjq9nsg0cbm5jwgj409mhnhq6gd1ypvbndms")))) (build-system python-build-system) (arguments (list #:phases #~(modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "-vvv"))))))) (native-inputs (list python-pytest python-pytest-asyncio python-pytest-cov python-pytest-trio)) (propagated-inputs (list python-trio)) (home-page "https://github.com/pohmelie/siosocks") (synopsis "SOCKSv4 & SOCKSv5 TCP proxy protocol implementation in Python") (description "This package provides a Python module and framework for sans-io socks proxy client/server with couple io backends. Features: @itemize @item Only TCP connect (no BIND, no UDP) @item Both client and server @item SOCKS versions: 4, 4a, 5 @item SOCKSv5 auth: no auth, username/password @item Couple io backends: @code{asyncio}, @code{trio}, @code{socketserver} @item One-shot socks server (@code{python -m siosocks}) @end itemize") (license license:expat))) (define-public python-msrest (package (name "python-msrest") (version "0.6.21") (source (origin (method url-fetch) (uri (pypi-uri "msrest" version)) (sha256 (base32 "1n389m3hcsyjskzimq4j71nyw9pjkrp0n5wg1q2c4bfwpv3inrkj")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "-k" ;; These attempt to connect to bing.com. (string-append "not test_basic_aiohttp" " and not test_basic_async_requests" " and not test_conf_async_requests" " and not test_conf_async_trio_requests" " and not test_basic_aiohttp" " and not test_basic_async_requests" " and not test_conf_async_requests" " and not test_conf_async_trio_requests")))))))) (propagated-inputs (list python-aiohttp python-certifi python-isodate python-requests python-requests-oauthlib)) (native-inputs (list python-httpretty python-pytest python-pytest-aiohttp python-pytest-asyncio python-pytest-trio)) (home-page "https://github.com/Azure/msrest-for-python") (synopsis "AutoRest swagger generator Python client runtime") (description "This package provides the runtime library @code{msrest} for AutoRest-generated Python clients.") (license license:expat))) (define-public python-azure-nspkg (package (name "python-azure-nspkg") (version "3.0.2") (source (origin (method url-fetch) (uri (pypi-uri "azure-nspkg" version ".zip")) (sha256 (base32 "1l4xwdh0fcnvrv0mzig4g2kgqkfbsy64zjm1ggc6grk3mykcxlz7")))) (build-system python-build-system) (native-inputs (list unzip)) (home-page "https://github.com/Azure/azure-sdk-for-python") (synopsis "Azure namespace internals") (description "This package is an internal Azure namespace package.") (license license:expat))) (define-public python-azure-storage-nspkg (package (name "python-azure-storage-nspkg") (version "3.1.0") (source (origin (method url-fetch) (uri (pypi-uri "azure-storage-nspkg" version)) (sha256 (base32 "049qcmgshz7dj9yaqma0fwcgbxwddgwyfcw4gmv45xfmaa3bwfvg")))) (build-system python-build-system) (propagated-inputs (list python-azure-nspkg)) (home-page "https://github.com/Azure/azure-storage-python") (synopsis "Microsoft Azure Storage Namespace package") (description "This project provides a client library in Python that makes it easy to communicate with Microsoft Azure Storage services.") (license license:expat))) (define-public python-azure-common (package (name "python-azure-common") (version "1.1.28") (source (origin (method url-fetch) (uri (pypi-uri "azure-common" version ".zip")) (sha256 (base32 "18q4cy1xl2zly3rk7a1sc14w932x59r8c9j4d8dnlsz32hrcvh2a")))) (build-system python-build-system) (propagated-inputs (list python-azure-nspkg)) (native-inputs (list unzip)) (home-page "https://github.com/Azure/azure-sdk-for-python") (synopsis "Microsoft Azure Client library for Python") (description "This package provides the Microsoft Azure Client library for Python.") (license license:expat))) (define-public python-azure-core (package (name "python-azure-core") (version "1.24.0") (source (origin (method url-fetch) (uri (pypi-uri "azure-core" version ".zip")) (sha256 (base32 "1r8bpn3zz02mj00qbaks5qq49wqd3mznkm90bchd1mxa3w21nnrl")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key inputs outputs tests? #:allow-other-keys) (when tests? ;; This fails because devtools_testutils doesn't exist. (delete-file "tests/test_connection_string_parsing.py") ;; Needs network. (for-each delete-file '("tests/async_tests/test_streaming_async.py" "tests/test_streaming.py")) (add-installed-pythonpath inputs outputs) (setenv "PYTHONPATH" (string-append (getcwd) "/tests/testserver_tests/coretestserver:" (getenv "GUIX_PYTHONPATH"))) (invoke "pytest" ;; Most of these need network access. "-m" "not asyncio and not live_test_only" "-k" ;; These need network access. (string-append "not test_example_raw_response_hook" " and not test_example_headers_policy" " and not test_example_request_id_policy" " and not test_example_user_agent_policy" " and not test_example_requests" " and not test_example_pipeline" " and not test_example_pipeline_client" " and not test_example_redirect_policy" " and not test_example_no_redirects" " and not test_example_retry_policy" " and not test_example_no_retries" " and not test_decompress_plain_no_header" " and not test_compress_plain_no_header" " and not test_decompress_compressed_no_header")))))))) (propagated-inputs (list python-aiohttp python-requests python-six python-trio python-typing-extensions)) (native-inputs (list python-flask python-msrest python-pytest python-pytest-aiohttp python-pytest-asyncio python-pytest-trio unzip)) (home-page "https://github.com/Azure/azure-sdk-for-python") (synopsis "Microsoft Azure Core library for Python") (description "This package provides the Microsoft Azure Core library for Python.") (license license:expat))) (define-public python-azure-storage-blob (package (name "python-azure-storage-blob") (version "12.12.0") (source (origin (method url-fetch) (uri (pypi-uri "azure-storage-blob" version ".zip")) (sha256 (base32 "1xv23ph822qywjxs81say9xi5dzmvxcii6sww6d1hvd83iyz1npn")))) (build-system python-build-system) (propagated-inputs (list python-azure-core python-cryptography python-msrest)) (native-inputs (list unzip)) (home-page "https://github.com/Azure/azure-sdk-for-python/") (synopsis "Microsoft Azure Blob Storage client library for Python") (description "This package provides the Microsoft Azure Blob Storage Client Library for Python.") (license license:expat))) (define-public python-google-crc32c (package (name "python-google-crc32c") (version "1.3.0") (source (origin (method url-fetch) (uri (pypi-uri "google-crc32c" version)) (sha256 (base32 "1ps4qaccij6cixs91772y9f9r1n702yfzy4qqmds6x5h7qkycv97")))) (build-system python-build-system) (native-inputs (list python-pytest)) (home-page "https://github.com/googleapis/python-crc32c") (synopsis "Python wrapper of Google CRC32C") (description "This package provides a Python wrapper of the C library implementation of the CRC32C hashing algorithm.") (license license:asl2.0))) (define-public python-google-auth (package (name "python-google-auth") (version "2.34.0") (source (origin (method url-fetch) (uri (pypi-uri "google_auth" version)) (sha256 (base32 "1k04kkg5n3pi4awjxxsa50ail68wwf2gklmb686v46aw8fb77f4f")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest"))))))) (propagated-inputs (list python-cachetools python-cryptography python-pyasn1-modules python-rsa python-six)) (native-inputs (list nss-certs-for-test python-flask python-freezegun python-mock python-oauth2client python-pyopenssl python-pytest python-pytest-localserver python-pyu2f python-requests python-responses)) (home-page "https://github.com/googleapis/google-auth-library-python") (synopsis "Google Authentication Library") (description "This library simplifies using Google's various server-to-server authentication mechanisms to access Google APIs.") (license license:asl2.0))) (define-public python-google-resumable-media (package (name "python-google-resumable-media") (version "2.3.2") (source (origin (method url-fetch) (uri (pypi-uri "google-resumable-media" version)) (sha256 (base32 "04qm6rd4mpbbym8ci5xrb6fymc3mmm8x2z9f43q5iwbr3s5lx4h6")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? ;; The system tests fail to find test_utils.retry. (delete-file-recursively "tests/system/") (invoke "pytest"))))))) (propagated-inputs (list python-google-crc32c)) (native-inputs (list python-google-auth python-mock python-pytest python-requests python-test-utils)) (home-page "https://github.com/googleapis/google-resumable-media-python") (synopsis "Utilities for Google Media Downloads and Resumable Uploads") (description "This package provides utilities for Google Media Downloads and Resumable Uploads.") (license license:asl2.0))) (define-public python-googleapis-common-protos (package (name "python-googleapis-common-protos") (version "1.56.4") (source (origin (method url-fetch) (uri (pypi-uri "googleapis-common-protos" version)) (sha256 (base32 "05s4dszqd5pjwjh4bdic40v1v447k0a3dynsrgypqf3rfb276n62")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest"))))))) (propagated-inputs (list python-protobuf)) (native-inputs (list python-pytest)) (home-page "https://github.com/googleapis/python-api-common-protos") (synopsis "Common protobufs used in Google APIs") (description "This package contains Python classes generated from the common protos in the @code{googleapis/api-common-protos} repository.") (license license:asl2.0))) (define-public python-google-api-core (package (name "python-google-api-core") (version "2.7.3") (source (origin (method url-fetch) (uri (pypi-uri "google-api-core" version)) (sha256 (base32 "0ydwvg9gzp75cd11s62db5w3jhj643yrw095rv95psfb0h3pz58p")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? ;; These don't work because it doesn't find AsyncMock even when ;; we add it to the inputs. (for-each delete-file '("tests/asyncio/test_page_iterator_async.py" "tests/asyncio/test_retry_async.py")) (invoke "pytest"))))))) (propagated-inputs (list python-google-auth python-googleapis-common-protos python-protobuf python-proto-plus python-requests)) (native-inputs (list python-mock python-pytest python-pytest-asyncio)) (home-page "https://github.com/googleapis/python-api-core") (synopsis "Google API client core library") (description "This library defines common helpers used by all Google API clients.") (license license:asl2.0))) (define-public python-google-cloud-core (package (name "python-google-cloud-core") (version "2.3.0") (source (origin (method url-fetch) (uri (pypi-uri "google-cloud-core" version)) (sha256 (base32 "0sa66kidgr32dfq9ngha9l362xnqvnqqmssn5my1gd3lc6g65apx")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest"))))))) (propagated-inputs (list python-google-api-core python-google-auth)) (native-inputs (list python-grpcio python-pytest)) (home-page "https://github.com/googleapis/python-cloud-core") (synopsis "Google Cloud API client core library") (description "This library defines common helpers (e.g. base @code{Client} classes) used by all of the @code{google-cloud-*} packages.") (license license:asl2.0))) (define-public python-google-cloud-storage (package (name "python-google-cloud-storage") (version "2.3.0") (source (origin (method url-fetch) (uri (pypi-uri "google-cloud-storage" version)) (sha256 (base32 "0nwg9ic29s70kpvi71gmjv1y4w5a3vc9gj6d16f8w8hpbvgb1jzl")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (for-each delete-file-recursively (list ;; The system tests fail to find test_utils.retry. "tests/system/" ;; Needs docker. "tests/conformance/")) (invoke "pytest"))))))) (native-inputs (list python-mock python-pytest python-test-utils)) (propagated-inputs (list python-google-api-core python-google-auth python-google-cloud-core python-google-resumable-media python-protobuf python-requests)) (home-page "https://github.com/googleapis/python-storage") (synopsis "Google Cloud Storage API client library") (description "Google Cloud Storage allows you to store data on Google infrastructure, and it can be used to distribute large data objects to users via direct download. This package provides a Google Cloud Storage API client library for Python.") (license license:asl2.0))) (define-public python-smart-open (package (name "python-smart-open") (version "6.0.0") (source (origin (method url-fetch) (uri (pypi-uri "smart_open" version)) (sha256 (base32 "1c12ilanx9hgpcc5chjkaqnx1hx14iazyindy7syvjhbdywhc0fn")))) (build-system python-build-system) (arguments `(#:tests? #false ;none included #:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest"))))))) (propagated-inputs (list python-azure-common python-azure-core python-azure-storage-blob python-boto3 python-google-cloud-storage python-requests)) (native-inputs (list python-flask python-flask-cors python-graphql-core python-moto python-paramiko python-pathlib2 python-pytest python-pytest-rerunfailures python-responses)) (home-page "https://github.com/piskvorky/smart_open") (synopsis "Utilities for streaming large files") (description "This package provides utilities for streaming large files (S3, HDFS, GCS, Azure Blob Storage, gzip, bz2, etc.)") (license license:expat))) (define-public python-w3lib (package (name "python-w3lib") (version "2.1.2") (source (origin (method url-fetch) (uri (pypi-uri "w3lib" version)) (sha256 (base32 "1cd4b3w5g3pfccsg79kjj27fwi216ip927rjq7isp8pfjzlp8nzd")))) (build-system pyproject-build-system) (native-inputs (list python-pytest)) (home-page "https://github.com/scrapy/w3lib") (synopsis "Python library of web-related functions") (description "This is a Python library of web-related functions, such as: remove comments, or tags from HTML snippets, extract base url from HTML snippets, translate entities on HTML strings, among other things.") (license license:bsd-3))) (define-public python-webcolors (package (name "python-webcolors") (version "1.11.1") (source (origin (method url-fetch) (uri (pypi-uri "webcolors" version)) (sha256 (base32 "1rkda75h2p65zx6r84c9mjavn4xpviqvqrklvdvcklapd5in1wvn")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? inputs outputs #:allow-other-keys) (when tests? (add-installed-pythonpath inputs outputs) (invoke "pytest"))))))) (native-inputs (list python-pytest)) (home-page "https://github.com/ubernostrum/webcolors") (synopsis "HTML/CSS color definitions library") (description "@code{python-webcolors} is a module for working with HTML/CSS color definitions. Normalizing and converting between the following formats is supported. @itemize @item Specification-defined color names @item Six-digit hexadecimal @item Three-digit hexadecimal @item Integer rgb() triplet @item Percentage rgb() triplet @end itemize Only the RGB colorspace is supported. Conversion to/from the HSL colorspace can be handled by the @code{colorsys} module in the Python standard library.") (license license:bsd-3))) (define-public python-woob (package (name "python-woob") (version "3.0") (source (origin (method url-fetch) (uri (pypi-uri "woob" version)) (sha256 (base32 "09hpxy5zhn2b8li0xjf3zd7s46lawb0315p5mdcsci3bj3s4v1j7")))) (build-system python-build-system) ;; A small number of tests for optional applications fails due to missing ;; inputs. (arguments `(#:tests? #f)) (propagated-inputs (list python-babel python-colorama python-cssselect python-dateutil python-feedparser python-html2text python-lxml python-pillow python-prettytable python-pyqt python-pyyaml python-requests python-six python-unidecode)) (native-inputs (list python-coverage python-flake8 python-nose python-selenium python-xunitparser)) (home-page "https://woob.tech/") (synopsis "Woob, Web Outside Of Browsers") (description "Woob is a collection of applications able to interact with websites, without requiring the user to open them in a browser. It also provides well-defined APIs to talk to websites lacking one.") (license license:lgpl3+))) (define-public python-flask-combo-jsonapi (package (name "python-flask-combo-jsonapi") (version "1.1.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/AdCombo/flask-combo-jsonapi") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "07fhcjiyif80z1vyh35za29sqx1mmqh568jrbrrs675j4a797sj1")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (add-after 'unpack 'loosen-requirements (lambda _ ;; Don't pin specific versions of dependencies. (substitute* "requirements.txt" (("^sqlalchemy[=<>].*") "sqlalchemy\n") (("^marshmallow[=<>].*") "marshmallow\n") (("^Flask[=<>].*") "Flask\n")))) (replace 'check (lambda _ (invoke "pytest" "-vv" "-k" ;; The following test fails for unknown reasons (see: ;; https://github.com/AdCombo/flask-combo-jsonapi/issues/66). "not test_get_list_with_simple_filter_\ relationship_custom_qs_api")))))) (propagated-inputs (list python-flask python-marshmallow python-marshmallow-jsonapi python-simplejson python-sqlalchemy python-apispec python-simplejson python-six)) (native-inputs (list python-coverage python-coveralls python-pytest python-pytest-runner)) (home-page "https://github.com/AdCombo/flask-combo-jsonapi") (synopsis "Flask extension to quickly create JSON:API 1.0 REST Web APIs") (description "Flask-COMBO-JSONAPI is a Python Flask extension for building REST Web APIs compliant with the @uref{https://jsonapi.org, JSON:API 1.0} specification. It tries to combine the power of Flask-Restless with the flexibility of Flask-RESTful to quickly build APIs that fit the complexity of existing real-life projects with legacy data and diverse storage providers.") (license license:expat))) (define-public python-mwparserfromhell (package (name "python-mwparserfromhell") (version "0.6.3") (source (origin (method url-fetch) (uri (pypi-uri "mwparserfromhell" version)) (sha256 (base32 "0zh9zaqbac18s7mivqk8am9xw97lfkgcj9hhxj0d4208pkqpkmqs")))) (build-system python-build-system) (native-inputs (list python-pytest python-pytest-runner)) (home-page "https://github.com/earwig/mwparserfromhell") (synopsis "Python parser for MediaWiki wikicode") (description "The MediaWiki Parser From Hell is a python library package that provides a parser for MediaWiki. It exposes parses as normal string objects with additional methods giving access to the special Wikicode features it contains (hyperlinks, tags, templates…). The parser doesn't interpolate strings at all, it remains at a purely formal level. Full documentation may be found at @uref{https://mwparserfromhell.readthedocs.io, ReadTheDocs}") (license license:expat))) (define-public python-tweepy (package (name "python-tweepy") (version "4.4.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/tweepy/tweepy") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0jl3j20iqvzqqw5q5ldval5wrc2pdx94zff3b6b87j51yjx3qjhr")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "python" "-m" "unittest" "discover" "tests"))))))) (propagated-inputs (list python-aiohttp python-requests python-requests-oauthlib)) (native-inputs (list python-vcrpy)) (home-page "https://www.tweepy.org/") (synopsis "Twitter library for Python") (description "This package provides @code{Tweepy}, an easy-to-use Python library for accessing the Twitter API.") (license license:expat))) (define-public python-quart (package (name "python-quart") (version "0.17.0") (source (origin (method url-fetch) (uri (pypi-uri "Quart" version)) (sha256 (base32 "0h4n2dwzmqifya1razp9s7ppr4ra23ljac9v7sl039rzp3c17wic")))) (build-system python-build-system) (propagated-inputs (list hypercorn python-aiofiles python-blinker python-click python-itsdangerous python-jinja2 python-markupsafe python-toml python-werkzeug)) (home-page "https://gitlab.com/pgjones/quart/") (synopsis "Python ASGI web microframework with the same API as Flask") (description "This package provides a Python ASGI web microframework with the same API as Flask.") (license license:expat))) (define-public python-ajsonrpc (package (name "python-ajsonrpc") (version "1.2.0") (source (origin (method url-fetch) (uri (pypi-uri "ajsonrpc" version)) (sha256 (base32 "17x1a4r4l428mhwn53abki9gzdzq3halyr4lj48fw3dzy0caq6vr")))) (build-system python-build-system) (propagated-inputs (list python-quart python-sanic python-tornado)) (home-page "https://github.com/pavlov99/ajsonrpc") (synopsis "Async JSON-RPC 2.0 protocol and server") (description "This package provides a Python JSON-RPC 2.0 protocol and server powered by asyncio.") (license license:expat))) (define-public python-protego (package (name "python-protego") (version "0.2.1") (source (origin (method url-fetch) (uri (pypi-uri "Protego" version)) (sha256 (base32 "1wigcjyhz8zbk562zhgfbkm733dcn65j1swzvki79dys0i1nsrnz")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest"))))))) (propagated-inputs (list python-six)) (native-inputs (list python-pytest)) (home-page "https://github.com/scrapy/protego") (synopsis "Pure-Python robots.txt parser with support for modern conventions") (description "Pure-Python robots.txt parser with support for modern conventions.") (license license:bsd-3))) (define-public python-parsel (package (name "python-parsel") (version "1.8.1") (source (origin (method url-fetch) (uri (pypi-uri "parsel" version)) (sha256 (base32 "0f8yh30y3961a7kqwcnp4j3s7044ilakykiavc0skwdkr5l8xwmg")))) (build-system pyproject-build-system) (propagated-inputs (list python-cssselect python-jmespath python-lxml python-typing-extensions python-w3lib)) (native-inputs (list python-psutil python-pytest)) (home-page "https://github.com/scrapy/parsel") (synopsis "Extract data from HTML and XML using XPath and CSS selectors") (description "Parsel is a library to extract and remove data from HTML and XML using XPath and CSS selectors, optionally combined with regular expressions.") (license license:bsd-3))) (define-public python-scrapy (package (name "python-scrapy") (version "2.11.1") (source (origin (method url-fetch) (uri (pypi-uri "Scrapy" version)) (sha256 (base32 "1giyyzwcybmh0yf3aq44hhmf9m4k40rva418pxljpr93fjf06fkk")))) (build-system pyproject-build-system) (arguments (list #:test-flags ;; Tests fail with DNS lookup or need a display. #~(list "-k" (string-append "not " (string-join (list "test_SCRAPY_CHECK_set" "test_check_all_default_contracts" "test_check_cb_kwargs_contract" "test_check_returns_items_contract" "test_check_returns_requests_contract" "test_check_scrapes_contract" "test_pformat" "test_pformat_old_windows" "test_pformat_windows") " and not "))))) (propagated-inputs (list python-botocore ; Optional: For S3FeedStorage class. python-cryptography python-cssselect python-itemadapter python-itemloaders python-lxml python-parsel python-protego python-pydispatcher python-pyopenssl python-queuelib python-service-identity python-setuptools python-tldextract python-twisted python-w3lib python-zope-interface)) (native-inputs (list python-pexpect python-pytest python-pytest-xdist python-pyftpdlib python-sybil python-testfixtures python-uvloop)) (home-page "https://scrapy.org") (synopsis "High-level Web crawling and Web scraping framework") (description "Scrapy is a fast high-level web crawling and web scraping framework, used to crawl websites and extract structured data from their pages. It can be used for a wide range of purposes, from data mining to monitoring and automated testing.") (license license:bsd-3))) (define-public python-jstyleson (package (name "python-jstyleson") (version "0.0.2") (source (origin (method url-fetch) (uri (pypi-uri "jstyleson" version)) (sha256 (base32 "13ihw6jqwkg3ai4xb83kw39pvh73b2wg6ld3wvj5jaasn7rh6038")))) (build-system python-build-system) (arguments (list #:tests? #f)) ;no tests in pypi release (home-page "https://github.com/linjackson78/jstyleson") (synopsis "JSON parser supporting js-style comments") (description "@code{jstyleson} is a Python library to parse JSON. Contrary to the standard Python @code{json} library, it understands js-style comments. Trailing comma is also supported.") (license license:expat))) (define-public python-html-text (package (name "python-html-text") (version "0.5.2") (source (origin (method url-fetch) (uri (pypi-uri "html_text" version)) (sha256 (base32 "1v9x171l3bmyayc1144nrkn9410lp4lhlrrjii54j7b5f2xipmmg")))) (build-system python-build-system) (native-inputs (list python-pytest)) (propagated-inputs (list python-lxml)) (home-page "https://github.com/TeamHG-Memex/html-text") (synopsis "Extract text from HTML") (description "HTML to Text is a Python library for extract text from HTML. Contrary to other solution such as LXML or Beautiful Soup, the text extracted with @code{html_text} does not contain elements such as JavaScript or inline styles not normally visible to users. It also normalizes white space characters in a smarter, more visually pleasing style.") (license license:expat))) (define-public python-mf2py (package (name "python-mf2py") (version "1.1.2") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/microformats/mf2py") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "00pzfc5sl6ywlcr6f2k37n3f2bb7w488p2k95ixzjwx6w3yh747n")))) (build-system python-build-system) (arguments (list #:phases #~(modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "-vv" "test"))))))) (native-inputs (list python-mock python-pytest)) (propagated-inputs (list python-beautifulsoup4 python-html5lib python-requests)) (home-page "https://github.com/microformats/mf2py") (synopsis "Python Microformats2 parser") (description "This Python library provides a Microformats2 parser implementing the full Microformats2 (mf2) specification, including backward compatibility with Microformats1 (mf1).") (license license:expat))) (define-public python-extruct (package (name "python-extruct") (version "0.16.0") (source (origin (method git-fetch) ;for tests (uri (git-reference (url "https://github.com/scrapinghub/extruct") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1s05sz6nghrap1gjkg3vsqz6djld6lczd6w3r1542ir8n7binl7a")))) (build-system python-build-system) (arguments (list #:phases #~(modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "-vv" "tests"))))))) (native-inputs (list python-pytest)) (propagated-inputs (list python-html-text python-jstyleson python-lxml python-mf2py python-pyrdfa3 python-rdflib python-w3lib)) (home-page "https://github.com/scrapinghub/extruct") (synopsis "Extract embedded metadata from HTML markup") (description "@code{extruct} is a Python library for extracting embedded metadata from HTML markup. Currently, extruct supports: @itemize @item W3C's HTML Microdata @item embedded JSON-LD @item Microformat via mf2py @item Facebook's Open Graph @item (experimental) RDFa via rdflib @item Dublin Core Metadata (DC-HTML-2003) @end itemize") (license license:bsd-3))) (define-public python-wadllib (package (name "python-wadllib") (version "1.3.6") (source (origin (method url-fetch) (uri (pypi-uri "wadllib" version)) (sha256 (base32 "1z65crvdsjxh9nahz1g6q021ijmv85ixmq88l96d61qh5imavndc")))) (build-system python-build-system) (propagated-inputs (list python-lazr-uri)) (home-page "https://launchpad.net/wadllib") (synopsis "Web Application Description Language (WADL) navigation library") (description "The @code{wadllib} Python library allows navigating HTTP resources using Web Application Description Language (WADL) files as guides.") (license license:lgpl3))) (define-public python-zeep (package (name "python-zeep") (version "4.1.0") (source (origin (method url-fetch) (uri (pypi-uri "zeep" version)) (patches (search-patches "python-zeep-Fix-pytest_httpx-test-cases.patch")) (sha256 (base32 "1ranr4hkjd2kbbhxa3is1qlgkankj3sml5gla6bqs0kbvpmg4rsq")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (setenv "HOME" (getcwd)) ; one test requires write access (invoke "pytest" "-vv"))))))) (propagated-inputs (list python-attrs python-cached-property python-isodate python-lxml python-platformdirs python-pytz python-requests python-requests-file python-requests-toolbelt)) (native-inputs (list python-aiohttp python-aioresponses python-freezegun python-mock python-pretend python-pytest python-pytest-asyncio python-pytest-cov python-pytest-httpx python-requests-mock)) (home-page "https://docs.python-zeep.org/en/stable/") (synopsis "Python SOAP client based on lxml / requests") (description "Zeep is a Python SOAP client. Highlights: @itemize @item Build on top of @code{lxml} and @code{requests}. @item Support for Soap 1.1, Soap 1.2 and HTTP bindings. @item Support for WS-Addressing headers. @item Support for WSSE (UserNameToken / x.509 signing). @item Support for @code{asyncio} via @code{httpx}. @item Experimental support for XOP messages. @end itemize") (license license:expat))) (define-public python-pysimplesoap (package (name "python-pysimplesoap") (version "1.16.2") (source (origin (method url-fetch) (uri (pypi-uri "PySimpleSOAP" version)) (sha256 (base32 "1qb7dn8m1cjwzql7vqj9i1hsscb7nyhimmlp45jrpzxds38g9fxi")))) (build-system python-build-system) (arguments (list #:tests? #f)) ;tests fail due to attempted web access (home-page "https://github.com/pysimplesoap/pysimplesoap") (synopsis "Simple and lightweight SOAP library for Python") (description "This package provides a simple and lightweight Python SOAP library for client and server webservices interfaces, aimed to be as small and easy as possible, supporting most common functionality.") (license license:lgpl3+))) (define-public python-http-client (package (name "python-http-client") (version "3.3.7") (home-page "https://github.com/sendgrid/python-http-client") (source (origin (method git-fetch) (uri (git-reference (url home-page) (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0z0ziw3f4zw5fj4spiwhhs2x8qs3i5999ry2p6a5sc8b1lkkj2zi")) (snippet #~(begin (use-modules (guix build utils)) (delete-file "tests/profile.py"))))) (build-system python-build-system) (arguments (list #:phases #~(modify-phases %standard-phases (add-after 'unpack 'fix-tests (lambda _ ;; The test expects the copyright to be updated each year. (substitute* "tests/test_daterange.py" (("time\\.strftime\\(\"%Y\"\\)") "2022"))))))) (synopsis "HTTP REST client for Python") (description "This package provides access to any RESTful or RESTful-like API.") (license license:expat))) (define-public python-sendgrid (package (name "python-sendgrid") (version "6.9.7") (home-page "https://github.com/sendgrid/sendgrid-python/") (source (origin (method git-fetch) (uri (git-reference (url home-page) (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0kvp4gm3bpcsj2mkv05pgvlcv1jlsfhcljcv61wz5kq9d273h7rg")))) (build-system python-build-system) (arguments (list #:tests? #f)) ;241/340 tests fail due to attempted web access (propagated-inputs (list python-http-client python-starkbank-ecdsa)) (synopsis "SendGrid API library for Python") (description "The @code{sendgrid} Python library allows access to the SendGrid Web API v3. Version 3+ of the library provides full support for all SendGrid Web API v3 endpoints, including the new v3 /mail/send.") (license license:expat))) (define-public python-starlette (package (name "python-starlette") (version "0.25.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/encode/starlette") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "1mkkj15lphgycnp51dnrfxbyrx3dicjdcpsqvwc7yw55zyih6h5k")))) (build-system pyproject-build-system) (propagated-inputs (list python-anyio python-typing-extensions ;; [all] extra dependencies: python-itsdangerous python-jinja2 python-multipart python-pyyaml python-requests)) (native-inputs (list python-hatchling python-httpx python-pytest python-typing-extensions)) (home-page "https://github.com/encode/starlette") (synopsis "Little ASGI library") (description "Starlette is a lightweight ASGI (Asynchronous Server Gateway Interface) framework/toolkit for building async web services in Python.") (license license:bsd-3))) (define-public python-starlette-for-fastapi-0.88 (package (inherit python-starlette) (name "python-starlette") (version "0.22.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/encode/starlette") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0ybhcw80vj44p5b61kbm0jmw4lndm0dqsysi33rysnh20csqn8dz")))) (arguments (list #:test-flags ;; XXX: unclear why these tests fail with a decoding error. '(list "-k" "not test_gzip_ignored_for_responses_with_encoding_set"))))) ;; A newer version exists, but python-pytorch-lightning requires <2.0. (define-public python-starsessions-for-pytorch-lightning (package (name "python-starsessions") (version "1.3.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/alex-oleshkevich/starsessions") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "00dkdhp22vfmcn0w4y7f2ii8m1xj5i7409x58g3l8lvk6v5ng2nf")))) (build-system pyproject-build-system) (arguments (list #:test-flags ;; These tests require a running redis server '(list "--ignore=tests/backends/test_redis.py" ;; XXX: this failure indicates a real compatibility problem, but ;; it seems restricted to the tests only. ;; AttributeError: 'Cookies' object has no attribute ;; 'clear_session_cookies' "-k" "not test_session_clears_on_tab_close") #:phases '(modify-phases %standard-phases (add-after 'unpack 'compatibilitiy (lambda _ ;; aioredis has been renamed (substitute* "starsessions/backends/redis.py" (("aioredis") "redis"))))))) (propagated-inputs (list python-redis python-itsdangerous python-starlette-for-fastapi-0.88)) (native-inputs (list python-black python-flake8 python-httpx python-mypy python-poetry-core python-pytest python-pytest-asyncio python-requests)) (home-page "https://github.com/alex-oleshkevich/starsessions") (synopsis "Pluggable session support for Starlette and FastAPI") (description "This package adds pluggable session backends and ships default @code{InMemoryBackend} and @code{CookieBackend} implementations for Starlette and FastAPI.") (license license:expat))) (define-public python-fastapi (package (name "python-fastapi") (version "0.92.0") (source (origin (method url-fetch) (uri (pypi-uri "fastapi" version)) (sha256 (base32 "1pm4p5i9h732f0qag85yd9ngjz8x9bhs3fyk2j861cn8s9dhyfh2")))) (build-system pyproject-build-system) (arguments (list #:test-flags ;; The test_create_user tests fail with a 400 error: "Email already registered". '(list "--ignore=docs_src/sql_databases/sql_app_py310/tests/test_sql_app.py" "--ignore=docs_src/sql_databases/sql_app_py39/tests/test_sql_app.py"))) (propagated-inputs (list python-email-validator python-httpx python-itsdangerous python-jinja2 python-multipart python-orjson python-starlette python-pydantic python-pyyaml python-uvicorn python-ujson)) (native-inputs (list python-databases python-flask python-hatchling python-isort python-jose python-mypy python-passlib python-peewee python-pytest python-sqlalchemy python-types-orjson python-types-ujson)) (home-page "https://github.com/tiangolo/fastapi") (synopsis "Web framework based on type hints") (description "FastAPI provides a web API framework based on pydantic and starlette.") (license license:expat))) (define-public python-fastapi-for-pytorch-lightning (package (inherit python-fastapi) (name "python-fastapi") (version "0.88.0") (source (origin (method url-fetch) (uri (pypi-uri "fastapi" version)) (sha256 (base32 "00pznprvjvrkiqcvn0ksz1pq5n2cgmxhk0gc0mb7q3ha302g6nwi")))) (propagated-inputs (modify-inputs (package-propagated-inputs python-fastapi) (replace "python-starlette" python-starlette-for-fastapi-0.88))))) (define-public python-fastapi-csrf-protect (package (name "python-fastapi-csrf-protect") (version "0.3.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/aekasitt/fastapi-csrf-protect") ;; This commit corresponds to version 0.3.1 (commit "536acd651d0d3f9862a0b753ba64dd2d187f8655"))) (file-name (git-file-name name version)) (sha256 (base32 "1zlwa0fplmcihylyvakskwkbkl2cq291fmys5x6wrpfdbjrqbgbj")))) (build-system pyproject-build-system) (propagated-inputs (list python-fastapi python-itsdangerous python-pydantic)) (native-inputs (list python-poetry-core python-pytest)) (home-page "https://github.com/aekasitt/fastapi-csrf-protect") (synopsis "Cross-Site Request Forgery (XSRF) protection") (description "This package provides a stateless implementation of @dfn{Cross-Site Request Forgery} (XSRF) Protection by using the Double Submit Cookie mitigation pattern.") (license license:expat))) (define-public python-fastapi-pagination-minimal (package (name "python-fastapi-pagination-minimal") (version "0.12.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/uriyyo/fastapi-pagination") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0qkcphjk1qy680v1hkmqbs4p7srvx020wy39b97anrn9dyyi5ah6")))) (build-system pyproject-build-system) (arguments ;; Tests depend on python-cassandra, ;; which is not yet packaged in Guix. `(#:tests? #f)) (native-inputs (list poetry)) ;; These are the only required dependencies, ;; please add all optional dependencies to the ;; full python-fastapi-pagination below. (propagated-inputs (list python-fastapi python-pydantic)) (home-page "https://github.com/uriyyo/fastapi-pagination") (synopsis "FastAPI pagination library") (description "@code{fastapi-pagination} is a Python library designed to simplify pagination in FastAPI applications. It provides a set of utility functions and data models to help you paginate your database queries and return paginated responses to your clients.") (license license:expat))) (define-public python-fastapi-pagination (package (inherit python-fastapi-pagination-minimal) (name "python-fastapi-pagination") (propagated-inputs (modify-inputs (package-propagated-inputs python-fastapi-pagination-minimal) (prepend python-asyncpg python-databases python-django python-fastapi python-pydantic python-sqlalchemy (package (inherit python-tortoise-orm) (arguments (substitute-keyword-arguments (package-arguments python-tortoise-orm) ((#:phases phases '%standard-phases) `(modify-phases ,phases (delete 'sanity-check))))) (propagated-inputs (modify-inputs (package-propagated-inputs python-tortoise-orm) (replace "python-aiosqlite" python-aiosqlite))))))) (description (string-append (package-description python-fastapi-pagination-minimal) " This package, as opposed to @code{python-fastapi-pagination-minimal}, depends on all available optional dependencies supported by mainline @code{fastapi-pagination}.")))) (define-public python-pyactiveresource (package (name "python-pyactiveresource") (version "2.2.2") (source (origin (method url-fetch) (uri (pypi-uri "pyactiveresource" version)) (sha256 (base32 "1n7xvzh1j8fxal0gx9bgg1ayrp3q9mb1a2vb12d6s86wa93880rg")))) (build-system python-build-system) (native-inputs (list python-dateutil python-pyyaml)) (propagated-inputs (list python-six)) (home-page "https://github.com/Shopify/pyactiveresource/") (synopsis "ActiveResource for Python") (description "This package provides a Python port of the ActiveResource project. Active Resource attempts to provide a coherent wrapper object-relational mapping for REST web services. It follows the same philosophy as Active Record, in that one of its prime aims is to reduce the amount of code needed to map to these resources. This is made possible by relying on a number of code- and protocol-based conventions that make it easy for Active Resource to infer complex relations and structures.") (license license:expat))) (define-public python-shopifyapi (package (name "python-shopifyapi") (version "12.0.0") (source (origin (method url-fetch) (uri (pypi-uri "ShopifyAPI" version)) (sha256 (base32 "03np9mkycqbw5l5vk0srmq353q3vmbycbbarzv0cg3z703p81gnb")))) (build-system python-build-system) (native-inputs (list python-mock)) (propagated-inputs (list python-pyactiveresource python-pyjwt python-pyyaml python-six)) (home-page "https://github.com/Shopify/shopify_python_api") (synopsis "Shopify API for Python") (description "This package provides the Shopify API for Python. The ShopifyAPI library allows Python developers to programmatically access the admin section of stores using an ActiveResource-like interface similar the ruby Shopify API gem. The library makes HTTP requests to Shopify in order to list, create, update, or delete resources (e.g. Order, Product, Collection).") (license license:expat))) (define-public python-whatthepatch (package (name "python-whatthepatch") (version "1.0.2") (source (origin (method url-fetch) (uri (pypi-uri "whatthepatch" version)) (sha256 (base32 "17zspm5sxhvggkdhwq4s0fzf4mkc825xshn734g2j2iy2xcylh65")))) (build-system python-build-system) (home-page "https://github.com/cscorley/whatthepatch") (synopsis "Patch parsing and application") (description "This package provides a library to parse and apply patches.") (license license:expat))) (define-public python-pybadges (package (name "python-pybadges") (version "3.0.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/google/pybadges") (commit version))) (file-name (git-file-name name version)) (sha256 "1zgb9idz7m3mzf8wvik0gwmyrxp753axqjv2pab326cr5myj1s4b"))) (build-system pyproject-build-system) (arguments (list #:test-flags #~'("-k" ;; Disable network dependent tests. "not test_changes and not test_not_image_url and not test_http_url"))) (propagated-inputs (list python-jinja2 python-requests)) (native-inputs (list python-flask python-fonttools python-nox python-pillow python-pytest python-xmldiff)) (home-page "https://github.com/google/pybadges") (synopsis "Generate Github-style badges on the command-line") (description "This package provides @code{python-pybadges}: a library and command-line tool for generating Github-style badges as SVG images.") (license license:asl2.0))) (define-public python-grid5000 (package (name "python-grid5000") (version "1.2.3") (source (origin (method git-fetch) (uri (git-reference (url "https://gitlab.inria.fr/msimonin/python-grid5000") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 "097pm8b68ihk29xz9zv29b1x0bhgjb4lfj8zxk2grbsh7wr9dipg"))) (build-system python-build-system) (native-inputs (list python-wheel)) (propagated-inputs (list python-requests python-ipython python-pyyaml)) (arguments (list #:tests? #f)) ; No tests. (home-page "https://pypi.org/project/python-grid5000/") (synopsis "Grid5000 python client") (description "python-grid5000 is a python package wrapping the Grid5000 REST API. You can use it as a library in your python project or you can explore the Grid5000 resources interactively using the embedded shell.") (license license:gpl3+))) (define-public python-enoslib (package (name "python-enoslib") (version "8.0.1") (source (origin (method git-fetch) (uri (git-reference (url "https://gitlab.inria.fr/discovery/enoslib") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 "0vs6b0bnlv95mzv0rjbxqwrhzkgjkn91gqipgwdf7y4ffpz8nybg"))) (build-system python-build-system) (native-inputs (list python-wheel python-pytest python-ddt python-freezegun)) (propagated-inputs (list ansible python-cryptography python-grid5000 python-jsonschema python-netaddr python-packaging python-requests python-rich python-sshtunnel python-pytz)) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? ;; Otherwise Ansible fails to create its config directory. (setenv "HOME" "/tmp") ;; Ignoring the tests requiring an extra dependency (iotlabcli) (invoke "pytest" "enoslib/tests/unit" "--ignore" "enoslib/tests/unit/infra/test_utils.py" "--ignore-glob" "enoslib/tests/unit/infra/enos_iotlab/*")))) ;; Disable the sanity check, which fails with the following error: ;; ;; ContextualVersionConflict(rich 12.4.1 ;; (/gnu/store/...-python-rich-12.4.1/lib/python3.9/site-packages), ;; Requirement.parse('rich[jupyter]~=12.0.0'), {'enoslib'}) ;; ;; The optional jupyter dependency of rich isn't critical for ;; EnOSlib to work (delete 'sanity-check)))) (home-page "https://discovery.gitlabpages.inria.fr/enoslib/index.html") (synopsis "Deploy distributed testbeds on a variety of platforms") (description "EnOSlib is a library to build experimental frameworks on various scientific testbeds. It lets you deploy networks of machines on actual hardware on Grid'5000 or via OpenStack, to Vagrant, Chameleon, and more.") (license license:gpl3+))) (define-public python-pynetbox (package (name "python-pynetbox") (version "7.2.0") (source (origin (method url-fetch) (uri (pypi-uri "pynetbox" version)) (sha256 (base32 "1pzmkl4nr247v4022i33v32jlx88wwcdy7ycyfd4pnl19vag8d9p")))) (build-system pyproject-build-system) (arguments (list #:phases #~(modify-phases %standard-phases (add-after 'unpack 'disable-failing-tests (lambda _ ;; Integration tests depend on docker. (delete-file-recursively "tests/integration")))))) (propagated-inputs (list python-requests)) (native-inputs (list python-pytest python-pyyaml python-setuptools-scm)) (home-page "https://github.com/netbox-community/pynetbox") (synopsis "NetBox API client library") (description "Python module to query and edit data stored in a @url{https://netbox.dev,NetBox} instance.") (license license:asl2.0)))