python312Packages.pulsectl-asyncio: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-20 12:56:52 +02:00
parent 6c4468c349
commit 813b8e0ca2
1 changed files with 10 additions and 15 deletions

View File

@ -1,9 +1,10 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pulsectl
, pythonOlder
, setuptools
{
lib,
buildPythonPackage,
fetchFromGitHub,
pulsectl,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
@ -20,20 +21,14 @@ buildPythonPackage rec {
hash = "sha256-WqUO4eERJkRg6O+gCmjqfdVbBT/3TVVBUUduoIxcPNQ=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
pulsectl
];
dependencies = [ pulsectl ];
# Tests require a running pulseaudio instance
doCheck = false;
pythonImportsCheck = [
"pulsectl_asyncio"
];
pythonImportsCheck = [ "pulsectl_asyncio" ];
meta = with lib; {
description = "Python bindings library for PulseAudio";