Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
6594913d 5c89ba8a

+18 -7
+3 -3
pkgs/applications/version-management/git-cliff/default.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "git-cliff"; 10 - version = "1.3.1"; 10 + version = "1.4.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "orhun"; 14 14 repo = "git-cliff"; 15 15 rev = "v${version}"; 16 - hash = "sha256-DzlCy8Y3OW3FiXO45wuUh3t87Za2jWQ4rnztZGRySYA="; 16 + hash = "sha256-OK2eoWlqlpf/X8EGMnWTv9Gs5FkYvW5rmQDB/Mkbp60="; 17 17 }; 18 18 19 - cargoHash = "sha256-+XyZqxjiOAIyc+FmnexIdV1RMzc+iqmo8nPahzUo43E="; 19 + cargoHash = "sha256-gtkpZKOaG5p79uJ9cbbGdiOX57bDFTf2/Bd8+WToJrw="; 20 20 21 21 # attempts to run the program on .git in src which is not deterministic 22 22 doCheck = false;
+9 -4
pkgs/by-name/my/mystmd/package.nix
··· 1 - { lib, buildNpmPackage, fetchFromGitHub }: 1 + { lib, buildNpmPackage, fetchFromGitHub, mystmd, testers }: 2 2 3 3 buildNpmPackage rec { 4 4 pname = "mystmd"; 5 - version = "1.1.22"; 5 + version = "1.1.23"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "executablebooks"; 9 9 repo = "mystmd"; 10 10 rev = "mystmd@${version}"; 11 - hash = "sha256-jx/UCC/Cl5kqAbMzeikTmrx9xWS02OCp3rn0pvtIAPY="; 11 + hash = "sha256-+zgAm3v7XcNhhVOFueRqJijteQqMCZmE33hDyR4d5bA="; 12 12 }; 13 13 14 - npmDepsHash = "sha256-1qQ19iB7N+KvO1uUdEMU1iN91FMQs4wzfTCdv6wfn30="; 14 + npmDepsHash = "sha256-8brgDSV0BBggYUnizV+24RQMXxPd6HUBDYrw9fJtL+M="; 15 15 16 16 dontNpmInstall = true; 17 17 ··· 22 22 23 23 runHook postInstall 24 24 ''; 25 + 26 + passthru.tests.version = testers.testVersion { 27 + package = mystmd; 28 + version = "v${version}"; 29 + }; 25 30 26 31 meta = with lib; { 27 32 description = "Command line tools for working with MyST Markdown";
+6
pkgs/development/tools/continuous-integration/buildbot/master.nix
··· 31 31 , parameterized 32 32 , git 33 33 , openssh 34 + , setuptools 35 + , pythonRelaxDepsHook 34 36 , glibcLocales 35 37 , nixosTests 36 38 , callPackage ··· 88 90 autobahn 89 91 pyjwt 90 92 pyyaml 93 + setuptools 91 94 ] 92 95 # tls 93 96 ++ twisted.optional-dependencies.tls; ··· 108 111 git 109 112 openssh 110 113 glibcLocales 114 + pythonRelaxDepsHook 111 115 ]; 116 + 117 + pythonRelaxDeps = [ "Twisted" ]; 112 118 113 119 patches = [ 114 120 # This patch disables the test that tries to read /etc/os-release which