Skip to content

Commit

Permalink
python313Packages.sigstore-protobuf-specs: 0.3.2 -> 0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Bot-wxt1221 committed Jan 19, 2025
1 parent 3c99ffa commit 5fa4417
Showing 1 changed file with 14 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,34 +5,41 @@
fetchPypi,
buildPythonPackage,
betterproto,
pydantic,
}:

buildPythonPackage rec {
pname = "sigstore-protobuf-specs";
version = "0.3.2";
version = "0.3.5";
pyproject = true;

disabled = pythonOlder "3.8";

src = fetchPypi {
pname = "sigstore_protobuf_specs";
inherit version;
hash = "sha256-yuBBtAUCYAuKYz9DwldpXQIiqU76HlEQp+x62njDnZk=";
hash = "sha256-yl0XAXrefexbuaABweDkXa5G+L2lk+j6sG6mjurBzpw=";
};

nativeBuildInputs = [ flit-core ];
build-system = [ flit-core ];

propagatedBuildInputs = [ betterproto ];
dependencies = [
betterproto
pydantic
];

# Module has no tests
doCheck = false;

pythonImportsCheck = [ "sigstore_protobuf_specs" ];

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 ];
license = lib.licenses.asl20;
maintainers = with lib.aintainers; [
fab
bot-wxt1221
];
};
}

0 comments on commit 5fa4417

Please sign in to comment.