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