python3Packages.aioimaplib: init at 0.7.13
This commit is contained in:
parent
0cef410c08
commit
58e467c850
26
pkgs/development/python-modules/aioimaplib/default.nix
Normal file
26
pkgs/development/python-modules/aioimaplib/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
|
||||
, nose, asynctest, mock, pytz, tzlocal, imaplib2, docutils }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aioimaplib";
|
||||
version = "0.7.13";
|
||||
|
||||
# PyPI tarball doesn't ship tests
|
||||
src = fetchFromGitHub {
|
||||
owner = "bamthomas";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "19yhk4ixfw46d0bvx6a40r23nvia5a83dzn5rzwaq1wdjr186bbn";
|
||||
};
|
||||
|
||||
disbaled = pythonOlder "3.4";
|
||||
|
||||
checkInputs = [ nose asynctest mock pytz tzlocal imaplib2 docutils ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python asyncio IMAP4rev1 client library";
|
||||
homepage = https://github.com/bamthomas/aioimaplib;
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
@ -155,6 +155,8 @@ in {
|
||||
|
||||
agate-sql = callPackage ../development/python-modules/agate-sql { };
|
||||
|
||||
aioimaplib = callPackage ../development/python-modules/aioimaplib { };
|
||||
|
||||
aioamqp = callPackage ../development/python-modules/aioamqp { };
|
||||
|
||||
ansicolor = callPackage ../development/python-modules/ansicolor { };
|
||||
|
Loading…
Reference in New Issue
Block a user