2021-03-24 12:02:12 +00:00
|
|
|
{ lib
|
|
|
|
, python3
|
2023-05-25 14:07:31 +00:00
|
|
|
, fetchPypi
|
2021-03-24 12:02:12 +00:00
|
|
|
, git
|
|
|
|
, git-lfs
|
|
|
|
}:
|
|
|
|
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
|
|
pname = "github-backup";
|
2024-05-07 07:49:15 +00:00
|
|
|
version = "0.45.2";
|
2023-12-27 18:30:14 +00:00
|
|
|
pyproject = true;
|
2021-03-24 12:02:12 +00:00
|
|
|
|
2023-05-25 14:07:31 +00:00
|
|
|
src = fetchPypi {
|
2021-03-24 12:02:12 +00:00
|
|
|
inherit pname version;
|
2024-05-07 07:49:15 +00:00
|
|
|
hash = "sha256-wn2JRMLfqhhTREeYM+mcs68xlkRWKMlxKXToa83pu2g=";
|
2021-03-24 12:02:12 +00:00
|
|
|
};
|
|
|
|
|
2023-12-27 18:30:14 +00:00
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
|
|
setuptools
|
|
|
|
];
|
|
|
|
|
2021-03-24 12:02:12 +00:00
|
|
|
makeWrapperArgs = [
|
|
|
|
"--prefix" "PATH" ":" (lib.makeBinPath [ git git-lfs ])
|
|
|
|
];
|
|
|
|
|
|
|
|
# has no unit tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Backup a github user or organization";
|
|
|
|
homepage = "https://github.com/josegonzalez/python-github-backup";
|
2023-06-30 07:50:37 +00:00
|
|
|
changelog = "https://github.com/josegonzalez/python-github-backup/blob/${version}/CHANGES.rst";
|
2021-03-24 12:02:12 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "github-backup";
|
2021-03-24 12:02:12 +00:00
|
|
|
};
|
|
|
|
}
|