biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / emailthreads / default.nix
blobb18d0f1e6d7b16f36403f8fd41106fa0ac557004
2   lib,
3   fetchFromGitHub,
4   buildPythonPackage,
5   isPy3k,
6   unittestCheckHook,
7 }:
9 buildPythonPackage rec {
10   pname = "emailthreads";
11   version = "0.1.3";
12   format = "setuptools";
13   disabled = !isPy3k;
15   # pypi is missing files for tests
16   src = fetchFromGitHub {
17     owner = "emersion";
18     repo = "python-emailthreads";
19     rev = "v${version}";
20     hash = "sha256-7BhYS1DQCW9QpG31asPCq5qPyJy+WW2onZpvEHhwQCs=";
21   };
23   nativeCheckInputs = [ unittestCheckHook ];
25   PKGVER = version;
27   meta = with lib; {
28     homepage = "https://github.com/emersion/python-emailthreads";
29     description = "Python library to parse and format email threads";
30     license = licenses.mit;
31     maintainers = with maintainers; [ eadwu ];
32   };