10 buildPythonPackage rec {
11 pname = "pulsectl-asyncio";
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
19 repo = "pulsectl-asyncio";
21 hash = "sha256-lHVLrkFdNM8Y4t6TcXYnX8sQ4COrW3vV2sTDWeI4xZU=";
25 substituteInPlace setup.cfg --replace-fail "pulsectl >=23.5.0,<=24.11.0" "pulsectl >=23.5.0"
28 build-system = [ setuptools ];
30 dependencies = [ pulsectl ];
32 # Tests require a running pulseaudio instance
35 pythonImportsCheck = [ "pulsectl_asyncio" ];
38 description = "Python bindings library for PulseAudio";
39 homepage = "https://github.com/mhthies/pulsectl-asyncio";
40 changelog = "https://github.com/mhthies/pulsectl-asyncio/releases/tag/v${version}";
41 license = licenses.mit;
42 maintainers = with maintainers; [ fab ];