pyliblo: init at 0.9.2

This commit is contained in:
David Calvo Ruiz 2016-01-12 21:24:50 +01:00
parent 022a05b07b
commit d3dbedac50

View file

@ -15944,6 +15944,25 @@ in modules // {
};
});
pyliblo = buildPythonPackage rec {
name = "pyliblo-${version}";
version = "0.9.2";
disabled = isPyPy;
src = pkgs.fetchurl {
url = "http://das.nasophon.de/download/${name}.tar.gz";
sha256 = "382ee7360aa00aeebf1b955eef65f8491366657a626254574c647521b36e0eb0";
};
propagatedBuildInputs = with self ; [ pkgs.liblo ];
meta = {
homepage = http://das.nasophon.de/pyliblo/;
description = "Python wrapper for the liblo OSC library";
license = licenses.lgpl21;
};
};
pymacs = buildPythonPackage rec {
version = "0.25";