about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyliblo/default.nix
blob: 9dc57aa9c7279466aeea8244f387dd342f52074e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv
, buildPythonPackage
, fetchurl
, isPyPy
, pkgs
}:

buildPythonPackage rec {
  pname = "pyliblo";
  version = "0.9.2";
  disabled = isPyPy;

  src = fetchurl {
    url = "http://das.nasophon.de/download/${pname}-${version}.tar.gz";
    sha256 = "382ee7360aa00aeebf1b955eef65f8491366657a626254574c647521b36e0eb0";
  };

  propagatedBuildInputs = [ pkgs.liblo ];

  meta = with stdenv.lib; {
    homepage = http://das.nasophon.de/pyliblo/;
    description = "Python wrapper for the liblo OSC library";
    license = licenses.lgpl21;
  };

}