2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
fetchPypi,
|
|
|
|
buildPythonPackage,
|
|
|
|
cryptography,
|
|
|
|
libnacl,
|
|
|
|
aiohttp,
|
|
|
|
aiohttp-apispec,
|
|
|
|
pyopenssl,
|
|
|
|
pyasn1,
|
|
|
|
marshmallow,
|
|
|
|
typing-extensions,
|
|
|
|
packaging,
|
|
|
|
apispec,
|
2024-01-02 11:29:13 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyipv8";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "2.13.0";
|
2024-01-02 11:29:13 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2024-04-21 15:54:59 +00:00
|
|
|
hash = "sha256-Qp5vqMa7kfSp22C5KAUvut+4YbSXMEZRsHsLevB4QvE=";
|
2024-01-02 11:29:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
2024-06-05 15:53:02 +00:00
|
|
|
maintainers = with maintainers; [ mkg20001 ];
|
2024-01-02 11:29:13 +00:00
|
|
|
};
|
|
|
|
}
|