12 buildPythonPackage rec {
17 src = fetchFromGitHub {
19 repo = "python-wavefile";
20 rev = "refs/tags/python-wavefile-${version}";
21 hash = "sha256-TLSWhLARY+3sHkl2p3d3LDGzLu6DggjTJWFpyrwRXSI=";
33 propagatedBuildInputs = [
45 # OSError: libsndfile.so.1: cannot open shared object file: No such file or directory
47 src = ./libsndfile.py.patch;
48 libsndfile = "${lib.getLib libsndfile}/lib/libsndfile${stdenv.hostPlatform.extensions.sharedLibrary}";
52 doCheck = false; # all test files (test/wavefileTest.py) are failing
54 pythonImportsCheck = [
59 description = "Pythonic libsndfile wrapper to read and write audio files";
60 homepage = "https://github.com/vokimon/python-wavefile";
61 changelog = "https://github.com/vokimon/python-wavefile#version-history";
62 maintainers = with maintainers; [ yuu ];
63 license = licenses.gpl3Plus;