2018-03-07 19:40:54 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
|
|
|
, oset, pybtex, pybtex-docutils, sphinx
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-01-16 17:53:30 +00:00
|
|
|
version = "0.4.2";
|
2018-03-07 19:40:54 +00:00
|
|
|
pname = "sphinxcontrib-bibtex";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-01-16 17:53:30 +00:00
|
|
|
sha256 = "0af7651hfjh4hv97xns4vpf8n3kqy7ghyjlkfda5wxw56hxgp6hn";
|
2018-03-07 19:40:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ oset pybtex pybtex-docutils sphinx ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A Sphinx extension for BibTeX style citations";
|
|
|
|
homepage = "https://github.com/mcmtroffaes/sphinxcontrib-bibtex";
|
|
|
|
license = stdenv.lib.licenses.bsd2;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|