1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "bibtexparser";
8 version = "0.6.2";
9 name = "${pname}-${version}";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "5888219ac5db1c63ae0ad4db52ec7ad87fe7a32bd60e62ee87bceedb8ebf73b8";
14 };
15
16 # No tests in archive
17 doCheck = false;
18
19 meta = {
20 description = "Bibtex parser for python 2.7 and 3.3 and newer";
21 homepage = https://github.com/sciunto-org/python-bibtexparser;
22 license = with lib.licenses; [ gpl3 bsd3 ];
23 maintainer = with lib.maintainers; [ fridh ];
24 };
25}