Merge pull request #309498 from fabaff/rns-bump

python312Packages.rns: 0.7.3 -> 0.7.4
This commit is contained in:
Fabian Affolter 2024-05-06 21:03:32 +02:00 committed by GitHub
commit 23f479eba8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,16 +1,17 @@
{ lib
, buildPythonPackage
, cryptography
, fetchFromGitHub
, netifaces
, pyserial
, pythonOlder
, setuptools
{
lib,
buildPythonPackage,
cryptography,
fetchFromGitHub,
netifaces,
pyserial,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "rns";
version = "0.7.3";
version = "0.7.4";
pyproject = true;
disabled = pythonOlder "3.7";
@ -19,14 +20,12 @@ buildPythonPackage rec {
owner = "markqvist";
repo = "Reticulum";
rev = "refs/tags/${version}";
hash = "sha256-QcYjqqeXBKx+Ef00Bw1OJMWDMdQgp/fqh3r5yhsa0Kg=";
hash = "sha256-M6iI554lv6PF5sIdOoaMIlQHP5YU8WM8YxfHMWhLSdE=";
};
nativeBuildInputs = [
setuptools
];
build-system = [ setuptools ];
propagatedBuildInputs = [
dependencies = [
cryptography
netifaces
pyserial
@ -35,9 +34,7 @@ buildPythonPackage rec {
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"RNS"
];
pythonImportsCheck = [ "RNS" ];
meta = with lib; {
description = "Cryptography-based networking stack for wide-area networks";