[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: Add python-branca.
From: |
guix-commits |
Subject: |
01/01: gnu: Add python-branca. |
Date: |
Mon, 19 Aug 2019 19:47:46 -0400 (EDT) |
ngz pushed a commit to branch master
in repository guix.
commit 2bdb5716d87908c3164471ad25c398768204fb5d
Author: Nicolas Goaziou <address@hidden>
Date: Tue Aug 20 01:47:27 2019 +0200
gnu: Add python-branca.
* gnu/packages/python-web.scm (python-branca): New variable.
---
gnu/packages/python-web.scm | 25 ++++++++++++++++++++++++-
1 file changed, 24 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 735f033..e622f27 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -24,7 +24,7 @@
;;; Copyright © 2015, 2016 David Thompson <address@hidden>
;;; Copyright © 2017 Mark Meyer <address@hidden>
;;; Copyright © 2018 Tomáš Čech <address@hidden>
-;;; Copyright © 2018 Nicolas Goaziou <address@hidden>
+;;; Copyright © 2018, 2019 Nicolas Goaziou <address@hidden>
;;; Copyright © 2018 Mathieu Othacehe <address@hidden>
;;; Copyright © 2018 Maxim Cournoyer <address@hidden>
;;; Copyright © 2019 Vagrant Cascadian <address@hidden>
@@ -3248,3 +3248,26 @@ Python.")
(description "This package provides a @command{slufigy} command and
library to create slugs from unicode strings while keeping it DRY.")
(license license:expat)))
+
+(define-public python-branca
+ (package
+ (name "python-branca")
+ (version "0.3.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "branca" version))
+ (sha256
+ (base32
+ "0pmigd521j2228xf8x34vbx0niwvms7xl7za0lymywj0vydjqxiy"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-jinja2" ,python-jinja2)
+ ("python-six" ,python-six)))
+ (native-inputs
+ `(("python-pytest" ,python-pytest)))
+ (home-page "https://github.com/python-visualization/branca")
+ (synopsis "Generate complex HTML+JS pages with Python")
+ (description "Generate complex HTML+JS pages with Python")
+ (license license:expat)))
+