depot/third_party/nixpkgs/pkgs/development/tools/ginkgo/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

45 lines
1.5 KiB
Nix

{ lib, buildGoModule, fetchFromGitHub, testers, ginkgo }:
buildGoModule rec {
pname = "ginkgo";
version = "2.20.2";
src = fetchFromGitHub {
owner = "onsi";
repo = "ginkgo";
rev = "v${version}";
sha256 = "sha256-/emP4U2s7/hYJZCJ+TdE5sM45q0C8OrrIFreSupq3ig=";
};
vendorHash = "sha256-6HlCj2Wq+lH6OQxG18fCMj1eC2Xy++IQx35nCAtHQ/U=";
# integration tests expect more file changes
# types tests are missing CodeLocation
excludedPackages = [ "integration" "types" ];
__darwinAllowLocalNetworking = true;
passthru.tests.version = testers.testVersion {
package = ginkgo;
command = "ginkgo version";
};
meta = with lib; {
homepage = "https://onsi.github.io/ginkgo/";
changelog = "https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md";
description = "Modern Testing Framework for Go";
mainProgram = "ginkgo";
longDescription = ''
Ginkgo is a testing framework for Go designed to help you write expressive
tests. It is best paired with the Gomega matcher library. When combined,
Ginkgo and Gomega provide a rich and expressive DSL
(Domain-specific Language) for writing tests.
Ginkgo is sometimes described as a "Behavior Driven Development" (BDD)
framework. In reality, Ginkgo is a general purpose testing framework in
active use across a wide variety of testing contexts: unit tests,
integration tests, acceptance test, performance tests, etc.
'';
license = licenses.mit;
maintainers = with maintainers; [ saschagrunert jk ];
};
}