Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / sphinxcontrib-excel-table / default.nix
blobd7cea5a6418a5d60f3588d4814b071b945418b50
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , sphinx
5 , openpyxl
6 }:
8 buildPythonPackage rec {
9   pname = "sphinxcontrib-excel-table";
10   version = "1.0.8";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256:1q79byn3k3ribvwqafbpixwabjhymk46ns8ym0hxcn8vhf5nljzd";
15   };
17   propagatedBuildInputs = [ sphinx openpyxl ];
19   pythonImportsCheck = [ "sphinxcontrib.excel_table" ];
21   # No tests present upstream
22   doCheck = false;
24   pythonNamespaces = [ "sphinxcontrib" ];
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   };