mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
30 lines
605 B
Nix
30 lines
605 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, mozlog
|
|
, mozfile
|
|
, mozhttpd
|
|
, wptserve
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mozprofile";
|
|
version = "2.4.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "09l18x72vahq7il9nj6qj7la2d21vvbcn9szlm3vsvsbkz68w0yk";
|
|
};
|
|
|
|
propagatedBuildInputs = [ mozlog mozfile mozhttpd ];
|
|
|
|
checkInputs = [ wptserve ];
|
|
|
|
meta = {
|
|
description = "Mozilla application profile handling library";
|
|
homepage = "https://wiki.mozilla.org/Auto-tools/Projects/Mozbase";
|
|
license = lib.licenses.mpl20;
|
|
maintainers = with lib.maintainers; [ raskin ];
|
|
};
|
|
}
|