Unverified Commit 1baa9202 authored by Nick Cao's avatar Nick Cao
Browse files
parent 9cfaa8a1
Loading
Loading
Loading
Loading
+11 −2
Original line number Diff line number Diff line
@@ -3,19 +3,22 @@
, fetchFromGitHub
, setuptools
, setuptools-scm
, pyasn1
, pyasn1-modules
, cryptography
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "edk2-pytool-library";
  version = "0.15.0";
  version = "0.15.1";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "tianocore";
    repo = "edk2-pytool-library";
    rev = "v${version}";
    hash = "sha256-YNXaptzsIlMXaZu8mFihsaQfmPALUcL47BFn4m8GMfY=";
    hash = "sha256-25P5EASn0nU58Vs9rlVLjXZ0ZovhR5pnClZfAwjMzBQ=";
  };

  nativeBuildInputs = [
@@ -23,6 +26,12 @@ buildPythonPackage rec {
    setuptools-scm
  ];

  propagatedBuildInputs = [
    pyasn1
    pyasn1-modules
    cryptography
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];