summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/jaraco-abode/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/jaraco-abode/default.nix')
-rw-r--r--pkgs/development/python-modules/jaraco-abode/default.nix54
1 files changed, 28 insertions, 26 deletions
diff --git a/pkgs/development/python-modules/jaraco-abode/default.nix b/pkgs/development/python-modules/jaraco-abode/default.nix
index d113028361fe..a1a725ddf001 100644
--- a/pkgs/development/python-modules/jaraco-abode/default.nix
+++ b/pkgs/development/python-modules/jaraco-abode/default.nix
@@ -1,25 +1,26 @@
-{ lib
-, buildPythonPackage
-, bx-py-utils
-, colorlog
-, fetchFromGitHub
-, importlib-resources
-, jaraco-classes
-, jaraco-collections
-, jaraco-itertools
-, jaraco-context
-, jaraco-net
-, keyring
-, lomond
-, more-itertools
-, platformdirs
-, pytestCheckHook
-, pythonOlder
-, requests
-, requests-mock
-, requests-toolbelt
-, setuptools
-, setuptools-scm
+{
+ lib,
+ buildPythonPackage,
+ bx-py-utils,
+ colorlog,
+ fetchFromGitHub,
+ importlib-resources,
+ jaraco-classes,
+ jaraco-collections,
+ jaraco-itertools,
+ jaraco-context,
+ jaraco-net,
+ keyring,
+ lomond,
+ more-itertools,
+ platformdirs,
+ pytestCheckHook,
+ pythonOlder,
+ requests,
+ requests-mock,
+ requests-toolbelt,
+ setuptools,
+ setuptools-scm,
}:
buildPythonPackage rec {
@@ -63,9 +64,7 @@ buildPythonPackage rec {
requests-mock
];
- pythonImportsCheck = [
- "jaraco.abode"
- ];
+ pythonImportsCheck = [ "jaraco.abode" ];
preCheck = ''
export HOME=$TEMP
@@ -86,6 +85,9 @@ buildPythonPackage rec {
description = "Library interfacing to the Abode home security system";
mainProgram = "abode";
license = licenses.mit;
- maintainers = with maintainers; [ jamiemagee dotlambda ];
+ maintainers = with maintainers; [
+ jamiemagee
+ dotlambda
+ ];
};
}