python311Packages.sev-snp-measure: 0.0.9 -> 0.0.11

This commit is contained in:
R. Ryantm 2024-06-24 04:13:19 +00:00 committed by Moritz Sanft
parent 218d138dc3
commit 3afa734a02
No known key found for this signature in database
GPG Key ID: 335D28368B1DA615

View File

@ -9,15 +9,15 @@
buildPythonPackage rec {
pname = "sev-snp-measure";
version = "0.0.9";
version = "0.0.11";
pyproject = true;
src = fetchFromGitHub {
owner = "virtee";
repo = "sev-snp-measure";
rev = "v${version}";
hash = "sha256-efW4DMple26S3Jizc7yAvdPjVivyMJq4fEdkuToamGc=";
rev = "refs/tags/v${version}";
hash = "sha256-M+d9uIAQvEmEsdhhjlwHbhB2RhlaGjphN4ov2ipzCFY=";
};
nativeBuildInputs = [
@ -29,11 +29,6 @@ buildPythonPackage rec {
propagatedBuildInputs = [ cryptography ];
postPatch = ''
# See https://github.com/virtee/sev-snp-measure/pull/46
sed -i '/types-cryptography/d' setup.cfg requirements.txt
'';
pythonImportsCheck = [ "sevsnpmeasure" ];
meta = {