blob: ee021b2a755b3656333ff43680eab599edb931b3 (
plain)
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
|
{
lib,
fetchFromGitHub,
buildPythonPackage,
hatchling,
}:
buildPythonPackage rec {
pname = "mkdocs-material-extensions";
version = "1.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "facelessuser";
repo = "mkdocs-material-extensions";
tag = version;
hash = "sha256-/jU30Ol10/4haR3ZPJWZ3iWRfXG/RUOU1oclOYGjjAY=";
};
nativeBuildInputs = [ hatchling ];
doCheck = false; # Circular dependency
pythonImportsCheck = [ "materialx" ];
meta = {
description = "Markdown extension resources for MkDocs Material";
homepage = "https://github.com/facelessuser/mkdocs-material-extensions";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dandellion ];
};
}
|