Unverified Commit 621fcc0c authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #229466 from MortenSlingsby/bytewax

bytewax: 0.15.1 -> 0.16.0
parents c09f225a b6b47d61
Loading
Loading
Loading
Loading
+11 −10
Original line number Diff line number Diff line
@@ -10,15 +10,14 @@
, protobuf
, cmake
, gcc
, dill
, multiprocess
, confluent-kafka
, pytestCheckHook
, pythonAtLeast
}:

buildPythonPackage rec {
  pname = "bytewax";
  version = "0.15.1";
  version = "0.16.0";
  format = "pyproject";

  disabled = pythonAtLeast "3.11";
@@ -27,7 +26,7 @@ buildPythonPackage rec {
    owner = "bytewax";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-4HZUu3WSrhxusvuVz8+8mndTu/9DML1tCH52eaWy+oE=";
    hash = "sha256-XdFkFhN8Z15Zw5HZ2wmnNFoTzyRtIbB7TAtOpKwuKyY=";
  };

  # Remove docs tests, myst-docutils in nixpkgs is not compatible with package requirements.
@@ -36,7 +35,7 @@ buildPythonPackage rec {

  cargoDeps = rustPlatform.fetchCargoTarball {
    inherit src;
    hash = "sha256-IfVX3k9AsqP84aagCLSwxmutUoEkP8haD+t+VY4V02U=";
    hash = "sha256-XGE1qPHi13/+8jjNCIgfzPudw561T0vUfJv5xnKySAg=";
  };

  nativeBuildInputs = [
@@ -54,12 +53,14 @@ buildPythonPackage rec {
    protobuf
  ];

  propagatedBuildInputs = [
    dill
    multiprocess
  ];
  preCheck = ''
    export PY_IGNORE_IMPORTMISMATCH=1
  '';

  checkInputs = [ pytestCheckHook ];
  checkInputs = [
    pytestCheckHook
    confluent-kafka
  ];

  meta = with lib; {
    description = "Python Stream Processing";
+5 −5
Original line number Diff line number Diff line
diff --git a/pyproject.toml b/pyproject.toml
index 9b6ee4b..4a82c15 100644
index 41b5c90..e7c7b2d 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -56,5 +56,4 @@ testpaths = [
 
     # TODO: Turn back on markdown tests once we stabilize inputs.
 
@@ -50,6 +50,5 @@ doctest_optionflags = "NORMALIZE_WHITESPACE"
 testpaths = [
     "pytests",
     "pysrc",
-    "docs",
 ]