depot/third_party/nixpkgs/pkgs/development/python-modules/mkdocstrings-python/default.nix
Default email ae2dc6aea6 Project import generated by Copybara.
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
2024-10-11 07:15:48 +02:00

53 lines
1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
griffe,
mkdocs-material,
mkdocstrings,
pdm-backend,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "mkdocstrings-python";
version = "1.12.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "mkdocstrings";
repo = "python";
rev = "refs/tags/${version}";
hash = "sha256-Dwh1MQuOjN/quxKlOMIadZ5MR8BrS/s6l4mwSBTfXQE=";
};
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 ];
};
}