13 buildPythonPackage rec {
14 pname = "mkdocstrings-python";
18 disabled = pythonOlder "3.8";
20 src = fetchFromGitHub {
21 owner = "mkdocstrings";
23 rev = "refs/tags/${version}";
24 hash = "sha256-dc9RXbrwZS/7eAF0BrGS2kJxG62rB5RLxf3yNZ6+g4Q=";
27 build-system = [ pdm-backend ];
39 pythonImportsCheck = [ "mkdocstrings_handlers" ];
42 # Tests fails with AssertionError
43 "test_windows_root_conversion"
47 description = "Python handler for mkdocstrings";
48 homepage = "https://github.com/mkdocstrings/python";
49 changelog = "https://github.com/mkdocstrings/python/blob/${version}/CHANGELOG.md";
50 license = licenses.isc;
51 maintainers = with maintainers; [ fab ];