depot/third_party/nixpkgs/pkgs/development/python-modules/pyipv8/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

48 lines
821 B
Nix

{ lib
, fetchPypi
, buildPythonPackage
, cryptography
, libnacl
, aiohttp
, aiohttp-apispec
, pyopenssl
, pyasn1
, marshmallow
, typing-extensions
, packaging
, apispec
}:
buildPythonPackage rec {
pname = "pyipv8";
version = "2.12.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-FXvMykUko3v0GmAZYUt5esBuTbxqpjOL4YxrRfE3u5o=";
};
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
];
};
}