10 buildPythonPackage rec {
11 pname = "e3-testsuite";
15 disabled = pythonOlder "3.9";
17 src = fetchFromGitHub {
19 repo = "e3-testsuite";
20 rev = "refs/tags/v${version}";
21 hash = "sha256-V20tX0zi2DRHO42udUcW/CDMyBxh1uSTgac0zZGubsI=";
24 build-system = [ setuptools ];
26 dependencies = [ e3-core ];
28 pythonImportsCheck = [ "e3" ];
31 description = "Generic testsuite framework in Python";
32 changelog = "https://github.com/AdaCore/e3-testsuite/releases/tag/${lib.removePrefix "refs/tags/" src.rev}";
33 homepage = "https://github.com/AdaCore/e3-testsuite/";
34 license = licenses.gpl3Only;
35 maintainers = with maintainers; [ heijligen ];
36 platforms = platforms.linux;