2017-07-14 13:37:35 +00:00
|
|
|
{ stdenv, libdiscid, buildPythonPackage, fetchPypi }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "discid";
|
2017-07-28 14:49:08 +00:00
|
|
|
version = "1.1.1";
|
2017-07-14 13:37:35 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-07-28 14:49:08 +00:00
|
|
|
sha256 = "78a3bf6c8377fdbe3d85e914a209ff97aa43e35605779639847b510ced31f7b9";
|
2017-07-14 13:37:35 +00:00
|
|
|
};
|
|
|
|
|
2018-03-10 23:15:41 +00:00
|
|
|
patchPhase =
|
|
|
|
let extension = stdenv.hostPlatform.extensions.sharedLibrary; in
|
|
|
|
''
|
|
|
|
substituteInPlace discid/libdiscid.py \
|
|
|
|
--replace "_open_library(_LIB_NAME)" \
|
|
|
|
"_open_library('${libdiscid}/lib/libdiscid${extension}')"
|
|
|
|
'';
|
2017-07-14 13:37:35 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Python binding of libdiscid";
|
|
|
|
homepage = "https://python-discid.readthedocs.org/";
|
|
|
|
license = licenses.lgpl3Plus;
|
|
|
|
};
|
|
|
|
}
|