Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / mdformat-tables / default.nix
blob018371ada82fa9bd89743795902c5a81c83b45c1
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , flit-core
5 , mdformat
6 , mdit-py-plugins
7 , pytestCheckHook
8 , pythonOlder
9 }:
11 buildPythonPackage rec {
12   pname = "mdformat-tables";
13   version = "0.4.1";
14   format = "pyproject";
16   disabled = pythonOlder "3.7";
18   src = fetchFromGitHub {
19     owner = "executablebooks";
20     repo = pname;
21     rev = "v${version}";
22     hash = "sha256-Q61GmaRxjxJh9GjyR8QCZOH0njFUtAWihZ9lFQJ2nQQ=";
23   };
25   nativeBuildInputs = [
26     flit-core
27   ];
29   buildInputs = [
30     mdformat
31   ];
33   nativeCheckInputs = [
34     pytestCheckHook
35   ];
37   pythonImportsCheck = [
38     "mdformat_tables"
39   ];
41   meta = with lib; {
42     description = "An mdformat plugin for rendering tables";
43     homepage = "https://github.com/executablebooks/mdformat-tables";
44     license = licenses.mit;
45     maintainers = with maintainers; [ aldoborrero polarmutex ];
46   };