5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
55 lines
1 KiB
Nix
55 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 ];
|
|
};
|
|
}
|