python3.pkgs.aioimaplib: 0.7.14 -> 0.7.15

This commit is contained in:
Robert Schütz 2019-02-23 12:41:04 +01:00
parent 5694371e63
commit a4c7ce46d7

View File

@ -1,24 +1,24 @@
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder { lib, buildPythonPackage, fetchFromGitHub, isPy3k, pythonOlder, isPy36
, nose, asynctest, mock, pytz, tzlocal, imaplib2, docutils, pyopenssl }: , nose, asynctest, mock, pytz, tzlocal, imaplib2, docutils, pyopenssl }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "aioimaplib"; pname = "aioimaplib";
version = "0.7.14"; version = "0.7.15";
# PyPI tarball doesn't ship tests # PyPI tarball doesn't ship tests
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "bamthomas"; owner = "bamthomas";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "150v3czh53sqakfqgjyj1w39mdfcxmpnrk2pbmq63jkq7r6njl0l"; sha256 = "15nny3y8pwaizq1zmkg43ym5jszk2hs010z12yn2d0j1fibymwbj";
}; };
disabled = pythonOlder "3.4"; disabled = !(isPy3k && pythonOlder "3.7");
checkInputs = [ nose asynctest mock pytz tzlocal imaplib2 docutils pyopenssl ]; checkInputs = [ nose asynctest mock pytz tzlocal imaplib2 docutils pyopenssl ];
# https://github.com/bamthomas/aioimaplib/issues/35 # https://github.com/bamthomas/aioimaplib/issues/35
doCheck = false; doCheck = !isPy36;
meta = with lib; { meta = with lib; {
description = "Python asyncio IMAP4rev1 client library"; description = "Python asyncio IMAP4rev1 client library";