54 lines
1 KiB
Nix
54 lines
1 KiB
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchFromGitHub,
|
||
|
griffe,
|
||
|
mkdocs-material,
|
||
|
mkdocstrings,
|
||
|
pdm-backend,
|
||
|
pytestCheckHook,
|
||
|
pythonOlder,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "mkdocstrings-python";
|
||
|
version = "1.12.2";
|
||
|
pyproject = true;
|
||
|
|
||
|
disabled = pythonOlder "3.8";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "mkdocstrings";
|
||
|
repo = "python";
|
||
|
rev = "refs/tags/${version}";
|
||
|
hash = "sha256-dc9RXbrwZS/7eAF0BrGS2kJxG62rB5RLxf3yNZ6+g4Q=";
|
||
|
};
|
||
|
|
||
|
build-system = [ pdm-backend ];
|
||
|
|
||
|
dependencies = [
|
||
|
griffe
|
||
|
mkdocstrings
|
||
|
];
|
||
|
|
||
|
nativeCheckInputs = [
|
||
|
mkdocs-material
|
||
|
pytestCheckHook
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [ "mkdocstrings_handlers" ];
|
||
|
|
||
|
disabledTests = [
|
||
|
# Tests fails with AssertionError
|
||
|
"test_windows_root_conversion"
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Python handler for mkdocstrings";
|
||
|
homepage = "https://github.com/mkdocstrings/python";
|
||
|
changelog = "https://github.com/mkdocstrings/python/blob/${version}/CHANGELOG.md";
|
||
|
license = licenses.isc;
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
};
|
||
|
}
|