python312Packages.axis: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-07 18:36:56 +02:00
parent c150967c30
commit b0367c2470

View File

@ -1,14 +1,15 @@
{ lib {
, async-timeout lib,
, attrs async-timeout,
, buildPythonPackage attrs,
, fetchFromGitHub buildPythonPackage,
, httpx fetchFromGitHub,
, orjson httpx,
, packaging orjson,
, pythonOlder packaging,
, setuptools pythonOlder,
, xmltodict setuptools,
xmltodict,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -31,9 +32,7 @@ buildPythonPackage rec {
--replace-fail "wheel==0.40.0" "wheel" --replace-fail "wheel==0.40.0" "wheel"
''; '';
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [
async-timeout async-timeout
@ -47,9 +46,7 @@ buildPythonPackage rec {
# Tests requires a server on localhost # Tests requires a server on localhost
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "axis" ];
"axis"
];
meta = with lib; { meta = with lib; {
description = "Python library for communicating with devices from Axis Communications"; description = "Python library for communicating with devices from Axis Communications";