biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / e3-testsuite / default.nix
blobd1b61186195e846869b3b75dde1becf87105eae0
2   lib,
3   buildPythonPackage,
4   e3-core,
5   fetchFromGitHub,
6   pythonOlder,
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "e3-testsuite";
12   version = "26.0";
13   pyproject = true;
15   disabled = pythonOlder "3.9";
17   src = fetchFromGitHub {
18     owner = "AdaCore";
19     repo = "e3-testsuite";
20     rev = "refs/tags/v${version}";
21     hash = "sha256-V20tX0zi2DRHO42udUcW/CDMyBxh1uSTgac0zZGubsI=";
22   };
24   build-system = [ setuptools ];
26   dependencies = [ e3-core ];
28   pythonImportsCheck = [ "e3" ];
30   meta = with lib; {
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;
37   };