fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
54 lines
1 KiB
Nix
54 lines
1 KiB
Nix
{
|
|
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 ];
|
|
};
|
|
}
|