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