From b0367c24704e7362482ef6b86212860a25ab306e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 7 Apr 2024 18:36:56 +0200 Subject: [PATCH] python312Packages.axis: format with nixfmt --- .../python-modules/axis/default.nix | 31 +++++++++---------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/pkgs/development/python-modules/axis/default.nix b/pkgs/development/python-modules/axis/default.nix index fd222780154b..d93d6821b801 100644 --- a/pkgs/development/python-modules/axis/default.nix +++ b/pkgs/development/python-modules/axis/default.nix @@ -1,14 +1,15 @@ -{ lib -, async-timeout -, attrs -, buildPythonPackage -, fetchFromGitHub -, httpx -, orjson -, packaging -, pythonOlder -, setuptools -, xmltodict +{ + lib, + async-timeout, + attrs, + buildPythonPackage, + fetchFromGitHub, + httpx, + orjson, + packaging, + pythonOlder, + setuptools, + xmltodict, }: buildPythonPackage rec { @@ -31,9 +32,7 @@ buildPythonPackage rec { --replace-fail "wheel==0.40.0" "wheel" ''; - build-system = [ - setuptools - ]; + build-system = [ setuptools ]; dependencies = [ async-timeout @@ -47,9 +46,7 @@ buildPythonPackage rec { # Tests requires a server on localhost doCheck = false; - pythonImportsCheck = [ - "axis" - ]; + pythonImportsCheck = [ "axis" ]; meta = with lib; { description = "Python library for communicating with devices from Axis Communications";