python313Packages.proto-plus: 1.24.0 -> 1.25.0

https://github.com/googleapis/proto-plus-python/releases/tag/v1.25.0
This commit is contained in:
Martin Weinelt
2025-01-04 22:57:11 +01:00
parent cb8c948116
commit 462bbfd89e
@@ -1,8 +1,8 @@
{
lib,
buildPythonPackage,
fetchPypi,
isPy3k,
fetchFromGitHub,
setuptools,
protobuf,
googleapis-common-protos,
pytestCheckHook,
@@ -11,16 +11,19 @@
buildPythonPackage rec {
pname = "proto-plus";
version = "1.24.0";
format = "setuptools";
disabled = !isPy3k;
version = "1.25.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-MLcqXsr+RAaw0znbNbVsQFkGTmkie4w72nRiOX+WZEU=";
src = fetchFromGitHub {
owner = "googleapis";
repo = "proto-plus-python";
tag = "v${version}";
hash = "sha256-rRA5t3QPVSeAqy60icrgvYKbvrClv22I3IYxHoMftQ0=";
};
propagatedBuildInputs = [ protobuf ];
build-system = [ setuptools ];
dependencies = [ protobuf ];
nativeCheckInputs = [
pytestCheckHook