ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / emailthreads / default.nix
blob3daaf1577e6896150152eebf1d2db39f5860a38f
1 { lib, fetchFromGitHub, buildPythonPackage
2 , python, isPy3k, unittestCheckHook }:
4 buildPythonPackage rec {
5   pname = "emailthreads";
6   version = "0.1.3";
7   disabled = !isPy3k;
9   # pypi is missing files for tests
10   src = fetchFromGitHub {
11     owner = "emersion";
12     repo = "python-emailthreads";
13     rev = "v${version}";
14     sha256 = "sha256-7BhYS1DQCW9QpG31asPCq5qPyJy+WW2onZpvEHhwQCs=";
15   };
17   checkInputs = [ unittestCheckHook ];
19   PKGVER = version;
21   meta = with lib; {
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 ];
26   };