lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 17.09-beta 28 lines 602 B view raw
1{ lib 2, stdenv 3, buildPythonPackage 4, fetchPypi 5, mozlog 6, mozfile 7, mozhttpd 8}: 9 10buildPythonPackage rec { 11 pname = "mozprofile"; 12 version = "0.28"; 13 name = "${pname}-${version}"; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "15xsdhrpbg7hlr6nvb3k3ci33h786hrv12az8j2k7aa9gzjcf8nh"; 18 }; 19 20 propagatedBuildInputs = [ mozlog mozfile mozhttpd ]; 21 22 meta = { 23 description = "Mozilla application profile handling library"; 24 homepage = https://wiki.mozilla.org/Auto-tools/Projects/Mozbase; 25 license = lib.licenses.mpl20; 26 maintainers = with lib.maintainers; [ raskin ]; 27 }; 28}