anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / sphinxcontrib-excel-table / default.nix
blob329db4319a51a4006a3e112ae074e3fc2e862b6f
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   sphinx,
6   openpyxl,
7 }:
9 buildPythonPackage rec {
10   pname = "sphinxcontrib-excel-table";
11   version = "1.0.8";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256:1q79byn3k3ribvwqafbpixwabjhymk46ns8ym0hxcn8vhf5nljzd";
17   };
19   propagatedBuildInputs = [
20     sphinx
21     openpyxl
22   ];
24   pythonImportsCheck = [ "sphinxcontrib.excel_table" ];
26   # No tests present upstream
27   doCheck = false;
29   pythonNamespaces = [ "sphinxcontrib" ];
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   };