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";
|
2017-08-01 21:03:30 +01:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|