## [Unreleased]
+### Changed
+- Specify license
## [1.4.2] - 2022-11-23
checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
doCheck = true;
checkPhase = "./test.sh";
+ meta = {
+ description = "Cache git content locally";
+ homepage = "https://git.scottworley.com/git-cache";
+ license = pkgs.lib.licenses.gpl3;
+ maintainers = with pkgs.lib.maintainers; [ chkno ];
+ };
}) { }
+# git-cache: Cache git content locally
+#
+# This program is free software: you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by the
+# Free Software Foundation, version 3.
+
+
# It would be nice if we could share the nix git cache, but as of the
# time of writing it is transitioning from gitv2 (deprecated) to gitv3
# (not ready yet), and trying to straddle them both is too far into nix
setup(
name="git_cache",
version="1.4.2",
- entry_points={'console_scripts': ['git-cache = git_cache:_main']},
+ description="Cache git content locally",
+ author="Scott Worley",
+ author_email="scottworley@scottworley.com",
+ url="https://git.scottworley.com/git-cache",
py_modules=['git_cache'],
+ license="GPL-3.0",
+ entry_points={'console_scripts': ['git-cache = git_cache:_main']},
)
+# git-cache: Cache git content locally
+#
+# This program is free software: you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by the
+# Free Software Foundation, version 3.
+
+
import os.path
import tempfile
import shutil