Unverified Commit 6d47f732 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

python39Packages.tpm2-pytss: 1.2.0 -> 2.0.0
parents f3ddf38d 07589a63
Loading
Loading
Loading
Loading
+9 −4
Original line number Diff line number Diff line
@@ -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 ];