depot/third_party/nixpkgs/pkgs/development/python-modules/pyipv8/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

47 lines
826 B
Nix

{
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 ];
};
}