about summary refs log tree commit diff
path: root/pkgs/development/python-modules/e3-testsuite/default.nix
blob: c0f3f2af57cdf2bd71ed15d4ef099ce7d4269352 (plain) (blame)
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
36
{
  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;
  };
}