3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/marionette-harness/mozprofile.nix

27 lines
574 B
Nix
Raw Normal View History

2017-05-21 18:28:30 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, mozlog
, mozfile
, mozhttpd
}:
buildPythonPackage rec {
pname = "mozprofile";
2019-10-24 07:47:38 +01:00
version = "2.3.0";
2017-05-21 18:28:30 +01:00
src = fetchPypi {
inherit pname version;
2019-10-24 07:47:38 +01:00
sha256 = "95e7410ff2a65775422936749b346da8abf09fe0aafa3bb5dd1651b17da137d1";
2017-05-21 18:28:30 +01:00
};
propagatedBuildInputs = [ mozlog mozfile mozhttpd ];
meta = {
description = "Mozilla application profile handling library";
homepage = https://wiki.mozilla.org/Auto-tools/Projects/Mozbase;
2017-05-21 18:28:30 +01:00
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ raskin ];
};
}