summary refs log tree commit diff
diff options
context:
space:
mode:
author06kellyjac <dev@j-k.io>2022-02-07 20:29:10 +0000
committerJonathan Ringer <jonringer@users.noreply.github.com>2022-02-07 19:03:13 -0800
commit33782d5c0a20a35413843c2507033b88f3b10e8e (patch)
tree10188aeb04f11488863af5444c2898c396474bcc
parentb4ba1f9aa77f8fe58ed909bd5ae75b8b928dfb0b (diff)
downloadnixpkgs-33782d5c0a20a35413843c2507033b88f3b10e8e.tar
nixpkgs-33782d5c0a20a35413843c2507033b88f3b10e8e.tar.gz
nixpkgs-33782d5c0a20a35413843c2507033b88f3b10e8e.tar.bz2
nixpkgs-33782d5c0a20a35413843c2507033b88f3b10e8e.tar.lz
nixpkgs-33782d5c0a20a35413843c2507033b88f3b10e8e.tar.xz
nixpkgs-33782d5c0a20a35413843c2507033b88f3b10e8e.tar.zst
nixpkgs-33782d5c0a20a35413843c2507033b88f3b10e8e.zip
ginkgo: 2.1.0 -> 2.1.1
-rw-r--r--pkgs/development/tools/ginkgo/default.nix27
1 files changed, 21 insertions, 6 deletions
diff --git a/pkgs/development/tools/ginkgo/default.nix b/pkgs/development/tools/ginkgo/default.nix
index 49404d05134..e6c5c1ebf56 100644
--- a/pkgs/development/tools/ginkgo/default.nix
+++ b/pkgs/development/tools/ginkgo/default.nix
@@ -2,21 +2,36 @@
 
 buildGoModule rec {
   pname = "ginkgo";
-  version = "2.1.0";
+  version = "2.1.1";
 
   src = fetchFromGitHub {
     owner = "onsi";
     repo = "ginkgo";
     rev = "v${version}";
-    sha256 = "sha256-GF96AOyQcVI01dP6yqMwyPmXMDRVxrScu1UL76jF2qA=";
+    sha256 = "sha256-iAXqPbNBNNR6PGhIjrDqTYUu0XYgvS5aM8n68qQNurQ=";
   };
   vendorSha256 = "sha256-kMQ60HdsorZU27qoOY52DpwFwP+Br2bp8mRx+ZwnQlI=";
-  doCheck = false;
+
+  # integration tests expect more file changes
+  # types tests are missing CodeLocation
+  excludedPackages = "\\(integration\\|types\\)";
 
   meta = with lib; {
-    description = "BDD Testing Framework for Go";
-    homepage = "https://github.com/onsi/ginkgo";
+    homepage = "https://onsi.github.io/ginkgo/";
+    changelog = "https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md";
+    description = "A Modern Testing Framework for Go";
+    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 ];
+    maintainers = with maintainers; [ saschagrunert jk ];
   };
 }