1{ lib
2, buildPythonPackage
3, fetchPypi
4, pythonOlder
5}:
6
7buildPythonPackage rec {
8 pname = "minidump";
9 version = "0.0.21";
10 format = "setuptools";
11
12 disabled = pythonOlder "3.6";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "sha256-g9YSr7bFdyfr84rKQztVD4P5+MfDtlYq0quXBx/YXzo=";
17 };
18
19 # Upstream doesn't have tests
20 doCheck = false;
21
22 pythonImportsCheck = [
23 "minidump"
24 ];
25
26 meta = with lib; {
27 description = "Python library to parse and read Microsoft minidump file format";
28 homepage = "https://github.com/skelsec/minidump";
29 license = with licenses; [ mit ];
30 maintainers = with maintainers; [ fab ];
31 };
32}