python.pkgs.aioimaplib: 0.7.13 -> 0.7.14

This commit is contained in:
Robert Schütz 2018-06-30 11:55:02 +02:00
parent 7725269765
commit 18f45dac2c

View File

@ -1,21 +1,24 @@
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder { lib, buildPythonPackage, fetchFromGitHub, pythonOlder
, nose, asynctest, mock, pytz, tzlocal, imaplib2, docutils }: , nose, asynctest, mock, pytz, tzlocal, imaplib2, docutils, pyopenssl }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "aioimaplib"; pname = "aioimaplib";
version = "0.7.13"; version = "0.7.14";
# 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 = "19yhk4ixfw46d0bvx6a40r23nvia5a83dzn5rzwaq1wdjr186bbn"; sha256 = "150v3czh53sqakfqgjyj1w39mdfcxmpnrk2pbmq63jkq7r6njl0l";
}; };
disbaled = pythonOlder "3.4"; disabled = pythonOlder "3.4";
checkInputs = [ nose asynctest mock pytz tzlocal imaplib2 docutils ]; checkInputs = [ nose asynctest mock pytz tzlocal imaplib2 docutils pyopenssl ];
# https://github.com/bamthomas/aioimaplib/issues/35
doCheck = false;
meta = with lib; { meta = with lib; {
description = "Python asyncio IMAP4rev1 client library"; description = "Python asyncio IMAP4rev1 client library";