2020-05-15 11:39:39 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, isPy3k
|
2018-03-07 19:40:54 +00:00
|
|
|
, oset, pybtex, pybtex-docutils, sphinx
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-10-24 07:47:49 +01:00
|
|
|
version = "1.0.0";
|
2018-03-07 19:40:54 +00:00
|
|
|
pname = "sphinxcontrib-bibtex";
|
|
|
|
|
2020-05-15 11:39:39 +01:00
|
|
|
disabled = !isPy3k;
|
|
|
|
|
2018-03-07 19:40:54 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-24 07:47:49 +01:00
|
|
|
sha256 = "629612b001f86784669d65e662377a482052decfd9a0a17c46860878eef7b9e0";
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|