2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2018-10-26 16:11:51 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchurl
|
|
|
|
, isPyPy
|
2018-12-23 16:04:07 +00:00
|
|
|
, liblo
|
|
|
|
, cython
|
2018-10-26 16:11:51 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyliblo";
|
2018-12-23 16:04:07 +00:00
|
|
|
version = "0.10.0";
|
2018-10-26 16:11:51 +01:00
|
|
|
disabled = isPyPy;
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://das.nasophon.de/download/${pname}-${version}.tar.gz";
|
2018-12-23 16:04:07 +00:00
|
|
|
sha256 = "13vry6xhxm7adnbyj28w1kpwrh0kf7nw83cz1yq74wl21faz2rzw";
|
2018-10-26 16:11:51 +01:00
|
|
|
};
|
|
|
|
|
2018-12-23 16:04:07 +00:00
|
|
|
buildInputs = [ liblo cython ];
|
2018-10-26 16:11:51 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://das.nasophon.de/pyliblo/";
|
2018-10-26 16:11:51 +01:00
|
|
|
description = "Python wrapper for the liblo OSC library";
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|