nixpkgs/pkgs/development/python-modules/griffe/default.nix
2023-07-19 11:19:54 +00:00

67 lines
1.2 KiB
Nix

{ lib
, aiofiles
, buildPythonPackage
, cached-property
, colorama
, fetchFromGitHub
, git
, jsonschema
, pdm-backend
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "griffe";
version = "0.32.3";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "mkdocstrings";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-rPh4FtcigZzscm3y/BJ/0Q0wURlumowlHY15MiQw2B8=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'license = "ISC"' 'license = {file = "LICENSE"}' \
'';
nativeBuildInputs = [
pdm-backend
];
propagatedBuildInputs = [
colorama
] ++ lib.optionals (pythonOlder "3.8") [
cached-property
];
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 ];
};
}