depot/third_party/nixpkgs/pkgs/development/python-modules/cloudevents/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

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 ];
};
}