1 { lib, fetchFromGitHub, buildPythonPackage
2 , python, isPy3k, unittestCheckHook }:
4 buildPythonPackage rec {
5 pname = "emailthreads";
9 # pypi is missing files for tests
10 src = fetchFromGitHub {
12 repo = "python-emailthreads";
14 sha256 = "sha256-7BhYS1DQCW9QpG31asPCq5qPyJy+WW2onZpvEHhwQCs=";
17 checkInputs = [ unittestCheckHook ];
22 homepage = "https://github.com/emersion/python-emailthreads";
23 description = "Python library to parse and format email threads";
24 license = licenses.mit;
25 maintainers = with maintainers; [ eadwu ];