nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge pull request #202794 from fabaff/nomadnet-bump

python310Packages.rns: 0.4.1 -> 0.4.2, python310Packages.lxmf: 0.2.5 -> 0.2.6, python310Packages.nomadnet: 0.2.7 -> 0.2.8

authored by

Fabian Affolter and committed by
GitHub
30c92ecb b2b6a152

+11 -7
+2 -2
pkgs/development/python-modules/lxmf/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "lxmf"; 10 - version = "0.2.5"; 10 + version = "0.2.6"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.7"; ··· 16 16 owner = "markqvist"; 17 17 repo = "lxmf"; 18 18 rev = "refs/tags/${version}"; 19 - hash = "sha256-2BtnTS4Vb6Nj39YbRYUXXk7F/g15wglpeWV9+ZWNV0c="; 19 + hash = "sha256-3kjg0Q7nXMSjBq2suPtIUvUEGCJr6pTo53ZbjMC5uZ0="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+6 -3
pkgs/development/python-modules/nomadnet/default.nix
··· 5 5 , lxmf 6 6 , urwid 7 7 , pythonOlder 8 + , qrcode 8 9 }: 9 10 10 11 buildPythonPackage rec { 11 12 pname = "nomadnet"; 12 - version = "0.2.7"; 13 + version = "0.2.8"; 13 14 format = "setuptools"; 14 15 15 16 disabled = pythonOlder "3.7"; ··· 18 17 src = fetchFromGitHub { 19 18 owner = "markqvist"; 20 19 repo = "NomadNet"; 21 - rev = version; 22 - hash = "sha256-ycQWvJnYvuNtXxNWjuLXD+TghscCIuOZMmch02M9C00="; 20 + rev = "refs/tags/${version}"; 21 + hash = "sha256-Vzi+v+M0LfptNq/6nc3usnf3YLzBwYcij2hAt835Or8="; 23 22 }; 24 23 25 24 propagatedBuildInputs = [ 26 25 rns 27 26 lxmf 28 27 urwid 28 + qrcode 29 29 ]; 30 30 31 31 # Module has no tests ··· 39 37 meta = with lib; { 40 38 description = "Off-grid, resilient mesh communication"; 41 39 homepage = "https://github.com/markqvist/NomadNet"; 40 + changelog = "https://github.com/markqvist/NomadNet/releases/tag/${version}"; 42 41 license = licenses.gpl3Only; 43 42 maintainers = with maintainers; [ fab ]; 44 43 };
+3 -2
pkgs/development/python-modules/rns/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "rns"; 12 - version = "0.4.1"; 12 + version = "0.4.2"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 18 18 owner = "markqvist"; 19 19 repo = "Reticulum"; 20 20 rev = "refs/tags/${version}"; 21 - hash = "sha256-bUhVnkFgfwhHe8zFLICOXHluecp0hZlD10I1AtpWO8o="; 21 + hash = "sha256-EvlGi/HlaPq3SYJDtGLwV58BKi7EZDCSAAxlSUqwztk="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [ ··· 37 37 meta = with lib; { 38 38 description = "Cryptography-based networking stack for wide-area networks"; 39 39 homepage = "https://github.com/markqvist/Reticulum"; 40 + changelog = "https://github.com/markqvist/Reticulum/releases/tag/${version}"; 40 41 license = licenses.mit; 41 42 maintainers = with maintainers; [ fab ]; 42 43 };