depot/third_party/nixpkgs/pkgs/development/python-modules/emailthreads/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

34 lines
738 B
Nix

{
lib,
fetchFromGitHub,
buildPythonPackage,
python,
isPy3k,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "emailthreads";
version = "0.1.3";
format = "setuptools";
disabled = !isPy3k;
# pypi is missing files for tests
src = fetchFromGitHub {
owner = "emersion";
repo = "python-emailthreads";
rev = "v${version}";
hash = "sha256-7BhYS1DQCW9QpG31asPCq5qPyJy+WW2onZpvEHhwQCs=";
};
nativeCheckInputs = [ unittestCheckHook ];
PKGVER = version;
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 ];
};
}