python310Packages.tpm2-pytss: add changelog to meta

This commit is contained in:
Fabian Affolter 2022-12-19 10:19:40 +01:00 committed by GitHub
parent 9cf8875ab0
commit 07589a631c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,16 +19,18 @@
buildPythonPackage rec {
pname = "tpm2-pytss";
version = "2.0.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-iN5ePKMnYh1VzGbKtwdIx1tG74T+8ax/AqDGgermr90=";
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 ];