94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
44 lines
887 B
Nix
44 lines
887 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, cryptography
|
|
, fetchFromGitHub
|
|
, netifaces
|
|
, pyserial
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rns";
|
|
version = "0.5.3";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "markqvist";
|
|
repo = "Reticulum";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-SZx0GBpYDC7p7yLVY5WZmBgpbpcl9GbsfdqH0YBrUgQ=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
cryptography
|
|
netifaces
|
|
pyserial
|
|
];
|
|
|
|
# Module has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"RNS"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Cryptography-based networking stack for wide-area networks";
|
|
homepage = "https://github.com/markqvist/Reticulum";
|
|
changelog = "https://github.com/markqvist/Reticulum/releases/tag/${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|