summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-and-tools/git-privacy/default.nix
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-12-04 22:06:42 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-12-04 22:06:42 +0100
commitfe8eef1ae448bf3631c9e5be919c8456da35a006 (patch)
tree6a17c6d6d327504716b74f247362092c35d6e1cb /pkgs/applications/version-management/git-and-tools/git-privacy/default.nix
parent21835cba160d694e75d8ce7cac56b267b36aeb3d (diff)
parentc94cdd0978d707c08ffdfba54e682a8b553263e1 (diff)
downloadnixpkgs-fe8eef1ae448bf3631c9e5be919c8456da35a006.tar
nixpkgs-fe8eef1ae448bf3631c9e5be919c8456da35a006.tar.gz
nixpkgs-fe8eef1ae448bf3631c9e5be919c8456da35a006.tar.bz2
nixpkgs-fe8eef1ae448bf3631c9e5be919c8456da35a006.tar.lz
nixpkgs-fe8eef1ae448bf3631c9e5be919c8456da35a006.tar.xz
nixpkgs-fe8eef1ae448bf3631c9e5be919c8456da35a006.tar.zst
nixpkgs-fe8eef1ae448bf3631c9e5be919c8456da35a006.zip
Merge remote-tracking branch 'origin/master' into staging-next
Diffstat (limited to 'pkgs/applications/version-management/git-and-tools/git-privacy/default.nix')
-rw-r--r--pkgs/applications/version-management/git-and-tools/git-privacy/default.nix49
1 files changed, 49 insertions, 0 deletions
diff --git a/pkgs/applications/version-management/git-and-tools/git-privacy/default.nix b/pkgs/applications/version-management/git-and-tools/git-privacy/default.nix
new file mode 100644
index 00000000000..c1765417438
--- /dev/null
+++ b/pkgs/applications/version-management/git-and-tools/git-privacy/default.nix
@@ -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 ];
+  };
+}