My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/sphinxcontrib-excel-table/default.nix

30 lines
660 B

{ lib
, buildPythonPackage
, fetchPypi
, sphinx
, openpyxl
}:
buildPythonPackage rec {
pname = "sphinxcontrib-excel-table";
version = "1.0.8";
src = fetchPypi {
inherit pname version;
hash = "sha256:1q79byn3k3ribvwqafbpixwabjhymk46ns8ym0hxcn8vhf5nljzd";
};
propagatedBuildInputs = [ sphinx openpyxl ];
pythonImportsCheck = [ "sphinxcontrib.excel_table" ];
# No tests present upstream
doCheck = false;
meta = with lib; {
description = "Sphinx excel-table extension";
homepage = "https://github.com/hackerain/sphinxcontrib-excel-table";
maintainers = with maintainers; [ raboof ];
license = licenses.asl20;
};
}