blob: 6b0fed8e0fb8c2540dddf2f4a7f8b8d1bd16f49c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{
lib,
buildPythonPackage,
fetchPypi,
git,
lxml,
rnc2rng,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "citeproc-py";
version = "0.6.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-2eOiJPk2/i5QM7XZ/9rKt2nO22HZbE4M8vC0iPHSS04=";
};
build-system = [ setuptools ];
buildInputs = [ rnc2rng ];
dependencies = [ lxml ];
nativeCheckInputs = [
git
pytestCheckHook
];
pythonImportsCheck = [ "citeproc" ];
meta = {
homepage = "https://github.com/citeproc-py/citeproc-py";
description = "Citation Style Language (CSL) parser for Python";
mainProgram = "csl_unsorted";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ bcdarwin ];
};
}
|