From d9397fe5af28e91c1e98c9b5f6a42198cc98c793 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sat, 18 Oct 2025 13:58:55 -0700 Subject: [PATCH] python3Packages.sigstore-protobuf-specs: 0.3.2 -> 0.5.0 --- .../sigstore-protobuf-specs/default.nix | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/sigstore-protobuf-specs/default.nix b/pkgs/development/python-modules/sigstore-protobuf-specs/default.nix index 9e65def1d162..f7f99b05e8bc 100644 --- a/pkgs/development/python-modules/sigstore-protobuf-specs/default.nix +++ b/pkgs/development/python-modules/sigstore-protobuf-specs/default.nix @@ -1,6 +1,5 @@ { lib, - pythonOlder, flit-core, fetchPypi, buildPythonPackage, @@ -10,15 +9,13 @@ buildPythonPackage rec { pname = "sigstore-protobuf-specs"; - version = "0.3.2"; + version = "0.5.0"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchPypi { pname = "sigstore_protobuf_specs"; inherit version; - hash = "sha256-yuBBtAUCYAuKYz9DwldpXQIiqU76HlEQp+x62njDnZk="; + hash = "sha256-zvnrMrLGwlHeNuIoWkCq8glIJ+rhifXngE10jMw9W4E="; }; nativeBuildInputs = [ flit-core ]; @@ -35,10 +32,10 @@ buildPythonPackage rec { passthru.skipBulkUpdate = true; - meta = with lib; { + meta = { description = "Library for serializing and deserializing Sigstore messages"; - homepage = "https://pypi.org/project/sigstore-protobuf-specs/"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + homepage = "https://github.com/sigstore/protobuf-specs/tree/main/gen/pb-python"; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; }