1{ stdenv, buildPythonPackage, fetchPypi
2, oset, pybtex, pybtex-docutils, sphinx
3}:
4
5buildPythonPackage rec {
6 version = "0.4.2";
7 pname = "sphinxcontrib-bibtex";
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "0af7651hfjh4hv97xns4vpf8n3kqy7ghyjlkfda5wxw56hxgp6hn";
12 };
13
14 propagatedBuildInputs = [ oset pybtex pybtex-docutils sphinx ];
15
16 meta = {
17 description = "A Sphinx extension for BibTeX style citations";
18 homepage = "https://github.com/mcmtroffaes/sphinxcontrib-bibtex";
19 license = stdenv.lib.licenses.bsd2;
20 };
21
22}