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