summary refs log tree commit diff
path: root/pkgs/development/python-modules/marionette-harness/mozinfo.nix
blob: 99f3afc31f615efa4badda30dc6b0afa347cf179 (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
26
27
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, mozfile
}:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "4525c26350fb85c26b38c5f853a19f47b17b49a74de363d285d54258972a4cbc";
  };

  disabled = isPy3k;

  propagatedBuildInputs = [ mozfile ];

  meta = with lib; {
    description = "System information utilities for Mozilla testing";
    homepage = "https://wiki.mozilla.org/Auto-tools/Projects/Mozbase";
    license = licenses.mpl20;
    maintainers = with maintainers; [ raskin ];
  };
}