renode: use robotframework at 6.0.2

Renode expects a specific version or it keeps warning about. Fixes:

,----
| Required `robotframework` version is `6.0.2`, while the one available in
| your system is `7.0.0`. Tests may still work, but this version of Robot
| is not officially supported. Please install the required version using
| `pip install robotframework==6.0.2` before running the tests
`----

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
This commit is contained in:
Otavio Salvador 2024-04-03 17:17:08 -03:00
parent dc7e4e765d
commit 1a702c97c2
1 changed files with 10 additions and 1 deletions

View File

@ -1,5 +1,6 @@
{ stdenv
, lib
, fetchFromGitHub
, fetchurl
, autoPatchelfHook
, makeWrapper
@ -17,7 +18,15 @@ let
psutil
pyyaml
requests
robotframework
(robotframework.overrideDerivation (oldAttrs: {
src = fetchFromGitHub {
owner = "robotframework";
repo = "robotframework";
rev = "v6.0.2";
hash = "sha256-c7pPcDgqyqWQtiMbLQbQd0nAgx4TIFUFHrlBVDNdr8M=";
};
}))
];
in
stdenv.mkDerivation (finalAttrs: {