python3Packages.bytewax: disable on python3.13, cleanup (#429109)

This commit is contained in:
Gaétan Lepage
2025-07-29 00:53:09 +02:00
committed by GitHub
@@ -2,7 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
pythonAtLeast,
# build-system
cmake,
@@ -30,9 +30,10 @@
buildPythonPackage rec {
pname = "bytewax";
version = "0.21.1";
format = "pyproject";
pyproject = true;
disabled = pythonOlder "3.7";
# error: the configured Python interpreter version (3.13) is newer than PyO3's maximum supported version (3.12)
disabled = pythonAtLeast "3.13";
src = fetchFromGitHub {
owner = "bytewax";
@@ -100,12 +101,12 @@ buildPythonPackage rec {
pythonImportsCheck = [ "bytewax" ];
meta = with lib; {
meta = {
description = "Python Stream Processing";
homepage = "https://github.com/bytewax/bytewax";
changelog = "https://github.com/bytewax/bytewax/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [
mslingsby
kfollesdal
];