12 buildPythonPackage rec {
16 src = fetchFromGitHub {
18 repo = "python-wavefile";
19 rev = "python-wavefile-${version}";
20 sha256 = "9sHj1gb93mCVpejRGSdLJzeFDCeTflZctE7kMWfqFrE=";
32 propagatedBuildInputs = [
44 # OSError: libsndfile.so.1: cannot open shared object file: No such file or directory
46 src = ./libsndfile.py.patch;
47 libsndfile = "${lib.getLib libsndfile}/lib/libsndfile${stdenv.hostPlatform.extensions.sharedLibrary}";
51 doCheck = false; # all test files (test/wavefileTest.py) are failing
53 pythonImportsCheck = [
58 description = "Pythonic libsndfile wrapper to read and write audio files";
59 homepage = "https://github.com/vokimon/python-wavefile";
60 changelog = "https://github.com/vokimon/python-wavefile#version-history";
61 maintainers = with maintainers; [ yuu ];
62 license = licenses.gpl3Plus;