tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.aioimaplib: init at 0.7.13
Robert Schütz
8 years ago
58e467c8
0cef410c
+28
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
aioimaplib
default.nix
top-level
python-packages.nix
+26
pkgs/development/python-modules/aioimaplib/default.nix
···
1
1
+
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
2
2
+
, nose, asynctest, mock, pytz, tzlocal, imaplib2, docutils }:
3
3
+
4
4
+
buildPythonPackage rec {
5
5
+
pname = "aioimaplib";
6
6
+
version = "0.7.13";
7
7
+
8
8
+
# PyPI tarball doesn't ship tests
9
9
+
src = fetchFromGitHub {
10
10
+
owner = "bamthomas";
11
11
+
repo = pname;
12
12
+
rev = version;
13
13
+
sha256 = "19yhk4ixfw46d0bvx6a40r23nvia5a83dzn5rzwaq1wdjr186bbn";
14
14
+
};
15
15
+
16
16
+
disbaled = pythonOlder "3.4";
17
17
+
18
18
+
checkInputs = [ nose asynctest mock pytz tzlocal imaplib2 docutils ];
19
19
+
20
20
+
meta = with lib; {
21
21
+
description = "Python asyncio IMAP4rev1 client library";
22
22
+
homepage = https://github.com/bamthomas/aioimaplib;
23
23
+
license = licenses.gpl3Plus;
24
24
+
maintainers = with maintainers; [ dotlambda ];
25
25
+
};
26
26
+
}
+2
pkgs/top-level/python-packages.nix
···
155
155
156
156
agate-sql = callPackage ../development/python-modules/agate-sql { };
157
157
158
158
+
aioimaplib = callPackage ../development/python-modules/aioimaplib { };
159
159
+
158
160
aioamqp = callPackage ../development/python-modules/aioamqp { };
159
161
160
162
ansicolor = callPackage ../development/python-modules/ansicolor { };