fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
52 lines
1 KiB
Nix
52 lines
1 KiB
Nix
{
|
|
lib,
|
|
aiofiles,
|
|
buildPythonPackage,
|
|
colorama,
|
|
fetchFromGitHub,
|
|
git,
|
|
jsonschema,
|
|
pdm-backend,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "griffe";
|
|
version = "0.45.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mkdocstrings";
|
|
repo = "griffe";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-mWJNEZPZgpqJ15HuptpjD9e14CYh4TNFbE38zI42wRk=";
|
|
};
|
|
|
|
build-system = [ pdm-backend ];
|
|
|
|
dependencies = [ colorama ];
|
|
|
|
nativeCheckInputs = [
|
|
git
|
|
jsonschema
|
|
pytestCheckHook
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
async = [ aiofiles ];
|
|
};
|
|
|
|
pythonImportsCheck = [ "griffe" ];
|
|
|
|
meta = with lib; {
|
|
description = "Signatures for entire Python programs";
|
|
homepage = "https://github.com/mkdocstrings/griffe";
|
|
changelog = "https://github.com/mkdocstrings/griffe/blob/${version}/CHANGELOG.md";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "griffe";
|
|
};
|
|
}
|