blob: 24f0ba95c063847eba6094db7601c45f6f2a88b4 (
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
42
43
44
45
46
47
48
|
{ lib
, fetchPypi
, buildPythonPackage
, cryptography
, libnacl
, aiohttp
, aiohttp-apispec
, pyopenssl
, pyasn1
, marshmallow
, typing-extensions
, packaging
, apispec
}:
buildPythonPackage rec {
pname = "pyipv8";
version = "2.13.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-Qp5vqMa7kfSp22C5KAUvut+4YbSXMEZRsHsLevB4QvE=";
};
propagatedBuildInputs = [
cryptography
libnacl
aiohttp
aiohttp-apispec
pyopenssl
pyasn1
marshmallow
typing-extensions
packaging
apispec
];
doCheck = false;
meta = with lib; {
description = "Python implementation of Tribler's IPv8 p2p-networking layer";
homepage = "https://github.com/Tribler/py-ipv8";
license = licenses.lgpl3Only;
maintainers = with maintainers; [
mkg20001
];
};
}
|