mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add python-olefile.
* gnu/packages/python.scm (python-olefile, python2-olefile): New variables.
This commit is contained in:
parent
0054564b85
commit
3a1f26ff75
1 changed files with 26 additions and 0 deletions
|
@ -3657,6 +3657,32 @@ (define-public python2-elib.intl
|
||||||
services for your Python modules and applications.")
|
services for your Python modules and applications.")
|
||||||
(license license:lgpl3+)))
|
(license license:lgpl3+)))
|
||||||
|
|
||||||
|
(define-public python-olefile
|
||||||
|
(package
|
||||||
|
(name "python-olefile")
|
||||||
|
(version "0.44")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://github.com/decalage2/olefile/archive/v"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1wmxbrhyqjry2000zx0zdhqdqxhgi06nz7sbzjlh222q2zjv1gpj"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(home-page
|
||||||
|
"https://www.decalage.info/python/olefileio")
|
||||||
|
(synopsis "Read and write Microsoft OLE2 files.")
|
||||||
|
(description
|
||||||
|
"@code{olefile} can parse, read and write Microsoft OLE2 files (Structured
|
||||||
|
Storage or Compound Document, Microsoft Office). It is an improved version of
|
||||||
|
the OleFileIO module from PIL, the Python Image Library.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public python2-olefile
|
||||||
|
(package-with-python2 python-olefile))
|
||||||
|
|
||||||
(define-public python-pillow
|
(define-public python-pillow
|
||||||
(package
|
(package
|
||||||
(name "python-pillow")
|
(name "python-pillow")
|
||||||
|
|
Loading…
Reference in a new issue