evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / minidump / default.nix
blobd50fdfaeedfcb4c5772cc145adb0778cd2dc21e5
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   setuptools,
7 }:
9 buildPythonPackage rec {
10   pname = "minidump";
11   version = "0.0.24";
12   pyproject = true;
14   disabled = pythonOlder "3.6";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-964JuUTzsXzPXOzGb5/1p6RbBTR0oTrrAS9MkgRHBDc=";
19   };
21   build-system = [ setuptools ];
23   # Upstream doesn't have tests
24   doCheck = false;
26   pythonImportsCheck = [ "minidump" ];
28   meta = with lib; {
29     description = "Python library to parse and read Microsoft minidump file format";
30     homepage = "https://github.com/skelsec/minidump";
31     changelog = "https://github.com/skelsec/minidump/releases/tag/${version}";
32     license = licenses.mit;
33     maintainers = with maintainers; [ fab ];
34     mainProgram = "minidump";
35   };