lieer: add format

- equalize content
This commit is contained in:
Fabian Affolter 2023-06-30 11:10:19 +02:00 committed by GitHub
parent 593a8d9c81
commit 9e111b2820
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,13 +1,17 @@
{ lib, fetchFromGitHub, python3Packages }:
{ lib
, fetchFromGitHub
, python3Packages
}:
python3Packages.buildPythonApplication rec {
pname = "lieer";
version = "1.4";
format = "setuptools";
src = fetchFromGitHub {
owner = "gauteh";
repo = "lieer";
rev = "v${version}";
rev = "refs/tags/v${version}";
sha256 = "sha256-2LujfvsxMHHmYjYOnLJaLdSlzDeej+ehUr4YfVe903U=";
};
@ -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";