blob: 2c4088a8820133a3656cdb96e374c5306b3935cc (
plain)
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pyparsing,
pytestCheckHook,
}:
buildPythonPackage (finalAttrs: {
pname = "bibtexparser";
version = "1.4.4";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "sciunto-org";
repo = "python-${finalAttrs.pname}";
tag = "v${finalAttrs.version}";
hash = "sha256-9zLJZAk2IBYTL7lACh6erY7A44XFZGJCr8dcpYlwKRI=";
};
build-system = [ setuptools ];
dependencies = [ pyparsing ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "bibtexparser" ];
meta = {
description = "Bibtex parser for Python";
homepage = "https://github.com/sciunto-org/python-bibtexparser";
license = with lib.licenses; [
lgpl3Only # or
bsd3
];
};
})
|