about summary refs log tree commit diff
path: root/pkgs/development/python-modules/sphinxcontrib-excel-table
diff options
context:
space:
mode:
authorArnout Engelen <arnout@bzzt.net>2021-06-04 20:45:56 +0200
committerArnout Engelen <arnout@bzzt.net>2021-06-04 21:21:16 +0200
commit65adeb557368280d6c8248f03b2a9a9b7324f8e6 (patch)
treeaa6b4454be17d9613c058b0b6e44d99cb330475a /pkgs/development/python-modules/sphinxcontrib-excel-table
parent1c2986bbb806c57f9470bf3231d8da7250ab9091 (diff)
python3Packages.sphinxcontrib-excel-table: init at 1.0.8
Diffstat (limited to 'pkgs/development/python-modules/sphinxcontrib-excel-table')
-rw-r--r--pkgs/development/python-modules/sphinxcontrib-excel-table/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/sphinxcontrib-excel-table/default.nix b/pkgs/development/python-modules/sphinxcontrib-excel-table/default.nix
new file mode 100644
index 0000000000000..e48b24c3644f7
--- /dev/null
+++ b/pkgs/development/python-modules/sphinxcontrib-excel-table/default.nix
@@ -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;
+  };
+}