python3Packages.rns: 1.3.4 -> 1.3.5 (#529845)

This commit is contained in:
Pol Dellaiera
2026-06-09 10:46:59 +00:00
committed by GitHub
2 changed files with 7 additions and 10 deletions
@@ -25,8 +25,6 @@ buildPythonPackage (finalAttrs: {
build-system = [ setuptools ];
pythonRelaxDeps = [ "rns" ];
buildInputs = lib.optionals (!propagateRns) [
rns
];
@@ -4,7 +4,7 @@
buildPythonPackage,
cryptography,
esptool,
fetchFromGitHub,
fetchPypi,
netifaces,
pyserial,
replaceVars,
@@ -14,15 +14,14 @@
buildPythonPackage (finalAttrs: {
pname = "rns";
version = "1.3.4";
version = "1.3.5";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "markqvist";
repo = "Reticulum";
tag = finalAttrs.version;
hash = "sha256-rhZfkSV2OtCVPbUyTrYry2lwIeSfz3JnX+mVTkZt+Rc=";
src = fetchPypi {
pname = "rns";
version = finalAttrs.version;
hash = "sha256-YxReocD6Ump5FMCnLEqCJ5tZcZh1kYsFWNBJ0pGYzuM=";
};
patches = [
@@ -49,7 +48,7 @@ buildPythonPackage (finalAttrs: {
meta = {
description = "Cryptography-based networking stack for wide-area networks";
homepage = "https://reticulum.network";
changelog = "https://github.com/markqvist/Reticulum/blob/${finalAttrs.src.tag}/Changelog.md";
changelog = "https://github.com/markqvist/Reticulum/blob/${finalAttrs.version}/Changelog.md";
# Reticulum License
# https://github.com/markqvist/Reticulum/blob/master/LICENSE
license = lib.licenses.unfree;