2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, libdiscid, buildPythonPackage, fetchPypi }:
|
2017-07-14 14:37:35 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "discid";
|
2019-03-12 21:50:30 +00:00
|
|
|
version = "1.2.0";
|
2017-07-14 14:37:35 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-03-12 21:50:30 +00:00
|
|
|
sha256 = "1fc6kvnqwaz9lrs2qgsp8wh0nabf49010r0r53wnsmpmafy315nd";
|
2017-07-14 14:37:35 +01: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 14:37:35 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-07-14 14:37:35 +01:00
|
|
|
description = "Python binding of libdiscid";
|
|
|
|
homepage = "https://python-discid.readthedocs.org/";
|
|
|
|
license = licenses.lgpl3Plus;
|
|
|
|
};
|
|
|
|
}
|