2021-01-25 09:26:54 +01:00
|
|
|
{ lib, fetchPypi, buildPythonPackage }:
|
2017-10-29 15:40:13 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-11-09 19:26:09 +08:00
|
|
|
pname = "robotframework";
|
2021-03-24 10:28:27 +01:00
|
|
|
version = "4.0";
|
2017-10-29 15:40:13 +01:00
|
|
|
|
2018-08-05 15:30:15 +02:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-24 10:28:27 +01:00
|
|
|
sha256 = "a02a6f4af3b0830e4396058694c333cb63eb47f50acf6723be34f0f7a4d73ad7";
|
2019-06-28 12:27:43 +03:00
|
|
|
extension = "zip";
|
2017-10-29 15:40:13 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-10-29 15:40:13 +01:00
|
|
|
description = "Generic test automation framework";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://robotframework.org/";
|
2017-10-29 15:40:13 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ bjornfor ];
|
|
|
|
};
|
|
|
|
}
|