marionette-harness: init at 4.4.0

This commit is contained in:
Michael Raskin
2017-05-21 19:29:20 +02:00
parent c1894bef7a
commit daa65527c6
18 changed files with 483 additions and 0 deletions
@@ -0,0 +1,28 @@
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "mozfile";
version = "1.2";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "0mz941np62mg0zncy74d8fbq9fafsxjsxlwdsydl92badhrhzc6k";
};
propagatedBuildInputs = [ ];
# mozhttpd -> moznetwork -> mozinfo -> mozfile
doCheck = false;
meta = {
description = "File utilities for Mozilla testing";
homepage = "https://wiki.mozilla.org/Auto-tools/Projects/Mozbase";
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ raskin ];
};
}