gnu: Add python-straight-plugin.

* gnu/packages/python.scm (python-straight-plugin, python2-straight-plugins):
New variables.

Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
ng0 2016-12-21 11:47:17 +00:00 committed by Leo Famulari
parent a0e41de4ab
commit 789de5e279
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -6102,6 +6102,28 @@ (define-public python2-terminado
,python2-backport-ssl-match-hostname) ,python2-backport-ssl-match-hostname)
,@(package-propagated-inputs terminado)))))) ,@(package-propagated-inputs terminado))))))
(define-public python-straight-plugin
(package
(name "python-straight-plugin")
(version "1.4.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "straight.plugin" version))
(sha256
(base32
"069pjll4383p4kkgvcc40hgyvf79j2wdbpgwz77yigzxksh1gj62"))))
(build-system python-build-system)
(home-page "https://github.com/ironfroggy/straight.plugin")
(synopsis "Simple namespaced plugin facility")
(description "Straight Plugin provides a type of plugin you can create from
almost any existing Python modules, and an easy way for outside developers to
add functionality and customization to your projects with their own plugins.")
(license license:expat)))
(define-public python2-straight-plugin
(package-with-python2 python-straight-plugin))
(define-public python-fonttools (define-public python-fonttools
(package (package
(name "python-fonttools") (name "python-fonttools")