mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
30 lines
715 B
Nix
30 lines
715 B
Nix
{ lib, fetchFromGitHub, buildPythonPackage
|
|
, python, isPy3k }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "emailthreads";
|
|
version = "0.1.3";
|
|
disabled = !isPy3k;
|
|
|
|
# pypi is missing files for tests
|
|
src = fetchFromGitHub {
|
|
owner = "emersion";
|
|
repo = "python-emailthreads";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-7BhYS1DQCW9QpG31asPCq5qPyJy+WW2onZpvEHhwQCs=";
|
|
};
|
|
|
|
PKGVER = version;
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} -m unittest discover test
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|