Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / minidump / default.nix
blob26ac7f8afc7b3ab6cdd030665baa608a8998ef57
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 }:
7 buildPythonPackage rec {
8   pname = "minidump";
9   version = "0.0.21";
10   format = "setuptools";
12   disabled = pythonOlder "3.6";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-g9YSr7bFdyfr84rKQztVD4P5+MfDtlYq0quXBx/YXzo=";
17   };
19   # Upstream doesn't have tests
20   doCheck = false;
22   pythonImportsCheck = [
23     "minidump"
24   ];
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   };