mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
python3Packages.sphinxcontrib-excel-table: init at 1.0.8
This commit is contained in:
parent
1c2986bbb8
commit
65adeb5573
@ -0,0 +1,30 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
@ -7845,6 +7845,8 @@ in {
|
||||
|
||||
sphinxcontrib-devhelp = callPackage ../development/python-modules/sphinxcontrib-devhelp { };
|
||||
|
||||
sphinxcontrib-excel-table = callPackage ../development/python-modules/sphinxcontrib-excel-table { };
|
||||
|
||||
sphinxcontrib-fulltoc = callPackage ../development/python-modules/sphinxcontrib-fulltoc { };
|
||||
|
||||
sphinxcontrib-htmlhelp = callPackage ../development/python-modules/sphinxcontrib-htmlhelp { };
|
||||
|
Loading…
Reference in New Issue
Block a user