1{ lib
2, buildPythonPackage
3, fetchurl
4, isPyPy
5, liblo
6, cython
7}:
8
9buildPythonPackage rec {
10 pname = "pyliblo";
11 version = "0.10.0";
12 disabled = isPyPy;
13
14 src = fetchurl {
15 url = "http://das.nasophon.de/download/${pname}-${version}.tar.gz";
16 sha256 = "13vry6xhxm7adnbyj28w1kpwrh0kf7nw83cz1yq74wl21faz2rzw";
17 };
18
19 buildInputs = [ liblo cython ];
20
21 meta = with lib; {
22 homepage = "http://das.nasophon.de/pyliblo/";
23 description = "Python wrapper for the liblo OSC library";
24 license = licenses.lgpl21;
25 };
26
27}