2024-06-05 15:53:02 +00:00
|
|
|
{
|
2024-09-26 11:04:55 +00:00
|
|
|
lib,
|
2024-06-05 15:53:02 +00:00
|
|
|
buildPythonPackage,
|
|
|
|
e3-core,
|
|
|
|
fetchFromGitHub,
|
2024-09-26 11:04:55 +00:00
|
|
|
pythonOlder,
|
2024-06-05 15:53:02 +00:00
|
|
|
setuptools,
|
2024-02-29 20:09:43 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "e3-testsuite";
|
|
|
|
version = "26.0";
|
|
|
|
pyproject = true;
|
|
|
|
|
2024-09-26 11:04:55 +00:00
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "AdaCore";
|
|
|
|
repo = "e3-testsuite";
|
2024-09-26 11:04:55 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2024-02-29 20:09:43 +00:00
|
|
|
hash = "sha256-V20tX0zi2DRHO42udUcW/CDMyBxh1uSTgac0zZGubsI=";
|
|
|
|
};
|
|
|
|
|
2024-09-26 11:04:55 +00:00
|
|
|
build-system = [ setuptools ];
|
2024-02-29 20:09:43 +00:00
|
|
|
|
2024-09-26 11:04:55 +00:00
|
|
|
dependencies = [ e3-core ];
|
2024-02-29 20:09:43 +00:00
|
|
|
|
|
|
|
pythonImportsCheck = [ "e3" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
2024-09-26 11:04:55 +00:00
|
|
|
description = "Generic testsuite framework in Python";
|
2024-02-29 20:09:43 +00:00
|
|
|
changelog = "https://github.com/AdaCore/e3-testsuite/releases/tag/${src.rev}";
|
|
|
|
homepage = "https://github.com/AdaCore/e3-testsuite/";
|
|
|
|
license = licenses.gpl3Only;
|
|
|
|
maintainers = with maintainers; [ heijligen ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|