Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / sphinxcontrib-bibtex / default.nix
blob2d5a7b997464942d310765546324130b48c6cc6b
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 , oset
6 , pybtex
7 , pybtex-docutils
8 , sphinx
9 }:
11 buildPythonPackage rec {
12   pname = "sphinxcontrib-bibtex";
13   version = "2.6.2";
14   format = "setuptools";
16   disabled = pythonOlder "3.6";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-9IevaUM28ov7fWoXBwlTp9JkvsQwAKI3lyQnT1+NcK4=";
21   };
23   propagatedBuildInputs = [
24     oset
25     pybtex
26     pybtex-docutils
27     sphinx
28   ];
30   doCheck = false;
32   pythonImportsCheck = [
33     "sphinxcontrib.bibtex"
34   ];
36   pythonNamespaces = [ "sphinxcontrib" ];
38   meta = with lib; {
39     description = "A Sphinx extension for BibTeX style citations";
40     homepage = "https://github.com/mcmtroffaes/sphinxcontrib-bibtex";
41     license = licenses.bsd2;
42     maintainers = with maintainers; [ ];
43   };