python3Packages.tpm2-pytss: add missing pyyaml dependency

This commit is contained in:
Peter Hoeg 2022-08-02 09:49:48 +08:00
parent 7af3ca332b
commit 70e7bf379b

View file

@ -6,11 +6,12 @@
, cffi , cffi
, cryptography , cryptography
, ibm-sw-tpm2 , ibm-sw-tpm2
, pkg-config , pkgconfig # see nativeBuildInputs
, pkgconfig , pkg-config # see nativeBuildInputs
, pycparser , pycparser
, pytestCheckHook , pytestCheckHook
, python , python
, pyyaml
, setuptools-scm , setuptools-scm
, tpm2-tss , tpm2-tss
}: }:
@ -27,9 +28,8 @@ buildPythonPackage rec {
nativeBuildInputs = [ nativeBuildInputs = [
cffi cffi
pkgconfig pkgconfig # this is the python module
# somehow propagating from pkgconfig does not work pkg-config # this is the actual pkg-config tool
pkg-config
setuptools-scm setuptools-scm
]; ];
@ -41,6 +41,7 @@ buildPythonPackage rec {
cffi cffi
asn1crypto asn1crypto
cryptography cryptography
pyyaml
]; ];
# https://github.com/tpm2-software/tpm2-pytss/issues/341 # https://github.com/tpm2-software/tpm2-pytss/issues/341