[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/06: gnu: Add python-citeproc-py.
From: |
guix-commits |
Subject: |
05/06: gnu: Add python-citeproc-py. |
Date: |
Mon, 21 Sep 2020 17:38:11 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit d076ddc560b61c77b63ae84059782cf2330893cc
Author: Konrad Hinsen <konrad.hinsen@fastmail.net>
AuthorDate: Wed Sep 16 12:20:08 2020 +0200
gnu: Add python-citeproc-py.
* gnu/packages/python-xyz.scm (python-citeproc-py): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 004f07c..e14f4c7 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -22046,3 +22046,28 @@ and pandoc-citeproc.")
a Python library to convert RELAX NG schemata in Compact syntax (rnc) to
equivalent schemata in the XML-based default RELAX NG syntax.")
(license license:expat)))
+
+(define-public python-citeproc-py
+ (package
+ (name "python-citeproc-py")
+ (version "0.5.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "citeproc-py" version))
+ (sha256
+ (base32
+ "00aaff50jy4j0nakdzq9258z1gzrac9baarli2ymgspj88jg5968"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-lxml" ,python-lxml)
+ ("python-rnc2rng" ,python-rnc2rng)))
+ (home-page
+ "https://github.com/brechtm/citeproc-py")
+ (synopsis "Citations and bibliography formatter")
+ (description
+ "Citeproc-py is a CSL processor for Python. It aims to implement the
+CSL 1.0.1 specification. citeproc-py can output styled citations and
+bibliographies in a number of different output formats. Currently supported
+are plain text, reStructuredText and HTML.")
+ (license license:bsd-2)))
- branch master updated (a2b2589 -> 92951bf), guix-commits, 2020/09/21
- 01/06: environment: '--link-profile' uses ~/.guix-profile for environment variables., guix-commits, 2020/09/21
- 02/06: gnu: gdsl: Replace 'url-fetch' by 'git-fetch'., guix-commits, 2020/09/21
- 03/06: guix: scripts: build: Mention 'PACKAGE' in '--with-source' option., guix-commits, 2020/09/21
- 06/06: bash completion: Complete file names after 'guix package -p'., guix-commits, 2020/09/21
- 04/06: gnu: Add python-rnc2rng., guix-commits, 2020/09/21
- 05/06: gnu: Add python-citeproc-py.,
guix-commits <=