python313Packages.nitrokey: relax and upgrade protobuf (#405297)

This commit is contained in:
Peder Bergebakken Sundt 2025-05-12 01:48:25 +02:00 committed by GitHub
commit e09a2cada9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -9,7 +9,7 @@
requests, requests,
tlv8, tlv8,
pyserial, pyserial,
protobuf5, protobuf,
semver, semver,
crcmod, crcmod,
hidapi, hidapi,
@ -27,6 +27,8 @@ buildPythonPackage rec {
disabled = pythonOlder "3.9"; disabled = pythonOlder "3.9";
pythonRelaxDeps = [ "protobuf" ];
build-system = [ poetry-core ]; build-system = [ poetry-core ];
dependencies = [ dependencies = [
@ -37,7 +39,7 @@ buildPythonPackage rec {
crcmod crcmod
cryptography cryptography
hidapi hidapi
protobuf5 protobuf
pyserial pyserial
]; ];