fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
36 lines
813 B
Nix
36 lines
813 B
Nix
{
|
|
buildPythonPackage,
|
|
e3-core,
|
|
fetchFromGitHub,
|
|
lib,
|
|
setuptools,
|
|
stdenv,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "e3-testsuite";
|
|
version = "26.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AdaCore";
|
|
repo = "e3-testsuite";
|
|
rev = "v${version}";
|
|
hash = "sha256-V20tX0zi2DRHO42udUcW/CDMyBxh1uSTgac0zZGubsI=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [ e3-core ];
|
|
|
|
pythonImportsCheck = [ "e3" ];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/AdaCore/e3-testsuite/releases/tag/${src.rev}";
|
|
homepage = "https://github.com/AdaCore/e3-testsuite/";
|
|
description = "Generic testsuite framework in Python";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ heijligen ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|