Merge pull request #206826 from r-ryantm/auto-update/python3.9-tpm2-pytss

python39Packages.tpm2-pytss: 1.2.0 -> 2.0.0
This commit is contained in:
Fabian Affolter 2022-12-19 12:08:10 +01:00 committed by GitHub
commit 6d47f73217
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,17 +18,19 @@
buildPythonPackage rec {
pname = "tpm2-pytss";
version = "1.2.0";
version = "2.0.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-OgWWTjcj3Qd4dSaCwY+fuRQpLSFn4+9o11kPR9n8a54=";
hash = "sha256-iN5ePKMnYh1VzGbKtwdIx1tG74T+8ax/AqDGgermr90=";
};
nativeBuildInputs = [
cffi
pkgconfig # this is the python module
pkgconfig # this is the Python module
pkg-config # this is the actual pkg-config tool
setuptools-scm
];
@ -52,10 +54,13 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [ "tpm2_pytss" ];
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 ];