Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pyliblo / default.nix
blob64f8e62c28626c185c18e4eccb9071e79b27cd09
1 { lib
2 , buildPythonPackage
3 , fetchurl
4 , isPyPy
5 , liblo
6 , cython
7 }:
9 buildPythonPackage rec {
10   pname = "pyliblo";
11   version = "0.10.0";
12   disabled = isPyPy;
14   src = fetchurl {
15     url = "http://das.nasophon.de/download/${pname}-${version}.tar.gz";
16     sha256 = "13vry6xhxm7adnbyj28w1kpwrh0kf7nw83cz1yq74wl21faz2rzw";
17   };
19   buildInputs = [ liblo cython ];
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   };