mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add python-exif-read.
* gnu/packages/python.scm (python-exif-read, python2-exif-read): New variables.
This commit is contained in:
parent
b50c5b7418
commit
c7303d3cef
1 changed files with 27 additions and 0 deletions
|
@ -968,3 +968,30 @@ (define-public behave
|
|||
non-technical or business participants in a software project. Behave uses
|
||||
tests written in a natural language style, backed up by Python code.")
|
||||
(license x11)))
|
||||
|
||||
(define-public python-exif-read
|
||||
(package
|
||||
(name "python-exif-read")
|
||||
(version "1.4.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri
|
||||
(string-append
|
||||
"https://pypi.python.org/packages/source/E/ExifRead/ExifRead-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"17c627gcdmyc05hz4zk8qs4pjgw6rc68qzjzgz8gh1cmpsd7acf1"))))
|
||||
(build-system python-build-system)
|
||||
(inputs
|
||||
`(("python-setuptools" ,python-setuptools)))
|
||||
(arguments `(#:tests? #f)) ; no tests
|
||||
(home-page "https://github.com/ianare/exif-py")
|
||||
(synopsis "Python library to extract EXIF data from image files")
|
||||
(description
|
||||
"ExifRead is a Python library to extract EXIF data from tiff and jpeg
|
||||
files.")
|
||||
(license bsd-3)))
|
||||
|
||||
(define-public python2-exif-read
|
||||
(package-with-python2 python-exif-read))
|
||||
|
|
Loading…
Reference in a new issue