Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / mdformat-admon / default.nix
blob7025864b440a85d69910529c0f5a7265eed581a5
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-admon";
13   version = "2.0.3";
14   pyproject = true;
16   disabled = pythonOlder "3.8";
18   src = fetchFromGitHub {
19     owner = "KyleKing";
20     repo = "mdformat-admon";
21     rev = "refs/tags/v${version}";
22     hash = "sha256-zKc0kKap4ipZ+P+RYDXcwqyzq9NKcTnCmx64cApFxFg=";
23   };
25   nativeBuildInputs = [
26     flit-core
27   ];
29   propagatedBuildInputs = [
30     mdformat
31     mdit-py-plugins
32   ];
34   nativeCheckInputs = [
35     pytestCheckHook
36   ];
38   meta = with lib; {
39     description = "Mdformat plugin for admonitions";
40     homepage = "https://github.com/KyleKing/mdformat-admon";
41     license = licenses.mit;
42     maintainers = with maintainers; [ aldoborrero ];
43   };