diff --git a/overlays/python-wik.nix b/overlays/python-wik.nix index fcfac08f..497385a7 100644 --- a/overlays/python-wik.nix +++ b/overlays/python-wik.nix @@ -1,13 +1,13 @@ -final: prev: with prev.python39Packages; { +final: prev: with prev.python310Packages; { python-wiki-fetch = buildPythonPackage rec { - pname = "wik"; - version = "1.2.0"; + pname = "wik-unstable"; + version = "2022-03-04"; src = prev.fetchFromGitHub { owner = "yashsinghcodes"; - repo = pname; - rev = "b226c5d80735f419db4d641f80d8a4c99bd826d8"; - sha256 = "sha256-SW0G6sHggVPFZ1NHgMDmdOEjt06xdb5QfxL3fnhQiZs="; + repo = "wik"; + rev = "aca76040770543a55b8fb0574901bf52df099c34"; + sha256 = "sha256-qFNRzgXFyOgIvtNKR+7NG5lvQObjgezfRaloA7VH9Lc="; }; checkPhase = '' @@ -23,7 +23,7 @@ final: prev: with prev.python39Packages; { ]; meta = with prev.lib; { - description = "query wikipedia articles from your terminal"; + description = "wik is a tool to view wikipedia pages from your terminal"; homepage = "https://github.com/yashsinghcodes/wik"; license = licenses.mit; maintainers = with maintainers; [ teutat3s ];