mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-16 04:50:25 +08:00
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
28 lines
703 B
Nix
28 lines
703 B
Nix
{ lib, fetchFromGitHub, buildPythonPackage
|
|
, python, isPy3k, unittestCheckHook }:
|
|
|
|
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=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|