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

python3Packages.cloudevents: 1.10.1 -> 1.12.0 (#438940)

parents 53c94c50 a7a86457
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -3,7 +3,6 @@
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  wheel,
  deprecation,
  flask,
  pydantic,
@@ -15,19 +14,18 @@

buildPythonPackage rec {
  pname = "cloudevents";
  version = "1.10.1";
  version = "1.12.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "cloudevents";
    repo = "sdk-python";
    tag = version;
    hash = "sha256-YIvEAofWmnUblRd4jV3Zi3VdfocOnD05CMVm/abngyg=";
    hash = "sha256-0WdCBwYz3XJWjUP0gf+IWdF4ZgPHFvUZFoQp9taqNz8=";
  };

  build-system = [
    setuptools
    wheel
  ];

  pythonImportsCheck = [ "cloudevents" ];
@@ -44,11 +42,13 @@ buildPythonPackage rec {

  disabledTestPaths = [ "samples/http-image-cloudevents/image_sample_test.py" ];

  meta = with lib; {
  __darwinAllowLocalNetworking = true;

  meta = {
    description = "Python SDK for CloudEvents";
    homepage = "https://github.com/cloudevents/sdk-python";
    changelog = "https://github.com/cloudevents/sdk-python/blob/${src.rev}/CHANGELOG.md";
    license = licenses.asl20;
    maintainers = with maintainers; [ GaetanLepage ];
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ GaetanLepage ];
  };
}
+3 −0
Original line number Diff line number Diff line
@@ -35,6 +35,9 @@ buildPythonPackage rec {

  build-system = [ setuptools ];

  pythonRelaxDeps = [
    "cloudevents"
  ];
  dependencies = [
    click
    cloudevents