evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / mdformat-tables / default.nix
blob713eefc5ec9612a7da4462e44400529498c10d27
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   flit-core,
6   mdformat,
7   pytestCheckHook,
8   pythonOlder,
9 }:
11 buildPythonPackage rec {
12   pname = "mdformat-tables";
13   version = "0.4.1";
14   pyproject = true;
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 = [ flit-core ];
27   propagatedBuildInputs = [ mdformat ];
29   nativeCheckInputs = [ pytestCheckHook ];
31   pythonImportsCheck = [ "mdformat_tables" ];
33   meta = with lib; {
34     description = "Mdformat plugin for rendering tables";
35     homepage = "https://github.com/executablebooks/mdformat-tables";
36     license = licenses.mit;
37     maintainers = with maintainers; [
38       aldoborrero
39       polarmutex
40     ];
41   };