63 lines
1.2 KiB
Nix
63 lines
1.2 KiB
Nix
{ 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 = "1.2.0";
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-OgWWTjcj3Qd4dSaCwY+fuRQpLSFn4+9o11kPR9n8a54=";
|
|
};
|
|
|
|
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";
|
|
description = "TPM2 TSS Python bindings for Enhanced System API (ESYS)";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ baloo ];
|
|
};
|
|
}
|