Skip to content

Commit

Permalink
git-dump: init v1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
yechielw committed Mar 11, 2025
1 parent de166a3 commit 54d2dba
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions pkgs/by-name/gi/git-dumper/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
lib,
python3,
fetchFromGitHub,
}:

python3.pkgs.buildPythonApplication rec {
pname = "git-dumper";
version = "1.0.8";
pyproject = true;

src = fetchFromGitHub {
owner = "arthaud";
repo = "git-dumper";
rev = version;
hash = "sha256-XU+6Od+mC8AV+w7sd8JaMB2Lc81ekeDLDiGGNu6bU0A=";
};

build-system = [
python3.pkgs.setuptools
];

dependencies = with python3.pkgs; [
beautifulsoup4
dulwich
pysocks
requests
requests-pkcs12
];

pythonImportsCheck = [
"git_dumper"
];

meta = {
description = "A tool to dump a git repository from a website";
homepage = "https://github.com/arthaud/git-dumper";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ];
mainProgram = "git-dumper";
};
}

0 comments on commit 54d2dba

Please sign in to comment.