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

View File

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