nixpkgs/pkgs/development/python-modules/sphinxcontrib-bibtex/default.nix
2018-06-22 13:09:31 +02:00

23 lines
562 B
Nix

{ stdenv, buildPythonPackage, fetchPypi
, oset, pybtex, pybtex-docutils, sphinx
}:
buildPythonPackage rec {
version = "0.4.0";
pname = "sphinxcontrib-bibtex";
src = fetchPypi {
inherit pname version;
sha256 = "cb9fb4526642fc080204fccd5cd8f41e9e95387278e17b1d6969b1e27c2d3e0c";
};
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;
};
}