X-Git-Url: http://git.scottworley.com/rfc1751/blobdiff_plain/c4374da5ae0994f0ca5e2e243e5577199267d985..812ca2069a573d8abf45a3835f41a8838e5052ea:/default.nix diff --git a/default.nix b/default.nix index 8b3e750..f1052a2 100644 --- a/default.nix +++ b/default.nix @@ -3,10 +3,16 @@ pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, mypy, autopep8, pylint, }: buildPythonPackage rec { pname = "rfc1751"; - version = "0.1.0"; + version = "1.0.0"; src = lib.cleanSource ./.; nativeCheckInputs = [ mypy ] ++ lib.optionals lint [ autopep8 pylint ]; doCheck = true; checkPhase = "./test.sh"; - meta = { license = lib.licenses.isc; }; + meta = { + description = + "Command line tool for RFC1751 (aka S/Key) numbers-as-word-lists"; + homepage = "https://git.scottworley.com/rfc1751"; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ chkno ]; + }; }) { }