Merge pull request #262576 from alyssais/python3.11-pyliblo
python311.pkgs.pyliblo: fix build
This commit is contained in:
commit
22fea777dc
1 changed files with 9 additions and 2 deletions
|
@ -10,19 +10,26 @@
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pyliblo";
|
pname = "pyliblo";
|
||||||
version = "0.10.0";
|
version = "0.10.0";
|
||||||
disabled = isPyPy || pythonAtLeast "3.11";
|
disabled = isPyPy;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://das.nasophon.de/download/${pname}-${version}.tar.gz";
|
url = "http://das.nasophon.de/download/${pname}-${version}.tar.gz";
|
||||||
sha256 = "13vry6xhxm7adnbyj28w1kpwrh0kf7nw83cz1yq74wl21faz2rzw";
|
sha256 = "13vry6xhxm7adnbyj28w1kpwrh0kf7nw83cz1yq74wl21faz2rzw";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
(fetchurl {
|
||||||
|
url = "https://git.alpinelinux.org/aports/plain/community/py3-pyliblo/py3.11.patch?id=a7e1eca5533657ddd7e37c43e67e8126e3447258";
|
||||||
|
hash = "sha256-4yCWNQaE/9FHGTVuvNEimBNuViWZ9aSJMcpTOP0fnM0=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = [ liblo cython ];
|
buildInputs = [ liblo cython ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://das.nasophon.de/pyliblo/";
|
homepage = "https://das.nasophon.de/pyliblo/";
|
||||||
description = "Python wrapper for the liblo OSC library";
|
description = "Python wrapper for the liblo OSC library";
|
||||||
license = licenses.lgpl21;
|
license = licenses.lgpl21Only;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue