blob: 90fe12d0c1d9ddcdf67931e77c9f40eddf348a1c (
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,
liblsl,
fetchFromGitHub,
buildPythonPackage,
stdenv,
numpy,
setuptools,
setuptools-scm,
wheel,
}:
buildPythonPackage rec {
pname = "pylsl";
version = "1.18.1";
pyproject = true;
src = fetchFromGitHub {
owner = "labstreaminglayer";
repo = "pylsl";
tag = "v${version}";
hash = "sha256-H/ALvRtgv1Ms9VeTJvDRCpg0Q+/4Xjx/NS4whOGmtU8=";
};
postPatch = ''
substituteInPlace src/pylsl/lib/__init__.py \
--replace "def find_liblsl_libraries(verbose=False):" "$(echo -e "def find_liblsl_libraries(verbose=False):\n yield '${liblsl}/lib/liblsl.${
if stdenv.hostPlatform.isDarwin then "dylib" else "so"
}'")"
'';
build-system = [
setuptools
setuptools-scm
wheel
];
dependencies = [
liblsl
numpy
];
pythonImportsCheck = [ "pylsl" ];
meta = {
description = "Python bindings (pylsl) for liblsl";
homepage = "https://github.com/labstreaminglayer/pylsl";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ abcsds ];
};
}
|