fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ lib
2, buildPythonPackage
3, fetchPypi
4, mozinfo
5}:
6
7buildPythonPackage rec {
8 pname = "moztest";
9 version = "0.8";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "1pg9pqq4xnn14k1jqbyqg81zag2v66y725537v6hixi41yiqkdas";
14 };
15
16 propagatedBuildInputs = [ mozinfo ];
17
18 meta = {
19 description = "Mozilla test result storage and output";
20 homepage = "https://wiki.mozilla.org/Auto-tools/Projects/Mozbase";
21 license = lib.licenses.mpl20;
22 maintainers = with lib.maintainers; [ raskin ];
23 };
24}