587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
61 lines
1.2 KiB
Nix
61 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchFromGitHub
|
|
, poetry-core
|
|
, poetry-dynamic-versioning
|
|
, typing-extensions
|
|
, pytestCheckHook
|
|
, pytest-benchmark
|
|
, pytest-cov
|
|
, pydantic
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pure-protobuf";
|
|
version = "3.0.1";
|
|
|
|
format = "pyproject";
|
|
# < 3.10 requires get-annotations which isn't packaged yet
|
|
disabled = pythonOlder "3.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "eigenein";
|
|
repo = "protobuf";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-sGKnta+agrpJkQB0twFkqRreD5WB2O/06g75N0ic4mc=";
|
|
};
|
|
|
|
build-system = [
|
|
poetry-core
|
|
poetry-dynamic-versioning
|
|
typing-extensions
|
|
];
|
|
|
|
dependencies = [
|
|
typing-extensions
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pydantic
|
|
pytestCheckHook
|
|
pytest-benchmark
|
|
pytest-cov
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
"--benchmark-disable"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"pure_protobuf"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python implementation of Protocol Buffers with dataclass-based schemas";
|
|
homepage = "https://github.com/eigenein/protobuf";
|
|
changelog = "https://github.com/eigenein/protobuf/releases/tag/${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ chuangzhu ];
|
|
};
|
|
}
|