1{ stdenv, buildPythonPackage, fetchPypi 2, oset, pybtex, pybtex-docutils, sphinx 3}: 4 5buildPythonPackage rec { 6 version = "0.4.0"; 7 pname = "sphinxcontrib-bibtex"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "cb9fb4526642fc080204fccd5cd8f41e9e95387278e17b1d6969b1e27c2d3e0c"; 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}