Unverified Commit f7116e44 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #269041 from fabaff/minidump-bump

python311Packages.minidump: 0.0.21 -> 0.0.22
parents 6023927c 2ce07ddb
Loading
Loading
Loading
Loading
+9 −3
Original line number Diff line number Diff line
@@ -2,20 +2,25 @@
, buildPythonPackage
, fetchPypi
, pythonOlder
, setuptools
}:

buildPythonPackage rec {
  pname = "minidump";
  version = "0.0.21";
  format = "setuptools";
  version = "0.0.22";
  pyproject = true;

  disabled = pythonOlder "3.6";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-g9YSr7bFdyfr84rKQztVD4P5+MfDtlYq0quXBx/YXzo=";
    hash = "sha256-PPvvvHz3WA67Vn2P7MIY+ChkjXrCOuTgj0KXr4B2mZ0=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  # Upstream doesn't have tests
  doCheck = false;

@@ -26,6 +31,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python library to parse and read Microsoft minidump file format";
    homepage = "https://github.com/skelsec/minidump";
    changelog = "https://github.com/skelsec/minidump/releases/tag/${version}";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };