python3Packages.robotframework-tools: drop

This commit is contained in:
Gutyina Gergő
2026-01-19 17:51:00 +01:00
parent 2943652d08
commit ac3f5492df
3 changed files with 1 additions and 53 deletions
@@ -1,51 +0,0 @@
{
lib,
buildPythonPackage,
fetchPypi,
robotframework,
moretools,
path,
six,
zetup,
modeled,
pytestCheckHook,
}:
buildPythonPackage rec {
version = "0.1rc4";
format = "setuptools";
pname = "robotframework-tools";
src = fetchPypi {
inherit pname version;
sha256 = "0377ikajf6c3zcy3lc0kh4w9zmlqyplk2c2hb0yyc7h3jnfnya96";
};
nativeBuildInputs = [ zetup ];
propagatedBuildInputs = [
robotframework
moretools
path
six
modeled
];
postPatch = ''
# Remove upstream's selfmade approach to collect the dependencies
# https://github.com/userzimmermann/robotframework-tools/issues/1
substituteInPlace setup.py --replace \
"setup_requires=SETUP_REQUIRES + (zfg.SETUP_REQUIRES or [])," ""
'';
nativeCheckInputs = [ pytestCheckHook ];
enabledTestPaths = [ "test" ];
pythonImportsCheck = [ "robottools" ];
meta = {
description = "Python Tools for Robot Framework and Test Libraries";
homepage = "https://github.com/userzimmermann/robotframework-tools";
license = lib.licenses.gpl3Plus;
maintainers = [ ];
};
}
+1
View File
@@ -441,6 +441,7 @@ mapAliases {
retry_decorator = throw "'retry_decorator' has been renamed to/replaced by 'retry-decorator'"; # Converted to throw 2025-10-29
retworkx = throw "'retworkx' has been renamed to/replaced by 'rustworkx'"; # Converted to throw 2025-10-29
rki-covid-parser = throw "rki-covid-parser has been removed because it is unmaintained and broken"; # added 2025-09-20
robotframework-tools = "'robotframework-tools' has been removed because it is unmaintained"; # Added 2026-01-19
ROPGadget = throw "'ROPGadget' has been renamed to/replaced by 'ropgadget'"; # Converted to throw 2025-10-29
rtslib = throw "'rtslib' has been renamed to/replaced by 'rtslib-fb'"; # Converted to throw 2025-10-29
rtsp-to-webrtc = throw "rtsp-to-webrtc has been removed because it is unmaintained"; # added 2025-09-20
-2
View File
@@ -16637,8 +16637,6 @@ self: super: with self; {
robotframework-sshlibrary = callPackage ../development/python-modules/robotframework-sshlibrary { };
robotframework-tools = callPackage ../development/python-modules/robotframework-tools { };
robotstatuschecker = callPackage ../development/python-modules/robotstatuschecker { };
robotsuite = callPackage ../development/python-modules/robotsuite { };