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 meta = with lib; {
22 homepage = "https://github.com/davidism/sphinxcontrib-log-cabinet";
23 description = "Sphinx extension to organize changelogs";
24 license = licenses.mit;
25 maintainers = with maintainers; [ kaction ];
26 };
27}