pythonPackages.sphinxcontrib-bibtex: init at 0.3.6
This commit is contained in:
committed by
Vincent Laporte
parent
4b0717b2fa
commit
073e635f67
@@ -0,0 +1,22 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi
|
||||
, oset, pybtex, pybtex-docutils, sphinx
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "0.3.6";
|
||||
pname = "sphinxcontrib-bibtex";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1mfl3k6axq6rzqwq62fj8y9gabim2zcvydjpqmjj27f8v1qw0kpc";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user