about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/mdformat-admon/default.nix
blob: a7fd0f940373b91fffc2fbd2cbd1fa8aa9cdeea6 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{ lib
, buildPythonPackage
, fetchFromGitHub
, mdformat
, python3
, pythonOlder
}:

let
  python = python3.override {
    packageOverrides = self: super: {
      mdit-py-plugins = super.mdit-py-plugins.overridePythonAttrs (_prev: rec {
      version = "0.4.0";
      doCheck = false;
      src = fetchFromGitHub {
        owner = "executablebooks";
        repo = "mdit-py-plugins";
        rev = "refs/tags/v${version}";
        hash = "sha256-YBJu0vIOD747DrJLcqiZMHq34+gHdXeGLCw1OxxzIJ0=";
      };
    });
    };
  };
in python.pkgs.buildPythonPackage rec {
  pname = "mdformat-admon";
  version = "1.0.2";
  format = "pyproject";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "KyleKing";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-33Q3Re/axnoOHZ9XYA32mmK+efsSelJXW8sD7C1M/jU=";
  };

  nativeBuildInputs = with python.pkgs; [
    flit-core
  ];

  buildInputs = with python.pkgs; [
    mdformat
  ];

  propagatedBuildInputs = with python.pkgs; [
    mdit-py-plugins
  ];

  meta = with lib; {
    description = "mdformat plugin for admonitions";
    homepage = "https://github.com/KyleKing/mdformat-admon";
    license = licenses.mit;
    maintainers = with maintainers; [ aldoborrero ];
  };
}