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,26 @@
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, moznetwork
}:
buildPythonPackage rec {
pname = "mozhttpd";
version = "0.7";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "10y1cr933ajx9ni701ayb7r361pak9wrzr7pdpyx81kkbjddq7qa";
};
propagatedBuildInputs = [ moznetwork ];
meta = {
description = "Webserver for Mozilla testing";
homepage = "https://wiki.mozilla.org/Auto-tools/Projects/Mozbase";
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ raskin ];
};
}