gcalcli: format with nixfmt-rfc-style

This commit is contained in:
Andrew Kvalheim
2024-08-23 14:36:23 -07:00
parent 4aed4b1646
commit 0ae051ffcd
+19 -7
View File
@@ -1,5 +1,10 @@
{ stdenv, lib, fetchFromGitHub, python3
, libnotify ? null }:
{
stdenv,
lib,
fetchFromGitHub,
python3,
libnotify ? null,
}:
with python3.pkgs;
@@ -8,9 +13,9 @@ buildPythonApplication rec {
version = "4.3.0";
src = fetchFromGitHub {
owner = "insanum";
repo = pname;
rev = "v${version}";
owner = "insanum";
repo = pname;
rev = "v${version}";
sha256 = "0s5fhcmz3n0dwh3vkqr4aigi59q43v03ch5jhh6v75149icwr0df";
};
@@ -20,8 +25,15 @@ buildPythonApplication rec {
'';
propagatedBuildInputs = [
python-dateutil gflags httplib2 parsedatetime six vobject
google-api-python-client oauth2client uritemplate
python-dateutil
gflags
httplib2
parsedatetime
six
vobject
google-api-python-client
oauth2client
uritemplate
libnotify
];