Merge pull request #120605 from NixOS/update-robotframework
python3Packages.robotframework: 4.0 -> 4.0.1
This commit is contained in:
commit
a41dc34040
1 changed files with 13 additions and 6 deletions
|
@ -1,15 +1,22 @@
|
|||
{ lib, fetchPypi, buildPythonPackage }:
|
||||
{ lib, fetchFromGitHub, buildPythonPackage, jsonschema }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "robotframework";
|
||||
version = "4.0";
|
||||
version = "4.0.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "a02a6f4af3b0830e4396058694c333cb63eb47f50acf6723be34f0f7a4d73ad7";
|
||||
extension = "zip";
|
||||
src = fetchFromGitHub {
|
||||
owner = pname;
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1nkph0slrhss6y52y8jgbdc6m8hbqjilrwp3r00wwyqdifrfa1i6";
|
||||
};
|
||||
|
||||
checkInputs = [ jsonschema ];
|
||||
|
||||
checkPhase = ''
|
||||
python3 utest/run.py
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Generic test automation framework";
|
||||
homepage = "https://robotframework.org/";
|
||||
|
|
Loading…
Reference in a new issue