## [Unreleased]
+### Changed
+- Specify license
## [3.0.10] - 2022-11-23
'';
doCheck = true;
checkPhase = "./test.sh";
+ meta = {
+ description = "A replacement for `nix-channel --update`";
+ homepage = "https://git.scottworley.com/pinc";
+ license = pkgs.lib.licenses.gpl3;
+ maintainers = with pkgs.lib.maintainers; [ chkno ];
+ };
}) {
git-cache =
pkgs.python3Packages.git-cache or (pkgs.python3Packages.callPackage
+# pinch: PIN CHannels - a replacement for `nix-channel --update`
+#
+# 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 argparse
import configparser
import filecmp
setup(
name='pinch',
version='3.0.10',
+ description="Cache git content locally",
+ author="Scott Worley",
+ author_email="scottworley@scottworley.com",
+ url="https://git.scottworley.com/git-cache",
py_modules=['pinch'],
+ license="GPL-3.0",
entry_points={'console_scripts': ['pinch = pinch:main']},
dependency_links=['https://scottworley.com/git/git-cache'],
)