From cfbc2999cb81b52864d47c6c7ec2d032b8c3150b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 5 May 2024 10:22:24 +0200 Subject: [PATCH] python312Packages.wsgidav: format with nixfmt --- .../python-modules/wsgidav/default.nix | 37 +++++++++---------- 1 file changed, 17 insertions(+), 20 deletions(-) diff --git a/pkgs/development/python-modules/wsgidav/default.nix b/pkgs/development/python-modules/wsgidav/default.nix index a838114df798..c05415323093 100644 --- a/pkgs/development/python-modules/wsgidav/default.nix +++ b/pkgs/development/python-modules/wsgidav/default.nix @@ -1,17 +1,18 @@ -{ lib -, buildPythonPackage -, cheroot -, fetchFromGitHub -, pytestCheckHook -, pythonOlder -, defusedxml -, jinja2 -, json5 -, python-pam -, pyyaml -, requests -, setuptools -, webtest +{ + lib, + buildPythonPackage, + cheroot, + fetchFromGitHub, + pytestCheckHook, + pythonOlder, + defusedxml, + jinja2, + json5, + python-pam, + pyyaml, + requests, + setuptools, + webtest, }: buildPythonPackage rec { @@ -30,9 +31,7 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - build-system = [ - setuptools - ]; + build-system = [ setuptools ]; dependencies = [ defusedxml @@ -49,9 +48,7 @@ buildPythonPackage rec { webtest ]; - pythonImportsCheck = [ - "wsgidav" - ]; + pythonImportsCheck = [ "wsgidav" ]; meta = with lib; { description = "Generic and extendable WebDAV server based on WSGI";