depot/third_party/nixpkgs/pkgs/development/python-modules/e3-testsuite/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

35 lines
803 B
Nix

{
buildPythonPackage,
e3-core,
fetchFromGitHub,
lib,
setuptools,
}:
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;
};
}