Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python3Packages.aioimaplib: init at 0.7.13

+28
+26
pkgs/development/python-modules/aioimaplib/default.nix
··· 1 + { lib, buildPythonPackage, fetchFromGitHub, pythonOlder 2 + , nose, asynctest, mock, pytz, tzlocal, imaplib2, docutils }: 3 + 4 + buildPythonPackage rec { 5 + pname = "aioimaplib"; 6 + version = "0.7.13"; 7 + 8 + # PyPI tarball doesn't ship tests 9 + src = fetchFromGitHub { 10 + owner = "bamthomas"; 11 + repo = pname; 12 + rev = version; 13 + sha256 = "19yhk4ixfw46d0bvx6a40r23nvia5a83dzn5rzwaq1wdjr186bbn"; 14 + }; 15 + 16 + disbaled = pythonOlder "3.4"; 17 + 18 + checkInputs = [ nose asynctest mock pytz tzlocal imaplib2 docutils ]; 19 + 20 + meta = with lib; { 21 + description = "Python asyncio IMAP4rev1 client library"; 22 + homepage = https://github.com/bamthomas/aioimaplib; 23 + license = licenses.gpl3Plus; 24 + maintainers = with maintainers; [ dotlambda ]; 25 + }; 26 + }
+2
pkgs/top-level/python-packages.nix
··· 155 155 156 156 agate-sql = callPackage ../development/python-modules/agate-sql { }; 157 157 158 + aioimaplib = callPackage ../development/python-modules/aioimaplib { }; 159 + 158 160 aioamqp = callPackage ../development/python-modules/aioamqp { }; 159 161 160 162 ansicolor = callPackage ../development/python-modules/ansicolor { };