X-Git-Url: http://git.scottworley.com/git-cache/blobdiff_plain/604501ec2e4bb2e8d39a1d16d8c38bf8069410da..7a5602a89702788c4e5a870c1548ba226cc34e07:/default.nix?ds=inline diff --git a/default.nix b/default.nix index 9b932fb..a161d41 100644 --- a/default.nix +++ b/default.nix @@ -4,10 +4,16 @@ pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, nix, git, backoff, autopep8, mypy, pylint, }: buildPythonPackage rec { pname = "git-cache"; - version = "1.4.2-pre"; + version = "1.4.2"; src = lib.cleanSource ./.; propagatedBuildInputs = [ backoff ]; 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 ]; + }; }) { }