python311Packages.cloudevents: init at 1.10.1

This commit is contained in:
Gaetan Lepage 2024-04-16 22:45:07 +02:00
parent 30de55fe83
commit fb13727a25
2 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,55 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, wheel
, deprecation
, flask
, pydantic
, pytestCheckHook
, requests
, sanic
, sanic-testing
}:
buildPythonPackage rec {
pname = "cloudevents";
version = "1.10.1";
pyproject = true;
src = fetchFromGitHub {
owner = "cloudevents";
repo = "sdk-python";
rev = "refs/tags/${version}";
hash = "sha256-YIvEAofWmnUblRd4jV3Zi3VdfocOnD05CMVm/abngyg=";
};
build-system = [
setuptools
wheel
];
pythonImportsCheck = [ "cloudevents" ];
nativeCheckInputs = [
deprecation
flask
pydantic
pytestCheckHook
requests
sanic
sanic-testing
];
disabledTestPaths = [
"samples/http-image-cloudevents/image_sample_test.py"
];
meta = with lib; {
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 ];
};
}

View File

@ -2264,6 +2264,8 @@ self: super: with self; {
clldutils = callPackage ../development/python-modules/clldutils { };
cloudevents = callPackage ../development/python-modules/cloudevents { };
cloudflare = callPackage ../development/python-modules/cloudflare { };
cloudpathlib = callPackage ../development/python-modules/cloudpathlib { };