python312Packages.audio-metadata: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-05 21:12:36 +02:00
parent c3bbd7710c
commit 338e473ba8
1 changed files with 17 additions and 22 deletions

View File

@ -1,16 +1,17 @@
{ lib
, attrs
, bidict
, bitstruct
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, more-itertools
, poetry-core
, pprintpp
, pythonOlder
, pythonRelaxDepsHook
, tbm-utils
{
lib,
attrs,
bidict,
bitstruct,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
more-itertools,
poetry-core,
pprintpp,
pythonOlder,
pythonRelaxDepsHook,
tbm-utils,
}:
buildPythonPackage rec {
@ -41,13 +42,9 @@ buildPythonPackage rec {
"more-itertools"
];
build-system = [
poetry-core
];
build-system = [ poetry-core ];
nativeBuildInputs = [
pythonRelaxDepsHook
];
nativeBuildInputs = [ pythonRelaxDepsHook ];
dependencies = [
attrs
@ -61,9 +58,7 @@ buildPythonPackage rec {
# Tests require ward which is not ready to be used
doCheck = false;
pythonImportsCheck = [
"audio_metadata"
];
pythonImportsCheck = [ "audio_metadata" ];
meta = with lib; {
description = "Library for handling the metadata from audio files";