summary refs log blame commit diff
path: root/pkgs/development/python-modules/marionette-harness/mozdevice.nix
blob: 8954f579c7f662c86cb7504d8eedcfd037eb99ab (plain) (tree)
1
2
3
4
5
6
7
8
9
     







                        
                    
                   


                          
                                                                    
                     





                                                       
                                                                    



                                                   
{ lib
, buildPythonPackage
, fetchPypi
, moznetwork
, mozprocess
}:

buildPythonPackage rec {
  pname = "mozdevice";
  version = "3.0.6";
  format = "wheel";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1gw2lk16fz2n1953i29hgw47s2h0c6z911zzg8am1in8qq2318xv";
    format = "wheel";
  };

  propagatedBuildInputs = [ moznetwork mozprocess ];

  meta = {
    description = "Mozilla-authored device management";
    homepage = https://wiki.mozilla.org/Auto-tools/Projects/Mozbase;
    license = lib.licenses.mpl20;
    maintainers = with lib.maintainers; [ raskin ];
  };
}