2014-01-21 13:08:22 +00:00
|
|
|
{ stdenv, fetchgit, buildPythonPackage, pythonPackages }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
name = "mailpile-dev";
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://github.com/pagekite/Mailpile.git";
|
2014-01-29 17:57:05 +00:00
|
|
|
rev = "6e19c1942541dbdefb5155db5f2583bf3ed22aeb";
|
|
|
|
sha256 = "04idlbjkasigq3vslcv33kg21rjyklm2yl8pyrf5h94lzabbl1fs";
|
2014-01-21 13:08:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
2014-09-11 13:29:20 +01:00
|
|
|
pillow jinja2 spambayes pythonPackages.lxml python.modules.readline or null];
|
2014-01-21 13:08:22 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A modern, fast web-mail client with user-friendly encryption and privacy features";
|
|
|
|
homepage = https://www.mailpile.is/;
|
2014-01-21 14:53:21 +00:00
|
|
|
license = map (getAttr "shortName") [ licenses.asl20 licenses.agpl3 ];
|
2014-01-21 13:08:22 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.iElectric ];
|
|
|
|
};
|
|
|
|
}
|