blob: c36b099f26d0e9abe078c214f31f38a28d0cf361 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pyaudio,
numpy,
libsndfile,
replaceVars,
}:
buildPythonPackage rec {
pname = "wavefile";
version = "1.6.2";
pyproject = true;
src = fetchFromGitHub {
owner = "vokimon";
repo = "python-wavefile";
tag = "python-wavefile-${version}";
hash = "sha256-TLSWhLARY+3sHkl2p3d3LDGzLu6DggjTJWFpyrwRXSI=";
};
nativeBuildInputs = [ setuptools ];
buildInputs = [
pyaudio
libsndfile
];
propagatedBuildInputs = [ numpy ];
nativeCheckInputs = [
pyaudio
numpy
libsndfile
];
patches = [
# Fix check error
# OSError: libsndfile.so.1: cannot open shared object file: No such file or directory
(replaceVars ./libsndfile.py.patch {
libsndfile = "${lib.getLib libsndfile}/lib/libsndfile${stdenv.hostPlatform.extensions.sharedLibrary}";
})
];
doCheck = false; # all test files (test/wavefileTest.py) are failing
pythonImportsCheck = [ "wavefile" ];
meta = with lib; {
description = "Pythonic libsndfile wrapper to read and write audio files";
homepage = "https://github.com/vokimon/python-wavefile";
changelog = "https://github.com/vokimon/python-wavefile#version-history";
maintainers = with maintainers; [ yuu ];
license = licenses.gpl3Plus;
};
}
|