summary refs log tree commit diff
path: root/pkgs/development/tools/git-privacy
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-10-12 23:39:23 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-10-12 23:39:23 +0200
commitd3ce8e4c6ce3de3d52ff9b16dcb29d04ceb2aa2e (patch)
tree1656f6d74dae0dab3933a1263bddf7a2c9e64cda /pkgs/development/tools/git-privacy
parentf21d29b0bcabd708637181792b87a6de0e821ca7 (diff)
downloadnixpkgs-d3ce8e4c6ce3de3d52ff9b16dcb29d04ceb2aa2e.tar
nixpkgs-d3ce8e4c6ce3de3d52ff9b16dcb29d04ceb2aa2e.tar.gz
nixpkgs-d3ce8e4c6ce3de3d52ff9b16dcb29d04ceb2aa2e.tar.bz2
nixpkgs-d3ce8e4c6ce3de3d52ff9b16dcb29d04ceb2aa2e.tar.lz
nixpkgs-d3ce8e4c6ce3de3d52ff9b16dcb29d04ceb2aa2e.tar.xz
nixpkgs-d3ce8e4c6ce3de3d52ff9b16dcb29d04ceb2aa2e.tar.zst
nixpkgs-d3ce8e4c6ce3de3d52ff9b16dcb29d04ceb2aa2e.zip
git-privacy: init at 2.1.0
Diffstat (limited to 'pkgs/development/tools/git-privacy')
-rw-r--r--pkgs/development/tools/git-privacy/default.nix49
1 files changed, 49 insertions, 0 deletions
diff --git a/pkgs/development/tools/git-privacy/default.nix b/pkgs/development/tools/git-privacy/default.nix
new file mode 100644
index 00000000000..c1765417438
--- /dev/null
+++ b/pkgs/development/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 ];
+  };
+}