biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / mkdocs-macros / default.nix
blobbc73fe8848e13f5ada0e14ad5733a34431c8c1ff
2   lib,
3   callPackage,
4   buildPythonPackage,
5   fetchPypi,
6   mkdocs,
7   jinja2,
8   python-dateutil,
9   termcolor,
10   pyyaml,
13 buildPythonPackage rec {
14   pname = "mkdocs-macros-plugin";
15   version = "1.0.5";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-/jSNdfAckR82K22ZjFez2FtQWHbd5p25JPLFEsOVwyg=";
20   };
22   propagatedBuildInputs = [
23     jinja2
24     termcolor
25     python-dateutil
26     pyyaml
27     mkdocs
28   ];
30   passthru.tests.example-doc = callPackage ./tests.nix { };
32   pythonImportsCheck = [ "mkdocs_macros" ];
34   meta = with lib; {
35     homepage = "https://github.com/fralau/mkdocs_macros_plugin";
36     description = "Create richer and more beautiful pages in MkDocs, by using variables and calls to macros in the markdown code";
37     license = licenses.mit;
38     maintainers = with maintainers; [ tljuniper ];
39   };