1{ lib, buildPythonPackage, fetchFromGitHub, sphinx }:
2
3buildPythonPackage rec {
4 pname = "sphinxcontrib-log-cabinet";
5 version = "1.0.1";
6 format = "setuptools";
7
8 src = fetchFromGitHub {
9 owner = "davidism";
10 repo = "sphinxcontrib-log-cabinet";
11 rev = "refs/tags/${version}";
12 sha256 = "03cxspgqsap9q74sqkdx6r6b4gs4hq6dpvx4j58hm50yfhs06wn1";
13 };
14
15 propagatedBuildInputs = [ sphinx ];
16
17 pythonImportsCheck = [ "sphinxcontrib.log_cabinet" ];
18
19 doCheck = false; # no tests
20
21 pythonNamespaces = [ "sphinxcontrib" ];
22
23 meta = with lib; {
24 homepage = "https://github.com/davidism/sphinxcontrib-log-cabinet";
25 description = "Sphinx extension to organize changelogs";
26 license = licenses.mit;
27 maintainers = with maintainers; [ kaction ];
28 };
29}