blob: 8481f75272eb50fa1a5c99b7c8191d3f18ba41fe (
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
|
{
lib,
stdenv,
buildPythonPackage,
fetchPypi,
isPy27,
setuptools,
cffi,
numpy,
portaudio,
replaceVars,
}:
buildPythonPackage rec {
pname = "sounddevice";
version = "0.5.2";
pyproject = true;
disabled = isPy27;
src = fetchPypi {
inherit pname version;
hash = "sha256-xjTVG9TpItbw+l4al1zIl8lH9h0x2p95un6jTf9Ei0k=";
};
build-system = [ setuptools ];
dependencies = [
cffi
numpy
portaudio
];
nativeBuildInputs = [ cffi ];
# No tests included nor upstream available.
doCheck = false;
pythonImportsCheck = [ "sounddevice" ];
patches = [
(replaceVars ./fix-portaudio-library-path.patch {
portaudio = "${portaudio}/lib/libportaudio${stdenv.hostPlatform.extensions.sharedLibrary}";
})
];
meta = {
description = "Play and Record Sound with Python";
homepage = "http://python-sounddevice.rtfd.org/";
license = with lib.licenses; [ mit ];
};
}
|