nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 21.05 25 lines 569 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "minidump"; 8 version = "0.0.17"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "sha256-nlPW83Tr3aec1tSYHgcZTwd+ydN12S6WNwK7gdwdatY="; 13 }; 14 15 # Upstream doesn't have tests 16 doCheck = false; 17 pythonImportsCheck = [ "minidump" ]; 18 19 meta = with lib; { 20 description = "Python library to parse and read Microsoft minidump file format"; 21 homepage = "https://github.com/skelsec/minidump"; 22 license = with licenses; [ mit ]; 23 maintainers = [ maintainers.fab ]; 24 }; 25}