5557ff764c
GitOrigin-RevId: 988cc958c57ce4350ec248d2d53087777f9e1949
66 lines
1.3 KiB
Nix
66 lines
1.3 KiB
Nix
{ lib
|
|
, aiofiles
|
|
, buildPythonPackage
|
|
, cached-property
|
|
, colorama
|
|
, fetchFromGitHub
|
|
, git
|
|
, pdm-pep517
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "griffe";
|
|
version = "0.25.5";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mkdocstrings";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-0+n5v93ERcQDKNtXxSZYfCUMTRzcbtQEXl023KSxfrE=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace 'dynamic = ["version"]' 'version = "${version}"' \
|
|
--replace 'license = "ISC"' 'license = {file = "LICENSE"}' \
|
|
--replace 'version = {source = "scm"}' 'license-expression = "ISC"'
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
pdm-pep517
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
colorama
|
|
] ++ lib.optionals (pythonOlder "3.8") [
|
|
cached-property
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
git
|
|
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 ];
|
|
};
|
|
}
|