Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / sphinxcontrib-excel-table / default.nix
blob732ed446aa28efc7ce45e3cfaeadae2a6714f737
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , sphinx
5 , openpyxl
6 }:
8 buildPythonPackage rec {
9   pname = "sphinxcontrib-excel-table";
10   version = "1.0.8";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256:1q79byn3k3ribvwqafbpixwabjhymk46ns8ym0hxcn8vhf5nljzd";
16   };
18   propagatedBuildInputs = [ sphinx openpyxl ];
20   pythonImportsCheck = [ "sphinxcontrib.excel_table" ];
22   # No tests present upstream
23   doCheck = false;
25   pythonNamespaces = [ "sphinxcontrib" ];
27   meta = with lib; {
28     description = "Sphinx excel-table extension";
29     homepage = "https://github.com/hackerain/sphinxcontrib-excel-table";
30     maintainers = with maintainers; [ raboof ];
31     license = licenses.asl20;
32   };