depot/third_party/nixpkgs/pkgs/development/python-modules/mkdocstrings-python/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

51 lines
986 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, griffe
, mkdocs-material
, mkdocstrings
, pdm-backend
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "mkdocstrings-python";
version = "1.8.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "mkdocstrings";
repo = "python";
rev = "refs/tags/${version}";
hash = "sha256-beLZpf0Zjk6LjveD7c+1XEi4SpQnmmZZOM8dIvzqZGI=";
};
nativeBuildInputs = [
pdm-backend
];
propagatedBuildInputs = [
griffe
mkdocstrings
];
nativeCheckInputs = [
mkdocs-material
pytestCheckHook
];
pythonImportsCheck = [
"mkdocstrings_handlers"
];
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 ];
};
}