2019-01-15 11:42:59 -05:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2019-06-25 04:56:34 -04:00
|
|
|
;;; Copyright © 2017, 2019 Ricardo Wurmus <rekado@elephly.net>
|
mailmap: Update entries for Nikita.
* .mailmap: change email and name for Nikita.
* Makefile.am, doc/guix.texi, etc/completion/fish/guix.fish,
gnu/packages/accessibility.scm, gnu/packages/admin.scm,
gnu/packages/audio.scm, gnu/packages/autotools.scm, gnu/packages/cdrom.scm,
gnu/packages/check.scm, gnu/packages/cinnamon.scm,
gnu/packages/compression.scm, gnu/packages/crypto.scm,
gnu/packages/databases.scm, gnu/packages/django.scm, gnu/packages/dns.scm,
gnu/packages/elixir.scm, gnu/packages/emacs-xyz.scm, gnu/packages/emacs.scm,
gnu/packages/enlightenment.scm, gnu/packages/erlang.scm,
gnu/packages/fonts.scm, gnu/packages/fontutils.scm, gnu/packages/forth.scm,
gnu/packages/fvwm.scm, gnu/packages/games.scm, gnu/packages/gl.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm, gnu/packages/guile-xyz.scm,
gnu/packages/haskell-apps.scm, gnu/packages/haskell-check.scm,
gnu/packages/haskell-crypto.scm, gnu/packages/haskell-xyz.scm,
gnu/packages/haskell.scm, gnu/packages/image-viewers.scm,
gnu/packages/image.scm, gnu/packages/irc.scm, gnu/packages/language.scm,
gnu/packages/libcanberra.scm, gnu/packages/linux.scm,
gnu/packages/lisp-xyz.scm, gnu/packages/lisp.scm, gnu/packages/lolcode.scm,
gnu/packages/lxde.scm, gnu/packages/lxqt.scm, gnu/packages/mail.scm,
gnu/packages/markup.scm, gnu/packages/mate.scm, gnu/packages/maths.scm,
gnu/packages/mc.scm, gnu/packages/messaging.scm, gnu/packages/music.scm,
gnu/packages/ncurses.scm, gnu/packages/networking.scm,
gnu/packages/nickle.scm, gnu/packages/openbox.scm, gnu/packages/pdf.scm,
gnu/packages/perl-check.scm, gnu/packages/perl.scm,
gnu/packages/python-compression.scm, gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm, gnu/packages/python-xyz.scm,
gnu/packages/python.scm, gnu/packages/qt.scm, gnu/packages/ruby.scm,
gnu/packages/rust.scm, gnu/packages/scheme.scm,
gnu/packages/serialization.scm, gnu/packages/shells.scm,
gnu/packages/ssh.scm, gnu/packages/suckless.scm, gnu/packages/tbb.scm,
gnu/packages/telephony.scm, gnu/packages/text-editors.scm,
gnu/packages/textutils.scm, gnu/packages/time.scm, gnu/packages/tls.scm,
gnu/packages/tor.scm, gnu/packages/version-control.scm,
gnu/packages/video.scm, gnu/packages/vim.scm, gnu/packages/web.scm,
gnu/packages/wm.scm, gnu/packages/xdisorg.scm, gnu/packages/xfce.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/services/certbot.scm,
gnu/services/desktop.scm, gnu/services/version-control.scm,
gnu/services/web.scm, guix/import/hackage.scm, guix/licenses.scm: Likewise.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2020-05-11 07:05:45 -04:00
|
|
|
;;; Copyright © 2017 Nikita <nikita@n0.is>
|
2019-01-15 11:42:59 -05:00
|
|
|
;;; Copyright © 2017 Julien Lepiller <julien@lepiller.eu>
|
2020-07-21 03:49:31 -04:00
|
|
|
;;; Copyright © 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
|
2020-01-02 18:13:15 -05:00
|
|
|
;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
2020-01-15 18:45:53 -05:00
|
|
|
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
2021-02-24 21:30:02 -05:00
|
|
|
;;; Copyright © 2021 Brendan Tildesley <mail@brendan.scot>
|
2019-01-15 11:42:59 -05:00
|
|
|
;;;
|
|
|
|
;;; 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 python-compression)
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
|
|
#:use-module (guix utils)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
#:use-module (guix build-system python)
|
|
|
|
#:use-module (gnu packages)
|
2021-02-24 21:49:40 -05:00
|
|
|
#:use-module (gnu packages libffi)
|
2019-01-15 11:42:59 -05:00
|
|
|
#:use-module (gnu packages compression)
|
|
|
|
#:use-module (gnu packages check)
|
|
|
|
#:use-module (gnu packages maths)
|
2020-02-01 09:51:29 -05:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2019-01-15 11:42:59 -05:00
|
|
|
#:use-module (gnu packages python)
|
2021-03-10 02:30:54 -05:00
|
|
|
#:use-module (gnu packages python-build)
|
2021-02-24 21:30:02 -05:00
|
|
|
#:use-module (gnu packages python-check)
|
2021-02-24 22:02:23 -05:00
|
|
|
#:use-module (gnu packages python-crypto)
|
2019-06-25 04:56:34 -04:00
|
|
|
#:use-module (gnu packages python-xyz)
|
|
|
|
#:use-module (gnu packages sphinx))
|
2019-01-15 11:42:59 -05:00
|
|
|
|
2021-02-24 21:30:02 -05:00
|
|
|
(define-public python-multivolumefile
|
|
|
|
(package
|
|
|
|
(name "python-multivolumefile")
|
|
|
|
(version "0.2.2")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "multivolumefile" version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0j46wab4b09s3favjzp3zs1cn2sn8pr7qyngs5wn31hpqqxbbz76"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(native-inputs
|
|
|
|
`(("python-pep517" ,python-pep517)
|
|
|
|
("python-setuptools" ,python-setuptools)
|
|
|
|
("python-setuptools-scm" ,python-setuptools-scm/next)
|
|
|
|
("python-coverage" ,python-coverage)
|
|
|
|
("python-coveralls" ,python-coveralls)
|
|
|
|
("python-pyannotate" ,python-pyannotate)
|
|
|
|
("python-pytest" ,python-pytest)
|
|
|
|
("python-pytest-cov" ,python-pytest-cov)))
|
|
|
|
(home-page "https://github.com/miurahr/multivolume")
|
|
|
|
(synopsis "Treat multiple files as one")
|
|
|
|
(description "MultiVolumefile is a Python library that provides a
|
|
|
|
file-object abstraction, making it possible to use multiple files as if they
|
|
|
|
were a single file.")
|
|
|
|
(license license:lgpl2.1+)))
|
|
|
|
|
2021-03-10 02:30:54 -05:00
|
|
|
(define-public python-bcj-cffi
|
|
|
|
(package
|
|
|
|
(name "python-bcj-cffi")
|
|
|
|
(version "0.5.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "bcj-cffi" version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1jcczrb8zgg6w7v76w1wpz3nw75fghk3xwxkn09ll7kck7sdf68d"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(propagated-inputs
|
|
|
|
`(("python-cffi" ,python-cffi)
|
|
|
|
("python-toml" ,python-toml)
|
|
|
|
("python-setuptools-scm" ,python-setuptools-scm/next)))
|
|
|
|
(native-inputs
|
|
|
|
`(("python-setuptools" ,python-setuptools)
|
|
|
|
("python-coverage" ,python-coverage)
|
|
|
|
("python-pytest" ,python-pytest)
|
|
|
|
("python-pytest-cov" ,python-pytest-cov)))
|
|
|
|
(home-page "https://github.com/miurahr/bcj-cffi")
|
|
|
|
(synopsis "Branch / Call /Jump CFFI library in Python")
|
|
|
|
(description "This package provides an implementation of the Branch / Call /
|
|
|
|
Jump conversion filter by CFFI for Python.")
|
|
|
|
(license license:lgpl2.1+)))
|
|
|
|
|
2021-02-24 21:49:40 -05:00
|
|
|
(define-public python-ppmd-cffi
|
|
|
|
(package
|
|
|
|
(name "python-ppmd-cffi")
|
|
|
|
(version "0.3.3")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "ppmd-cffi" version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"01wcd9l6pp6hivdmd275qh9dhcwficjqfl67hxix5n07vvq7jzz0"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(propagated-inputs
|
|
|
|
`(("python-cffi" ,python-cffi)))
|
|
|
|
(native-inputs
|
|
|
|
`(("python-setuptools" ,python-setuptools)
|
|
|
|
("python-setuptools-scm" ,python-setuptools-scm/next)
|
|
|
|
("python-pep517" ,python-pep517)
|
|
|
|
("python-coverage" ,python-coverage)
|
|
|
|
("python-pytest" ,python-pytest)
|
|
|
|
("python-pytest-cov" ,python-pytest-cov)))
|
|
|
|
(home-page "https://github.com/miurahr/ppmd")
|
|
|
|
(synopsis "Prediction by Partial Matching compression library")
|
|
|
|
(description "PPMd is a compression algorithm library using the Prediction
|
|
|
|
by Partial Matching statistical technique. It is used in RAR and 7-Zip as one of
|
|
|
|
several possible methods.")
|
|
|
|
(license license:lgpl2.1+)))
|
|
|
|
|
2021-02-24 22:02:23 -05:00
|
|
|
(define-public python-py7zr
|
|
|
|
(package
|
|
|
|
(name "python-py7zr")
|
|
|
|
(version "0.14.1")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "py7zr" version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1zmgp7yax328fj8yj8pj4l7yh78hp727j6wk12vfi6nmi82wl32i"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(propagated-inputs
|
|
|
|
`(("python-bcj-cffi" ,python-bcj-cffi)
|
|
|
|
("python-multivolumefile" ,python-multivolumefile)
|
|
|
|
("python-ppmd-cffi" ,python-ppmd-cffi)
|
|
|
|
("python-pycryptodome" ,python-pycryptodome)
|
|
|
|
("python-pyzstd" ,python-pyzstd)
|
|
|
|
("python-texttable" ,python-texttable)
|
|
|
|
("python-zstandard" ,python-zstandard)))
|
|
|
|
(native-inputs
|
|
|
|
`(("python-setuptools" ,python-setuptools)
|
|
|
|
("python-setuptools-scm" ,python-setuptools-scm/next)
|
|
|
|
("python-coverage" ,python-coverage)
|
|
|
|
("python-coveralls" ,python-coveralls)
|
|
|
|
("python-libarchive-c" ,python-libarchive-c)
|
|
|
|
("python-py-cpuinfo" ,python-py-cpuinfo)
|
|
|
|
("python-pyannotate" ,python-pyannotate)
|
|
|
|
("python-pytest" ,python-pytest)
|
|
|
|
("python-pytest-benchmark" ,python-pytest-benchmark)
|
|
|
|
("python-pytest-cov" ,python-pytest-cov)
|
|
|
|
("python-pytest-remotedata" ,python-pytest-remotedata)
|
|
|
|
("python-pytest-timeout" ,python-pytest-timeout)))
|
|
|
|
(home-page "https://github.com/miurahr/py7zr")
|
|
|
|
(synopsis "7-zip in Python")
|
|
|
|
(description "This package provides py7zr, which implements 7-zip
|
|
|
|
archive compression, decompression, encryption and decryption in
|
|
|
|
Python.")
|
|
|
|
(license license:lgpl2.1+)))
|
|
|
|
|
2019-01-15 11:42:59 -05:00
|
|
|
(define-public python-lzo
|
|
|
|
(package
|
|
|
|
(name "python-lzo")
|
|
|
|
(version "1.12")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "python-lzo" version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0iakqgd51n1cd7r3lpdylm2rgbmd16y74cra9kcapwg84mlf9a4p"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:test-target "check"
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'patch-setuppy
|
|
|
|
(lambda _
|
|
|
|
(substitute* "setup.py"
|
|
|
|
(("include_dirs.append\\(.*\\)")
|
|
|
|
(string-append "include_dirs.append('"
|
|
|
|
(assoc-ref %build-inputs "lzo")
|
|
|
|
"/include/lzo"
|
|
|
|
"')")))
|
|
|
|
#t)))))
|
|
|
|
(inputs
|
|
|
|
`(("lzo" ,lzo)))
|
|
|
|
(home-page "https://github.com/jd-boyd/python-lzo")
|
|
|
|
(synopsis "Python bindings for the LZO data compression library")
|
|
|
|
(description
|
|
|
|
"Python-LZO provides Python bindings for LZO, i.e. you can access
|
|
|
|
the LZO library from your Python scripts thereby compressing ordinary
|
|
|
|
Python strings.")
|
|
|
|
(license license:gpl2+)))
|
|
|
|
|
|
|
|
(define-public python2-lzo
|
|
|
|
(package-with-python2 python-lzo))
|
|
|
|
|
|
|
|
(define-public python-lz4
|
|
|
|
(package
|
|
|
|
(name "python-lz4")
|
|
|
|
(version "0.10.1")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "lz4" version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2020-02-01 09:51:29 -05:00
|
|
|
"0ghv1xbaq693kgww1x9c22bplz479ls9szjsaa4ig778ls834hm0"))
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
'(begin
|
|
|
|
;; Remove bundled copy of lz4.
|
|
|
|
(delete-file-recursively "lz4libs")
|
|
|
|
#t))))
|
2019-01-15 11:42:59 -05:00
|
|
|
(build-system python-build-system)
|
|
|
|
(native-inputs
|
2020-02-01 09:51:29 -05:00
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
("python-nose" ,python-nose)
|
2019-01-15 11:42:59 -05:00
|
|
|
("python-setuptools-scm" ,python-setuptools-scm)))
|
2020-02-01 09:51:29 -05:00
|
|
|
(inputs
|
|
|
|
`(("lz4" ,lz4)))
|
2019-01-15 11:42:59 -05:00
|
|
|
(home-page "https://github.com/python-lz4/python-lz4")
|
|
|
|
(synopsis "LZ4 bindings for Python")
|
|
|
|
(description
|
|
|
|
"This package provides python bindings for the lz4 compression library
|
|
|
|
by Yann Collet. The project contains bindings for the LZ4 block format and
|
|
|
|
the LZ4 frame format.")
|
|
|
|
(license license:bsd-3)))
|
|
|
|
|
|
|
|
(define-public python2-lz4
|
|
|
|
(package-with-python2 python-lz4))
|
|
|
|
|
|
|
|
(define-public python-lzstring
|
|
|
|
(package
|
|
|
|
(name "python-lzstring")
|
|
|
|
(version "1.0.4")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "lzstring" version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"18ly9pppy2yspxzw7k1b23wk77k7m44rz2g0271bqgqrk3jn3yhs"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(propagated-inputs
|
|
|
|
`(("python-future" ,python-future)))
|
|
|
|
(home-page "https://github.com/gkovacs/lz-string-python")
|
|
|
|
(synopsis "String compression")
|
|
|
|
(description "Lz-string is a string compressor library for Python.")
|
|
|
|
(license license:expat)))
|
|
|
|
|
|
|
|
(define-public python2-lzstring
|
|
|
|
(package-with-python2 python-lzstring))
|
|
|
|
|
2020-07-21 03:49:31 -04:00
|
|
|
(define-public python-brotli
|
|
|
|
(package
|
|
|
|
(name "python-brotli")
|
2020-11-26 12:38:25 -05:00
|
|
|
(version "1.0.9")
|
2020-07-21 03:49:31 -04:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "Brotli" version ".zip"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2020-11-26 12:38:25 -05:00
|
|
|
"0f4433s4wv9masc303kkb1s0a09x81xwr8pdvj0kyxzdl05826sd"))))
|
2020-07-21 03:49:31 -04:00
|
|
|
(build-system python-build-system)
|
|
|
|
(native-inputs
|
|
|
|
`(("unzip" ,unzip)))
|
|
|
|
(home-page "https://github.com/google/brotli")
|
|
|
|
(synopsis "Python bindings for the Brotli compression library")
|
|
|
|
(description
|
|
|
|
"This package provides python bindings for the Brotli compression library.")
|
|
|
|
(license license:asl2.0)))
|
|
|
|
|
2019-01-15 11:42:59 -05:00
|
|
|
(define-public bitshuffle
|
|
|
|
(package
|
|
|
|
(name "bitshuffle")
|
|
|
|
(version "0.3.5")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "bitshuffle" version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1823x61kyax4dc2hjmc1xraskxi1193y8lvxd03vqv029jrj8cjy"))
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
'(begin
|
|
|
|
;; Remove generated Cython files.
|
|
|
|
(delete-file "bitshuffle/h5.c")
|
|
|
|
(delete-file "bitshuffle/ext.c")
|
|
|
|
#t))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; fail: https://github.com/h5py/h5py/issues/769
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'fix-neon-detection
|
|
|
|
;; Neon is only for aarch64 ATM
|
|
|
|
;; see: https://github.com/kiyo-masui/bitshuffle/pull/73
|
|
|
|
(lambda _
|
|
|
|
(substitute* "src/bitshuffle_core.c"
|
|
|
|
(("#define USEARMNEON")
|
|
|
|
"#ifdef __aarch64__\n#define USEARMNEON\n#endif"))
|
|
|
|
#t))
|
|
|
|
(add-after 'unpack 'dont-build-native
|
|
|
|
(lambda _
|
|
|
|
(substitute* "setup.py"
|
|
|
|
(("'-march=native', ") ""))
|
|
|
|
#t)))))
|
|
|
|
(inputs
|
|
|
|
`(("numpy" ,python-numpy)
|
|
|
|
("h5py" ,python-h5py)
|
|
|
|
("hdf5" ,hdf5)))
|
|
|
|
(native-inputs
|
|
|
|
`(("cython" ,python-cython)))
|
|
|
|
(home-page "https://github.com/kiyo-masui/bitshuffle")
|
|
|
|
(synopsis "Filter for improving compression of typed binary data")
|
|
|
|
(description "Bitshuffle is an algorithm that rearranges typed, binary data
|
|
|
|
for improving compression, as well as a python/C package that implements this
|
|
|
|
algorithm within the Numpy framework.")
|
|
|
|
(license license:expat)))
|
|
|
|
|
|
|
|
(define-public bitshuffle-for-snappy
|
gnu: Use PACKAGE/INHERIT in more places.
* gnu/packages/algebra.scm (fftwf, fftw-openmpi),
gnu/packages/audio.scm (ztoolkit-rsvg),
gnu/packages/bioinformatics.scm (python2-dendropy),
gnu/packages/boost.scm (boost-with-python2),
gnu/packages/check.scm (python2-mock, python2-pytest-mock),
gnu/packages/cups.scm (hplip-minimal),
gnu/packages/freedesktop.scm (libinput-minimal),
gnu/packages/gettext.scm (gnu-gettext),
gnu/packages/glib.scm (python2-pygobject),
gnu/packages/gnome.scm (gdl-minimal, libsoup-minimal, python2-pyatspi),
gnu/packages/groff.scm (groff-minimal),
gnu/packages/jami.scm (ffmpeg-jami),
gnu/packages/libcanberra.scm (libcanberra/gtk+-2),
gnu/packages/lirc.scm (python2-lirc),
gnu/packages/llvm.scm (clang-runtime-3.5),
gnu/packages/mpi.scm (java-openmpi, openmpi-thread-multiple),
gnu/packages/node.scm (libnode),
gnu/packages/onc-rpc.scm (libtirpc/hurd),
gnu/packages/python-compression.scm (bitshuffle-for-snappy),
gnu/packages/python-crypto.scm (python2-pycrypto, python2-cryptography)
(python2-cryptography, python2-m2crypto),
gnu/packages/python-web.scm (python2-html2text, python2-tornado)
(python2-terminado, python2-ndg-httpsclient, python2-websocket-client)
(python2-rauth, python2-url, python2-s3transfer),
gnu/packages/python-xyz.scm (python2-psutil, python2-serpent)
(python2-humanfriendly, python2-empy, python2-parse-type, python2-polib)
(python2-jsonschema, python2-pystache, python2-cython, python2-numpydoc)
(python2-ipyparallel, python2-traitlets, python2-dbus)
(python2-beautifulsoup4, python2-pep517, python2-flake8, python2-llfuse)
(python2-tlsh, python-file, python2-notebook, python-jupyter-console-minimal)
(python2-contextlib2, python2-promise, python2-anyjson, python2-amqp)
(python2-kombu, python2-billiard, python2-celery, python2-whoosh)
(python2-jellyfish, python-rope, ptpython-2, python2-binaryornot)
(python2-setproctitle, python2-argcomplete, python2-xopen, python2-isort)
(python2-radon, python2-rfc6555, python2-activepapers, python2-send2trash)
(python2-cloudpickle, python2-reparser),
gnu/packages/python.scm (python2-called-python),
gnu/packages/qt.scm (python2-sip, python-pyqt-without-qtwebkit, python2-pyqt)
(python-qscintilla, python-pyqt+qscintilla),
gnu/packages/scanner.scm (sane-backends),
gnu/packages/sdl.scm (guile3.0-sdl2),
gnu/packages/selinux.scm (checkpolicy, libselinux, libsemanage, secilc)
(python-sepolgen, policycoreutils),
gnu/packages/serialization.scm (lua5.1-libmpack, lua5.2-libmpack),
gnu/packages/simulation.scm (fenics),
gnu/packages/statistics.scm (python2-statsmodels),
gnu/packages/texinfo.scm (info-reader),
gnu/packages/wxwidgets.scm (wxwidgets-gtk2, wxwidgets-gtk2-3.1),
gnu/packages/xml.scm (xmlsec-nss),
gnu/packages/xorg.scm (uim-gtk, uim-qt),
guix/build-system/python.scm (package-with-explicit-python)
(strip-python2-variant): Use PACKAGE/INHERIT.
2021-03-17 03:42:12 -04:00
|
|
|
(package/inherit bitshuffle
|
2019-01-15 11:42:59 -05:00
|
|
|
(name "bitshuffle-for-snappy")
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2019-01-20 16:12:10 -05:00
|
|
|
(substitute-keyword-arguments (package-arguments bitshuffle)
|
|
|
|
((#:tests? _ #f) #f)
|
|
|
|
((#:phases phases)
|
|
|
|
`(modify-phases %standard-phases
|
|
|
|
(replace 'configure
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(with-output-to-file "Makefile"
|
|
|
|
(lambda _
|
|
|
|
(format #t "\
|
2019-01-15 11:42:59 -05:00
|
|
|
libbitshuffle.so: src/bitshuffle.o src/bitshuffle_core.o src/iochain.o lz4/lz4.o
|
|
|
|
\tgcc -O3 -ffast-math -std=c99 -o $@ -shared -fPIC $^
|
|
|
|
|
|
|
|
%.o: %.c
|
|
|
|
\tgcc -O3 -ffast-math -std=c99 -fPIC -Isrc -Ilz4 -c $< -o $@
|
|
|
|
|
|
|
|
PREFIX:=~a
|
|
|
|
LIBDIR:=$(PREFIX)/lib
|
|
|
|
INCLUDEDIR:=$(PREFIX)/include
|
|
|
|
|
|
|
|
install: libbitshuffle.so
|
|
|
|
\tinstall -dm755 $(LIBDIR)
|
|
|
|
\tinstall -dm755 $(INCLUDEDIR)
|
|
|
|
\tinstall -m755 libbitshuffle.so $(LIBDIR)
|
|
|
|
\tinstall -m644 src/bitshuffle.h $(INCLUDEDIR)
|
|
|
|
\tinstall -m644 src/bitshuffle_core.h $(INCLUDEDIR)
|
|
|
|
\tinstall -m644 src/iochain.h $(INCLUDEDIR)
|
|
|
|
\tinstall -m644 lz4/lz4.h $(INCLUDEDIR)
|
|
|
|
" (assoc-ref outputs "out"))))
|
2019-01-20 16:12:10 -05:00
|
|
|
#t))))))
|
2019-01-15 11:42:59 -05:00
|
|
|
(inputs '())
|
|
|
|
(native-inputs '())))
|
2019-06-25 04:56:34 -04:00
|
|
|
|
|
|
|
(define-public python-zipp
|
|
|
|
(package
|
|
|
|
(name "python-zipp")
|
2020-01-15 14:10:26 -05:00
|
|
|
(version "1.0.0")
|
2019-06-25 04:56:34 -04:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "zipp" version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2020-01-15 14:10:26 -05:00
|
|
|
"0v3qayhqv7vyzydpydwcp51bqciw8p2ajddw68x5k8zppc0vx3yk"))))
|
2019-06-25 04:56:34 -04:00
|
|
|
(build-system python-build-system)
|
|
|
|
(propagated-inputs
|
2020-01-15 14:10:26 -05:00
|
|
|
`(("python-more-itertools" ,python-more-itertools)))
|
|
|
|
(native-inputs
|
2020-01-15 15:42:15 -05:00
|
|
|
`(("python-setuptools-scm" ,python-setuptools-scm)))
|
2019-06-25 04:56:34 -04:00
|
|
|
(home-page "https://github.com/jaraco/zipp")
|
|
|
|
(synopsis
|
|
|
|
"Backport of pathlib-compatible object wrapper for zip files")
|
|
|
|
(description
|
|
|
|
"This package provides a @code{pathlib}-compatible @code{Zipfile} object
|
|
|
|
wrapper. It provides a backport of the @code{Path} object.")
|
2020-01-15 15:42:15 -05:00
|
|
|
(properties `((python2-variant . ,(delay python2-zipp))))
|
2019-06-25 04:56:34 -04:00
|
|
|
(license license:expat)))
|
2020-01-02 18:11:48 -05:00
|
|
|
|
2020-01-15 14:12:09 -05:00
|
|
|
(define-public python2-zipp
|
2020-01-15 15:42:15 -05:00
|
|
|
(let ((base (package-with-python2 (strip-python2-variant python-zipp))))
|
|
|
|
(package/inherit
|
|
|
|
base
|
|
|
|
(native-inputs
|
|
|
|
`(("python-contextlib2" ,python2-contextlib2)
|
|
|
|
("python-pathlib2" ,python2-pathlib2)
|
|
|
|
("python-unittest2" ,python2-unittest2)
|
|
|
|
,@(package-native-inputs base))))))
|
2020-01-15 14:12:09 -05:00
|
|
|
|
2020-01-15 18:45:53 -05:00
|
|
|
;; This package is used to bootstrap pytest, via importlib-metadata.
|
|
|
|
(define-public python2-zipp-bootstrap
|
|
|
|
(hidden-package
|
|
|
|
(package/inherit
|
|
|
|
python2-zipp
|
2020-06-24 01:19:43 -04:00
|
|
|
(name "python2-zipp-bootstrap")
|
2020-01-15 18:45:53 -05:00
|
|
|
(arguments
|
|
|
|
`(#:tests? #f
|
|
|
|
,@(package-arguments python2-zipp)))
|
|
|
|
(native-inputs
|
|
|
|
`(("python-setuptools-scm" ,python2-setuptools-scm))))))
|
|
|
|
|
2020-01-02 18:11:48 -05:00
|
|
|
(define-public python-zstandard
|
|
|
|
(package
|
2020-01-03 06:41:31 -05:00
|
|
|
(name "python-zstandard")
|
2021-03-10 02:33:12 -05:00
|
|
|
(version "0.15.2")
|
2020-01-03 06:41:31 -05:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "zstandard" version))
|
|
|
|
(sha256
|
2021-03-10 02:33:12 -05:00
|
|
|
(base32 "0by9z7nxnkzhmza075q6q91rs8lnpf91129k8ppv7kymbwshipjj"))))
|
2020-01-03 06:41:31 -05:00
|
|
|
(build-system python-build-system)
|
|
|
|
(native-inputs
|
|
|
|
`(("python-hypothesis" ,python-hypothesis)))
|
|
|
|
(home-page "https://github.com/indygreg/python-zstandard")
|
|
|
|
(synopsis "Zstandard bindings for Python")
|
|
|
|
(description "This project provides Python bindings for interfacing with
|
|
|
|
the Zstandard compression library. A C extension and CFFI interface are
|
|
|
|
provided.")
|
|
|
|
(license license:bsd-3)))
|
2021-03-10 02:32:25 -05:00
|
|
|
|
|
|
|
(define-public python-pyzstd
|
|
|
|
(package
|
|
|
|
(name "python-pyzstd")
|
|
|
|
(version "0.14.3")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "pyzstd" version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1d3mngs45w2p490vrq5ymd2wz4lp15phmks1ilcx4k7amgibml3d"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(home-page "https://github.com/animalize/pyzstd")
|
|
|
|
(synopsis "Zstandard bindings for Python")
|
|
|
|
(description "This package provides Python bindings to the Zstandard (zstd)
|
|
|
|
compression library. The API is similar to Python's bz2/lzma/zlib module.")
|
|
|
|
(license license:bsd-3)))
|