python3Packages.emailthreads: init at 0.1.0

This commit is contained in:
Edmund Wu 2019-06-29 09:09:45 -04:00
parent b45ecd0f70
commit f006c88d82
No known key found for this signature in database
GPG Key ID: 76AA3F9F2BD3E3A0
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ lib, fetchFromGitHub, buildPythonPackage
, python, isPy3k }:
buildPythonPackage rec {
pname = "emailthreads";
version = "0.1.0";
disabled = !isPy3k;
# pypi is missing files for tests
src = fetchFromGitHub {
owner = "emersion";
repo = "python-emailthreads";
rev = "v${version}";
sha256 = "17pfal8kbxhs025apkijqbkppw2lljca8x1cwcx49jv60h05c3cn";
};
PKGVER = version;
checkPhase = ''
${python.interpreter} -m unittest discover test
'';
meta = with lib; {
homepage = https://github.com/emersion/python-emailthreads;
description = "Python library to parse and format email threads";
license = licenses.mit;
maintainers = with maintainers; [ eadwu ];
};
}

View File

@ -519,6 +519,8 @@ in {
emcee = callPackage ../development/python-modules/emcee { };
emailthreads = callPackage ../development/python-modules/emailthreads { };
email_validator = callPackage ../development/python-modules/email-validator { };
ewmh = callPackage ../development/python-modules/ewmh { };