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

lieer: 1.3 -> 1.4
This commit is contained in:
Fabian Affolter 2023-06-30 11:45:03 +02:00 committed by GitHub
commit 01af18691d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,18 +1,22 @@
{ lib, fetchFromGitHub, python3Packages }:
{ lib
, fetchFromGitHub
, python3Packages
}:
python3Packages.buildPythonApplication rec {
pname = "lieer";
version = "1.3";
version = "1.4";
format = "setuptools";
src = fetchFromGitHub {
owner = "gauteh";
repo = "lieer";
rev = "v${version}";
sha256 = "12sl7d381l1gjaam419xc8gxmsprxf0hgksz1f974qmmijvr02bh";
rev = "refs/tags/v${version}";
sha256 = "sha256-2LujfvsxMHHmYjYOnLJaLdSlzDeej+ehUr4YfVe903U=";
};
propagatedBuildInputs = with python3Packages; [
notmuch
notmuch2
oauth2client
google-api-python-client
tqdm
@ -21,7 +25,10 @@ python3Packages.buildPythonApplication rec {
# no tests
doCheck = false;
pythonImportsCheck = [ "lieer" ];
pythonImportsCheck = [
"lieer"
];
meta = with lib; {
description = "Fast email-fetching and two-way tag synchronization between notmuch and GMail";