summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2021-07-21 03:25:50 +0200
committerGitHub <noreply@github.com>2021-07-20 20:25:50 -0500
commit30e559592adcf3fd09d1141df8317ddca400567b (patch)
treed2bce647b642dafefb6b3336680a06a72ec025a8 /var
parentd4f498db7c2cb5da0ad0202d7a4b6a919ac896b3 (diff)
downloadspack-30e559592adcf3fd09d1141df8317ddca400567b.tar.gz
spack-30e559592adcf3fd09d1141df8317ddca400567b.tar.bz2
spack-30e559592adcf3fd09d1141df8317ddca400567b.tar.xz
spack-30e559592adcf3fd09d1141df8317ddca400567b.zip
py-exifread: add new package (#24980)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-exifread/package.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-exifread/package.py b/var/spack/repos/builtin/packages/py-exifread/package.py
new file mode 100644
index 0000000000..05e104f164
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-exifread/package.py
@@ -0,0 +1,17 @@
+# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack import *
+
+
+class PyExifread(PythonPackage):
+ """Read Exif metadata from tiff and jpeg files."""
+
+ homepage = "https://github.com/ianare/exif-py"
+ pypi = "ExifRead/ExifRead-2.3.2.tar.gz"
+
+ version('2.3.2', sha256='a0f74af5040168d3883bbc980efe26d06c89f026dc86ba28eb34107662d51766')
+
+ depends_on('py-setuptools', type='build')