blob: c518fb18842b40ed346f741193c80c9f39771874 (
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
|
{
lib,
stdenv,
libdiscid,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "discid";
version = "1.3.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-cWChIRrD1qbYIT+4jdPXPjKr5eATNqWkyYWwgql9QzU=";
};
build-system = [
setuptools
];
patchPhase =
let
extension = stdenv.hostPlatform.extensions.sharedLibrary;
in
''
substituteInPlace discid/libdiscid.py \
--replace "_open_library(_LIB_NAME)" \
"_open_library('${libdiscid}/lib/libdiscid${extension}')"
'';
meta = {
description = "Python binding of libdiscid";
homepage = "https://python-discid.readthedocs.org/";
license = lib.licenses.lgpl3Plus;
};
}
|