depot/third_party/nixpkgs/pkgs/development/python-modules/griffe/default.nix
Default email 92b3d6365d Project import generated by Copybara.
GitOrigin-RevId: 412b9917cea092f3d39f9cd5dead4effd5bc4053
2022-10-30 16:09:59 +01:00

60 lines
1 KiB
Nix

{ lib
, aiofiles
, buildPythonPackage
, cached-property
, fetchFromGitHub
, git
, pdm-pep517
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "griffe";
version = "0.22.2";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "mkdocstrings";
repo = pname;
rev = version;
hash = "sha256-mkYtfO+wZ4vIdpCzum9uwoKMv1Xn0few8ywbvrEwxj8=";
};
nativeBuildInputs = [
pdm-pep517
];
propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [
cached-property
];
checkInputs = [
git
pytestCheckHook
];
passthru.optional-dependencies = {
async = [
aiofiles
];
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'dynamic = ["version"]' 'version = "${version}"'
'';
pythonImportsCheck = [
"griffe"
];
meta = with lib; {
description = "Signatures for entire Python programs";
homepage = "https://github.com/mkdocstrings/griffe";
license = licenses.isc;
maintainers = with maintainers; [ fab ];
};
}