Archived
1
0
Fork 0

gnu: Add python-gphoto2

* gnu/packages/python-xyz.scm (python-gphoto2): New variable.

Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
Sebastian Schott 2020-03-07 16:11:42 +01:00 committed by Christopher Baines
parent 2763f0de41
commit f3465dee98
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -171,6 +171,28 @@
#:use-module (srfi srfi-1)
#:use-module (srfi srfi-26))
(define-public python-gphoto2
(package
(name "python-gphoto2")
(version "2.2.1")
(source (origin
(method url-fetch)
(uri (pypi-uri "gphoto2" version))
(sha256
(base32
"118zm25c8mlajfl0pzssnwz4b8lamj9dgymla9rn4nla7l244a0r"))))
(build-system python-build-system)
(native-inputs
`(("pkg-config" ,pkg-config)))
(inputs
`(("libgphoto2" ,libgphoto2)))
(home-page "https://github.com/jim-easterbrook/python-gphoto2")
(synopsis "Python interface to libgphoto2")
(description "@code{python-gphoto2} is a comprehensive Python interface
(or binding) to @code{libgphoto2}. It is built using @code{SWIG} to
automatically generate the interface code.")
(license license:gpl3+)))
(define-public python-colour
(package
(name "python-colour")