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