Merge pull request #287791 from patka-123/paratest-7.4.1

paratest: init at 7.4.1
This commit is contained in:
Pol Dellaiera 2024-02-10 16:42:46 +01:00 committed by GitHub
commit 66b6035627
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3094 additions and 0 deletions

3066
pkgs/by-name/pa/paratest/composer.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,28 @@
{ php
, fetchFromGitHub
, lib
}:
(php.withExtensions ({ enabled, all }: enabled ++ [ all.pcov ])).buildComposerProject (finalAttrs: {
pname = "paratest";
version = "7.4.1";
src = fetchFromGitHub {
owner = "paratestphp";
repo = "paratest";
rev = "v${finalAttrs.version}";
hash = "sha256-0cyv2WSiGjyp9vv2J8hxFnuvxAwrig1DmSxKSdBzNGI=";
};
composerLock = ./composer.lock;
vendorHash = "sha256-vYcfmVEMGhAvPYTsVAJl7njxgVkL1b8QBr/3/DCxmCE=";
meta = {
changelog = "https://github.com/paratestphp/paratest/releases/tag/v${finalAttrs.version}";
description = "Parallel testing for PHPUnit";
homepage = "https://github.com/paratestphp/paratest";
license = lib.licenses.mit;
mainProgram = "paratest";
maintainers = with lib.maintainers; [ patka ];
};
})