nixpkgs/pkgs/development/python-modules/marionette-harness/mozprofile.nix

27 lines
574 B
Nix
Raw Normal View History

2017-05-21 17:28:30 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, mozlog
, mozfile
, mozhttpd
}:
buildPythonPackage rec {
pname = "mozprofile";
2018-06-12 16:47:03 +00:00
version = "1.1.0";
2017-05-21 17:28:30 +00:00
src = fetchPypi {
inherit pname version;
2018-06-12 16:47:03 +00:00
sha256 = "aa7fe7248719a224dd63cdc0498c9971d07cfc62fee7a69f51d593316b6bc1d8";
2017-05-21 17:28:30 +00:00
};
propagatedBuildInputs = [ mozlog mozfile mozhttpd ];
meta = {
description = "Mozilla application profile handling library";
homepage = https://wiki.mozilla.org/Auto-tools/Projects/Mozbase;
2017-05-21 17:28:30 +00:00
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ raskin ];
};
}