nixpkgs/pkgs/development/python-modules/sphinxcontrib-bibtex/default.nix
2019-01-18 09:37:10 +01:00

23 lines
562 B
Nix

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