Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
54 lines
1004 B
Nix
54 lines
1004 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
git,
|
|
python3,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "git-privacy";
|
|
version = "2.3.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "EMPRI-DEVOPS";
|
|
repo = "git-privacy";
|
|
rev = "v${version}";
|
|
hash = "sha256-b2RkRL8/mZwqc3xCs+oltzualhQtp/7F9POlLlT3UUU=";
|
|
};
|
|
|
|
build-system = with python3.pkgs; [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
click
|
|
git-filter-repo
|
|
gitpython
|
|
pynacl
|
|
setuptools
|
|
];
|
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
|
git
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# Tests want to interact with a git repo
|
|
"TestGitPrivacy"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"gitprivacy"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Tool to redact Git author and committer dates";
|
|
homepage = "https://github.com/EMPRI-DEVOPS/git-privacy";
|
|
license = with licenses; [ bsd2 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "git-privacy";
|
|
};
|
|
}
|