blob: 99525060c51a8c90e6b6d003b75e9e3855dd13dc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{ lib, buildPythonPackage, fetchPypi, isPy3k
, six, jaraco_logging, jaraco_text, jaraco_stream, pytz, jaraco_itertools
, setuptools-scm, jaraco_collections, importlib-metadata
}:
buildPythonPackage rec {
pname = "irc";
version = "20.1.0";
format = "pyproject";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
hash = "sha256-tvc3ky3UeR87GOMZ3nt9rwLSKFpr6iY9EB9NjlU4B+w=";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [
six
importlib-metadata
jaraco_logging
jaraco_text
jaraco_stream
pytz
jaraco_itertools
jaraco_collections
];
doCheck = false;
pythonImportsCheck = [ "irc" ];
meta = with lib; {
description = "IRC (Internet Relay Chat) protocol library for Python";
homepage = "https://github.com/jaraco/irc";
license = licenses.mit;
maintainers = with maintainers; [];
};
}
|