Files
2026-03-24 00:29:45 +00:00

43 lines
773 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
tqdm,
pytestCheckHook,
}:
buildPythonPackage (finalAttrs: {
pname = "ghmap";
version = "2.0.4";
pyproject = true;
src = fetchFromGitHub {
owner = "sgl-umons";
repo = "ghmap";
tag = "v${finalAttrs.version}";
hash = "sha256-FXeLSCoZRkHVXDtV/L75mACdU3MvOOSe3Cw6U2+6FfE=";
};
build-system = [
setuptools
];
dependencies = [
tqdm
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"ghmap"
];
meta = {
description = "A Python tool for mapping GitHub events to contributor activities";
homepage = "https://github.com/sgl-umons/ghmap";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ drupol ];
};
})