Unverified Commit 9acb1a35 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

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

parents b979bd1f 49df97fd
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
@@ -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
    ];