mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
git-privacy: init at 2.1.0
This commit is contained in:
parent
f21d29b0bc
commit
d3ce8e4c6c
49
pkgs/development/tools/git-privacy/default.nix
Normal file
49
pkgs/development/tools/git-privacy/default.nix
Normal file
@ -0,0 +1,49 @@
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, git
|
||||
, python3
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "git-privacy";
|
||||
version = "2.1.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = python3.pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "EMPRI-DEVOPS";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0hfy43fip1l81672xfwqrz1jryzkjy7h9f2lyikxgibibil0p444";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
click
|
||||
git-filter-repo
|
||||
GitPython
|
||||
pynacl
|
||||
setuptools
|
||||
];
|
||||
|
||||
checkInputs = 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 ];
|
||||
};
|
||||
}
|
@ -1658,6 +1658,8 @@ with pkgs;
|
||||
|
||||
git-fire = callPackage ../tools/misc/git-fire { };
|
||||
|
||||
git-privacy = callPackage ../development/tools/git-privacy { };
|
||||
|
||||
git-repo-updater = python3Packages.callPackage ../development/tools/git-repo-updater { };
|
||||
|
||||
git-revise = with python3Packages; toPythonApplication git-revise;
|
||||
|
Loading…
Reference in New Issue
Block a user