1{ lib
2, buildPythonPackage
3, fetchPypi
4, sphinx
5, openpyxl
6}:
7
8buildPythonPackage rec {
9 pname = "sphinxcontrib-excel-table";
10 version = "1.0.8";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256:1q79byn3k3ribvwqafbpixwabjhymk46ns8ym0hxcn8vhf5nljzd";
15 };
16
17 propagatedBuildInputs = [ sphinx openpyxl ];
18
19 pythonImportsCheck = [ "sphinxcontrib.excel_table" ];
20
21 # No tests present upstream
22 doCheck = false;
23
24 pythonNamespaces = [ "sphinxcontrib" ];
25
26 meta = with lib; {
27 description = "Sphinx excel-table extension";
28 homepage = "https://github.com/hackerain/sphinxcontrib-excel-table";
29 maintainers = with maintainers; [ raboof ];
30 license = licenses.asl20;
31 };
32}