Merge pull request #225725 from archer-65/update/lieer

lieer: 1.3 -> 1.4

authored by

Fabian Affolter and committed by
GitHub
01af1869 c1ea4ec7

+13 -6
+13 -6
pkgs/applications/networking/lieer/default.nix
··· 1 - { lib, fetchFromGitHub, python3Packages }: 1 + { lib 2 + , fetchFromGitHub 3 + , python3Packages 4 + }: 2 5 3 6 python3Packages.buildPythonApplication rec { 4 7 pname = "lieer"; 5 - version = "1.3"; 8 + version = "1.4"; 9 + format = "setuptools"; 6 10 7 11 src = fetchFromGitHub { 8 12 owner = "gauteh"; 9 13 repo = "lieer"; 10 - rev = "v${version}"; 11 - sha256 = "12sl7d381l1gjaam419xc8gxmsprxf0hgksz1f974qmmijvr02bh"; 14 + rev = "refs/tags/v${version}"; 15 + sha256 = "sha256-2LujfvsxMHHmYjYOnLJaLdSlzDeej+ehUr4YfVe903U="; 12 16 }; 13 17 14 18 propagatedBuildInputs = with python3Packages; [ 15 - notmuch 19 + notmuch2 16 20 oauth2client 17 21 google-api-python-client 18 22 tqdm ··· 21 25 22 26 # no tests 23 27 doCheck = false; 24 - pythonImportsCheck = [ "lieer" ]; 28 + 29 + pythonImportsCheck = [ 30 + "lieer" 31 + ]; 25 32 26 33 meta = with lib; { 27 34 description = "Fast email-fetching and two-way tag synchronization between notmuch and GMail";