python311.pkgs.pyliblo: fix build

This commit is contained in:
Alyssa Ross 2023-10-21 16:40:07 +00:00
parent 04ecbb8950
commit 6504124f98
No known key found for this signature in database
GPG key ID: F9DBED4859B271C0

View file

@ -10,13 +10,20 @@
buildPythonPackage rec {
pname = "pyliblo";
version = "0.10.0";
disabled = isPyPy || pythonAtLeast "3.11";
disabled = isPyPy;
src = fetchurl {
url = "http://das.nasophon.de/download/${pname}-${version}.tar.gz";
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 ];
meta = with lib; {