mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
28 lines
541 B
Nix
28 lines
541 B
Nix
{ stdenv
|
|
, 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 stdenv.lib; {
|
|
homepage = "http://das.nasophon.de/pyliblo/";
|
|
description = "Python wrapper for the liblo OSC library";
|
|
license = licenses.lgpl21;
|
|
};
|
|
|
|
}
|