2 pkgs ? import <nixpkgs> { },
5 pkgs.python3Packages.callPackage (
14 buildPythonPackage rec {
17 src = lib.cleanSource ./.;
19 build-system = [ setuptools ];
23 ++ lib.optionals lint [
28 checkPhase = "./test.sh";
30 description = "Command line tool for RFC1751 (aka S/Key) numbers-as-word-lists";
31 homepage = "https://git.scottworley.com/rfc1751";
32 license = lib.licenses.isc;
33 maintainers = with lib.maintainers; [ chkno ];