python311Packages.minidump: refactor

This commit is contained in:
Fabian Affolter
2024-08-17 00:32:55 +02:00
parent 3721ab0f22
commit 35d88a9101

View File

@@ -18,7 +18,7 @@ buildPythonPackage rec {
hash = "sha256-964JuUTzsXzPXOzGb5/1p6RbBTR0oTrrAS9MkgRHBDc="; hash = "sha256-964JuUTzsXzPXOzGb5/1p6RbBTR0oTrrAS9MkgRHBDc=";
}; };
nativeBuildInputs = [ setuptools ]; build-system = [ setuptools ];
# Upstream doesn't have tests # Upstream doesn't have tests
doCheck = false; doCheck = false;
@@ -27,10 +27,10 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Python library to parse and read Microsoft minidump file format"; description = "Python library to parse and read Microsoft minidump file format";
mainProgram = "minidump";
homepage = "https://github.com/skelsec/minidump"; homepage = "https://github.com/skelsec/minidump";
changelog = "https://github.com/skelsec/minidump/releases/tag/${version}"; changelog = "https://github.com/skelsec/minidump/releases/tag/${version}";
license = with licenses; [ mit ]; license = licenses.mit;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
mainProgram = "minidump";
}; };
} }