{ lib , buildPythonPackage , fetchPypi , pythonOlder , asn1crypto , cffi , cryptography , ibm-sw-tpm2 , pkgconfig # see nativeBuildInputs , pkg-config # see nativeBuildInputs , pycparser , pytestCheckHook , python , pyyaml , setuptools-scm , tpm2-tss }: buildPythonPackage rec { pname = "tpm2-pytss"; version = "2.0.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-iN5ePKMnYh1VzGbKtwdIx1tG74T+8ax/AqDGgermr90="; }; nativeBuildInputs = [ cffi pkgconfig # this is the Python module pkg-config # this is the actual pkg-config tool setuptools-scm ]; buildInputs = [ tpm2-tss ]; propagatedBuildInputs = [ cffi asn1crypto cryptography pyyaml ]; # https://github.com/tpm2-software/tpm2-pytss/issues/341 doCheck = false; checkInputs = [ ibm-sw-tpm2 pytestCheckHook ]; pythonImportsCheck = [ "tpm2_pytss" ]; meta = with lib; { homepage = "https://github.com/tpm2-software/tpm2-pytss"; changelog = "https://github.com/tpm2-software/tpm2-pytss/blob/${version}/CHANGELOG.md"; description = "TPM2 TSS Python bindings for Enhanced System API (ESYS)"; license = licenses.bsd2; maintainers = with maintainers; [ baloo ]; }; }