Unverified Commit 08fdacb5 authored by Adam C. Stephens's avatar Adam C. Stephens
Browse files

pythonPackages.canonical-sphinx-extensions: init at 0.0.27

parent 4ad50473
Loading
Loading
Loading
Loading
+44 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  setuptools,
  beautifulsoup4,
  docutils,
  gitpython,
  requests,
  sphinx,
}:

buildPythonPackage rec {
  pname = "canonical-sphinx-extensions";
  version = "0.0.27";
  pyproject = true;

  src = fetchPypi {
    pname = "canonical_sphinx_extensions";
    inherit version;
    hash = "sha256-ZorSmn+PAVS8xO7X3zk6u3W7pn3JB9w0PhFAXzv6l78=";
  };

  build-system = [
    setuptools
  ];

  dependencies = [
    beautifulsoup4
    docutils
    gitpython
    requests
    sphinx
  ];

  doCheck = false;

  meta = {
    description = "A collection of Sphinx extensions used by Canonical documentation";
    homepage = "https://pypi.org/project/canonical-sphinx-extensions";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ ];
  };
}
+4 −0
Original line number Diff line number Diff line
@@ -2192,6 +2192,10 @@ self: super: with self; {
  canmatrix = callPackage ../development/python-modules/canmatrix { };
  canonical-sphinx-extensions =
    callPackage ../development/python-modules/canonical-sphinx-extensions
      { };
  canonicaljson = callPackage ../development/python-modules/canonicaljson { };
  canopen = callPackage ../development/python-modules/canopen { };