about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/sphinx-markdown-tables/default.nix
blob: 55fb0b41f43e9411c9b72abf8ac5f6791072aa0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib
, buildPythonPackage
, fetchPypi
, sphinx
, markdown
}:

buildPythonPackage rec {
  pname = "sphinx-markdown-tables";
  version = "0.0.17";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-a8bT1ADqzP7r0ohEa8CN2DCDNnxYuF1A/mwS1371kvE=";
  };

  propagatedBuildInputs = [
    sphinx
    markdown
  ];

  pythonImportsCheck = [ "sphinx_markdown_tables" ];

  meta = with lib; {
    description = "Sphinx extension for rendering tables written in markdown";
    homepage = "https://github.com/ryanfox/sphinx-markdown-tables";
    maintainers = with maintainers; [ Madouura ];
    license = licenses.gpl3;
  };
}