Merge pull request #299324 from fabaff/axis-bump

python312Packages.axis: format with nixfmt
This commit is contained in:
Fabian Affolter 2024-04-07 22:37:41 +02:00 committed by GitHub
commit 0ae6774486
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 14 additions and 17 deletions

View File

@ -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";