-
Notifications
You must be signed in to change notification settings - Fork 10
/
xdsl.nix
46 lines (40 loc) · 936 Bytes
/
xdsl.nix
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
{
buildPythonPackage,
fetchPypi,
lib,
matplotlib,
numpy,
pyaudio,
pydub,
pythonOlder,
unittestCheckHook,
fetchFromGitHub,
immutabledict,
typing-extensions,
ordered-set
}:
buildPythonPackage rec {
pname = "xdsl";
version = "0.22.0";
src = fetchPypi {
inherit version;
pname = "xdsl";
# hash = "sha256-oh618MGF7YmQ0Y8tl7IKSu7c1n0DnW+oRbx5eeDV18w=";
hash = "sha256-+t8Lic/fm7u7PNEQs9DtSwoVnDjBjdy43f62qtkzPMs=";
};
propagatedBuildInputs = [
immutabledict
typing-extensions
ordered-set
];
# do not run tests
doCheck = false;
meta = with lib; {
description = "Audio Activity Detection tool that can process online data as well as audio files";
mainProgram = "xdsl";
homepage = "https://github.com/amsehili/xdsl/";
changelog = "https://github.com/amsehili/xdsl/blob/v${version}/CHANGELOG";
license = licenses.mit;
maintainers = [ ];
};
}