2017-05-05 08:50:49 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2018-02-19 16:49:45 +00:00
|
|
|
, pyparsing
|
|
|
|
, future
|
2017-05-05 08:50:49 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "bibtexparser";
|
2018-02-17 13:18:27 +00:00
|
|
|
version = "1.0.1";
|
2017-05-05 08:50:49 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-02-17 13:18:27 +00:00
|
|
|
sha256 = "cc41cdd8332c2bf44b97daf1f135f4f267c3b744c33976655cd270b66f964c0a";
|
2017-05-05 08:50:49 +01:00
|
|
|
};
|
|
|
|
|
2018-02-19 16:49:45 +00:00
|
|
|
propagatedBuildInputs = [ pyparsing future ];
|
|
|
|
|
2017-05-05 08:50:49 +01:00
|
|
|
# No tests in archive
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Bibtex parser for python 2.7 and 3.3 and newer";
|
|
|
|
homepage = https://github.com/sciunto-org/python-bibtexparser;
|
|
|
|
license = with lib.licenses; [ gpl3 bsd3 ];
|
2017-12-05 22:20:11 +00:00
|
|
|
maintainers = with lib.maintainers; [ fridh ];
|
2017-05-05 08:50:49 +01:00
|
|
|
};
|
|
|
|
}
|