1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "bibtexparser"; 8 version = "1.0.1"; 9 name = "${pname}-${version}"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "cc41cdd8332c2bf44b97daf1f135f4f267c3b744c33976655cd270b66f964c0a"; 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 maintainers = with lib.maintainers; [ fridh ]; 24 }; 25}