nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv, buildPythonPackage, fetchPypi
2, oset, pybtex, pybtex-docutils, sphinx
3}:
4
5buildPythonPackage rec {
6 version = "1.0.0";
7 pname = "sphinxcontrib-bibtex";
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "629612b001f86784669d65e662377a482052decfd9a0a17c46860878eef7b9e0";
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}