anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / sphinx-markdown-tables / default.nix
blob6c9d36c69f0c12e0257e3d91ebd1f7c6fdfc3bda
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   sphinx,
6   markdown,
7 }:
9 buildPythonPackage rec {
10   pname = "sphinx-markdown-tables";
11   version = "0.0.17";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-a8bT1ADqzP7r0ohEa8CN2DCDNnxYuF1A/mwS1371kvE=";
17   };
19   propagatedBuildInputs = [
20     sphinx
21     markdown
22   ];
24   pythonImportsCheck = [ "sphinx_markdown_tables" ];
26   meta = with lib; {
27     description = "Sphinx extension for rendering tables written in markdown";
28     homepage = "https://github.com/ryanfox/sphinx-markdown-tables";
29     maintainers = with maintainers; [ Madouura ];
30     license = licenses.gpl3;
31   };