summary refs log tree commit diff
path: root/pkgs/development/python-modules/marionette-harness/mozcrash.nix
blob: c5d91fbfef79726a23367cbddf3e6e9f343916fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib
, buildPythonPackage
, fetchPypi
, mozfile
, mozlog
}:

buildPythonPackage rec {
  pname = "mozcrash";
  version = "1.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "8c2d2f32bd6e0ba3644f5d16e427444d8cb51ec1e9baa340a33e10687307f8c4";
  };

  propagatedBuildInputs = [ mozfile mozlog ];

  meta = {
    description = "Minidump stack trace extractor";
    homepage = https://wiki.mozilla.org/Auto-tools/Projects/Mozbase;
    license = lib.licenses.mpl20;
    maintainers = with lib.maintainers; [ raskin ];
  };
}