Skip to content

Commit e6f9a3c

Browse files
authored
pythonPackages.sigstore: use sigstore-protobuf-specs 0.3.2 (#391693)
2 parents 0d931ec + a600c66 commit e6f9a3c

File tree

1 file changed

+7
-3
lines changed
  • pkgs/development/python-modules/sigstore-protobuf-specs

1 file changed

+7
-3
lines changed

pkgs/development/python-modules/sigstore-protobuf-specs/default.nix

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,28 @@
55
fetchPypi,
66
buildPythonPackage,
77
betterproto,
8+
pydantic,
89
}:
910

1011
buildPythonPackage rec {
1112
pname = "sigstore-protobuf-specs";
12-
version = "0.3.5";
13+
version = "0.3.2";
1314
pyproject = true;
1415

1516
disabled = pythonOlder "3.8";
1617

1718
src = fetchPypi {
1819
pname = "sigstore_protobuf_specs";
1920
inherit version;
20-
hash = "sha256-yl0XAXrefexbuaABweDkXa5G+L2lk+j6sG6mjurBzpw=";
21+
hash = "sha256-yuBBtAUCYAuKYz9DwldpXQIiqU76HlEQp+x62njDnZk=";
2122
};
2223

2324
nativeBuildInputs = [ flit-core ];
2425

25-
propagatedBuildInputs = [ betterproto ];
26+
propagatedBuildInputs = [
27+
betterproto
28+
pydantic
29+
];
2630

2731
# Module has no tests
2832
doCheck = false;

0 commit comments

Comments
 (0)