nixpkgs/pkgs/development/python-modules/emailthreads/default.nix

33 lines
730 B
Nix

{
lib,
fetchFromGitHub,
buildPythonPackage,
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 ];
env.PKGVER = version;
meta = {
homepage = "https://github.com/emersion/python-emailthreads";
description = "Python library to parse and format email threads";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ eadwu ];
};
}