evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / pulsectl / default.nix
blob756826b4500a5cf2de0fb230eeb1fda765ebeb9a
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   libpulseaudio,
6   glibc,
7   substituteAll,
8   stdenv,
9   pulseaudio,
10   unittestCheckHook,
13 buildPythonPackage rec {
14   pname = "pulsectl";
15   version = "24.8.0";
16   format = "setuptools";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-sFFQbQ1z08xDV879PeF7uFnX7PAE6ZSw98+oeFG8cVY=";
21   };
23   patches = [
24     # substitute library paths for libpulse and librt
25     (substituteAll {
26       src = ./library-paths.patch;
27       libpulse = "${libpulseaudio.out}/lib/libpulse${stdenv.hostPlatform.extensions.sharedLibrary}";
28       librt = "${glibc.out}/lib/librt${stdenv.hostPlatform.extensions.sharedLibrary}";
29     })
30   ];
32   pythonImportsCheck = [ "pulsectl" ];
34   nativeCheckInputs = [
35     unittestCheckHook
36     pulseaudio
37   ];
39   preCheck = ''
40     export HOME=$TMPDIR
41   '';
43   meta = with lib; {
44     description = "Python high-level interface and ctypes-based bindings for PulseAudio (libpulse)";
45     homepage = "https://github.com/mk-fg/python-pulse-control";
46     license = licenses.mit;
47     maintainers = with maintainers; [ hexa ];
48   };