14 buildPythonPackage rec {
21 hash = "sha256-gpSzSqWckCAMRjDCzEpbhEByCRQejl0GnXpb41jpQmI=";
31 propagatedBuildInputs = [
39 # There are no tests in this package.
42 # patch has dos style eol
49 src = ./pyogg-paths.patch;
50 flacLibPath = "${flac.out}/lib/libFLAC${stdenv.hostPlatform.extensions.sharedLibrary}";
51 oggLibPath = "${libogg}/lib/libogg${stdenv.hostPlatform.extensions.sharedLibrary}";
52 vorbisLibPath = "${libvorbis}/lib/libvorbis${stdenv.hostPlatform.extensions.sharedLibrary}";
53 vorbisFileLibPath = "${libvorbis}/lib/libvorbisfile${stdenv.hostPlatform.extensions.sharedLibrary}";
54 vorbisEncLibPath = "${libvorbis}/lib/libvorbisenc${stdenv.hostPlatform.extensions.sharedLibrary}";
55 opusLibPath = "${libopus}/lib/libopus${stdenv.hostPlatform.extensions.sharedLibrary}";
56 opusFileLibPath = "${opusfile}/lib/libopusfile${stdenv.hostPlatform.extensions.sharedLibrary}";
61 description = "Xiph.org's Ogg Vorbis, Opus and FLAC for Python";
62 homepage = "https://github.com/Zuzu-Typ/PyOgg";
63 license = licenses.publicDomain;
64 maintainers = with maintainers; [ pmiddend ];