My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pyliblo/default.nix

27 lines
531 B

{ lib
, buildPythonPackage
, fetchurl
, isPyPy
, liblo
, cython
}:
buildPythonPackage rec {
pname = "pyliblo";
version = "0.10.0";
disabled = isPyPy;
src = fetchurl {
url = "http://das.nasophon.de/download/${pname}-${version}.tar.gz";
sha256 = "13vry6xhxm7adnbyj28w1kpwrh0kf7nw83cz1yq74wl21faz2rzw";
};
buildInputs = [ liblo cython ];
meta = with lib; {
homepage = "http://das.nasophon.de/pyliblo/";
description = "Python wrapper for the liblo OSC library";
license = licenses.lgpl21;
};
}