blob: 8b776e551c139a78420c1450593cd8eda624e4cf (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pylatexenc,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "bibtexparser";
version = "2.0.0b8";
pyproject = true;
src = fetchFromGitHub {
owner = "sciunto-org";
repo = "python-bibtexparser";
tag = "v${version}";
hash = "sha256-531Mh/5DUYayXm1H0v4dPX0P9mRcqcQcU/A+f4wwqxg=";
};
build-system = [ setuptools ];
dependencies = [ pylatexenc ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "bibtexparser" ];
meta = {
description = "Bibtex parser for Python";
homepage = "https://github.com/sciunto-org/python-bibtexparser";
changelog = "https://github.com/sciunto-org/python-bibtexparser/blob/${src.tag}/CHANGELOG";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.amadejkastelic ];
};
}
|