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