Merge pull request #225725 from archer-65/update/lieer
lieer: 1.3 -> 1.4
This commit is contained in:
commit
01af18691d
1 changed files with 13 additions and 6 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue