94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
57 lines
1.1 KiB
Nix
57 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, griffe
|
|
, mkdocs-material
|
|
, mkdocstrings
|
|
, pdm-backend
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mkdocstrings-python";
|
|
version = "0.10.1";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mkdocstrings";
|
|
repo = "python";
|
|
rev = version;
|
|
hash = "sha256-VGPlOHQNtXrfmcne93xDIxN20KDGlTQrjeAKhX/L6K0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pdm-backend
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
griffe
|
|
mkdocstrings
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
mkdocs-material
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace 'license = "ISC"' 'license = {text = "ISC"}' \
|
|
--replace 'dynamic = ["version"]' 'version = "${version}"'
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|