blob: 5c70b6d1746719743aac1d0ae9b30d6c07c538a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
lib,
buildPythonPackage,
e3-core,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage rec {
pname = "e3-testsuite";
version = "27.2";
pyproject = true;
src = fetchFromGitHub {
owner = "AdaCore";
repo = "e3-testsuite";
tag = "v${version}";
hash = "sha256-qG8SHwogBle3demgFJCqcfCh5ktLvOqh2XSwxPCANFk=";
};
build-system = [ setuptools ];
dependencies = [ e3-core ];
pythonImportsCheck = [ "e3" ];
meta = {
description = "Generic testsuite framework in Python";
changelog = "https://github.com/AdaCore/e3-testsuite/releases/tag/${src.tag}";
homepage = "https://github.com/AdaCore/e3-testsuite/";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ heijligen ];
platforms = lib.platforms.linux;
};
}
|