Merge pull request #145899 from fabaff/bump-minidump
python3Packages.minidump: 0.0.20 -> 0.0.21
This commit is contained in:
commit
817df8fcb2
1 changed files with 11 additions and 4 deletions
|
@ -1,25 +1,32 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "minidump";
|
||||
version = "0.0.20";
|
||||
version = "0.0.21";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1rr91nnlzv7gnbcvv8qhbyx1kh2s4jdv7nv0qka5jya32rzjaigm";
|
||||
sha256 = "sha256-g9YSr7bFdyfr84rKQztVD4P5+MfDtlYq0quXBx/YXzo=";
|
||||
};
|
||||
|
||||
# Upstream doesn't have tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "minidump" ];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"minidump"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python library to parse and read Microsoft minidump file format";
|
||||
homepage = "https://github.com/skelsec/minidump";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = [ maintainers.fab ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue