python3Packages.bytewax: disable on python3.13, cleanup

Changed files
+7 -6
pkgs
development
python-modules
bytewax
+7 -6
pkgs/development/python-modules/bytewax/default.nix
···
lib,
buildPythonPackage,
fetchFromGitHub,
-
pythonOlder,
# build-system
cmake,
···
buildPythonPackage rec {
pname = "bytewax";
version = "0.21.1";
-
format = "pyproject";
-
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "bytewax";
···
pythonImportsCheck = [ "bytewax" ];
-
meta = with lib; {
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; [
mslingsby
kfollesdal
];
···
lib,
buildPythonPackage,
fetchFromGitHub,
+
pythonAtLeast,
# build-system
cmake,
···
buildPythonPackage rec {
pname = "bytewax";
version = "0.21.1";
+
pyproject = true;
+
# 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";
···
pythonImportsCheck = [ "bytewax" ];
+
meta = {
description = "Python Stream Processing";
homepage = "https://github.com/bytewax/bytewax";
changelog = "https://github.com/bytewax/bytewax/releases/tag/v${version}";
+
license = lib.licenses.asl20;
+
maintainers = with lib.maintainers; [
mslingsby
kfollesdal
];