Commit 83c29429 authored by Dmitry Bogatov's avatar Dmitry Bogatov Committed by Yt
Browse files

python3.pkgs.sphinxcontrib-log-cabinet: init at 1.0.1

parent ebc6e9ed
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
{ lib, buildPythonPackage, fetchFromGitHub, sphinx }:

buildPythonPackage rec {
  pname = "sphinxcontrib-log-cabinet";
  version = "1.0.1";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "davidism";
    repo = "sphinxcontrib-log-cabinet";
    rev = "refs/tags/${version}";
    sha256 = "03cxspgqsap9q74sqkdx6r6b4gs4hq6dpvx4j58hm50yfhs06wn1";
  };

  propagatedBuildInputs = [ sphinx ];

  pythonImportsCheck = [ "sphinxcontrib.log_cabinet" ];

  doCheck = false; # no tests

  meta = with lib; {
    homepage = "https://github.com/davidism/sphinxcontrib-log-cabinet";
    description = "Sphinx extension to organize changelogs";
    license = licenses.mit;
    maintainers = with maintainers; [ kaction ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -11227,6 +11227,8 @@ self: super: with self; {
    inherit (pkgs) mscgen;
  };

  sphinxcontrib-log-cabinet = callPackage ../development/python-modules/sphinxcontrib-log-cabinet { };

  sphinxcontrib-nwdiag = callPackage ../development/python-modules/sphinxcontrib-nwdiag { };

  sphinxcontrib_newsfeed = callPackage ../development/python-modules/sphinxcontrib_newsfeed { };