nixpkgs/pkgs/development/python-modules/marionette-harness/mozcrash.nix

26 lines
539 B
Nix
Raw Normal View History

2017-05-21 18:28:30 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, mozfile
, mozlog
}:
buildPythonPackage rec {
pname = "mozcrash";
2019-10-24 07:47:38 +01:00
version = "1.1.0";
2017-05-21 18:28:30 +01:00
src = fetchPypi {
inherit pname version;
2019-10-24 07:47:38 +01:00
sha256 = "8c2d2f32bd6e0ba3644f5d16e427444d8cb51ec1e9baa340a33e10687307f8c4";
2017-05-21 18:28:30 +01:00
};
propagatedBuildInputs = [ mozfile mozlog ];
meta = {
description = "Minidump stack trace extractor";
homepage = "https://wiki.mozilla.org/Auto-tools/Projects/Mozbase";
2017-05-21 18:28:30 +01:00
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ raskin ];
};
}