summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/fritzconnection/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/fritzconnection/default.nix')
-rw-r--r--pkgs/development/python-modules/fritzconnection/default.nix36
1 files changed, 16 insertions, 20 deletions
diff --git a/pkgs/development/python-modules/fritzconnection/default.nix b/pkgs/development/python-modules/fritzconnection/default.nix
index 36d4dbd5b192..4ed60bd8a704 100644
--- a/pkgs/development/python-modules/fritzconnection/default.nix
+++ b/pkgs/development/python-modules/fritzconnection/default.nix
@@ -1,10 +1,11 @@
-{ lib
-, buildPythonPackage
-, pythonOlder
-, fetchFromGitHub
-, pytestCheckHook
-, requests
-, segno
+{
+ lib,
+ buildPythonPackage,
+ pythonOlder,
+ fetchFromGitHub,
+ pytestCheckHook,
+ requests,
+ segno,
}:
buildPythonPackage rec {
@@ -21,27 +22,19 @@ buildPythonPackage rec {
hash = "sha256-nWXtXhF2pUBxHdrivi4DA7+bFiZPyxb2nqsiN3j4HdI=";
};
- propagatedBuildInputs = [
- requests
- ];
+ propagatedBuildInputs = [ requests ];
passthru.optional-dependencies = {
- qr = [
- segno
- ];
+ qr = [ segno ];
};
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
preCheck = ''
export HOME=$TEMP
'';
- pythonImportsCheck = [
- "fritzconnection"
- ];
+ pythonImportsCheck = [ "fritzconnection" ];
disabledTestPaths = [
# Functional tests require network access
@@ -53,6 +46,9 @@ buildPythonPackage rec {
homepage = "https://github.com/kbr/fritzconnection";
changelog = "https://fritzconnection.readthedocs.io/en/${version}/sources/version_history.html";
license = licenses.mit;
- maintainers = with maintainers; [ dotlambda valodim ];
+ maintainers = with maintainers; [
+ dotlambda
+ valodim
+ ];
};
}