summary refs log tree commit diff
path: root/pkgs/development/tools/goconvey/default.nix
blob: fb6ce653cc4bcd4ff4b4ba9f2f1bf7130cac7be4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "goconvey";
  version = "1.6.3";

  goPackagePath = "github.com/smartystreets/goconvey";
  excludedPackages = "web/server/watch/integration_testing";

  goDeps = ./deps.nix;

  src = fetchFromGitHub {
    owner = "smartystreets";
    repo = "goconvey";
    rev = version;
    sha256 = "1ph18rkl3ns3fgin5i4j54w5a69grrmf3apcsmnpdn1wlrbs3dxh";
  };

  meta = {
    description = "Go testing in the browser. Integrates with `go test`. Write behavioral tests in Go";
    homepage = "https://github.com/smartystreets/goconvey";
    maintainers = with lib.maintainers; [ vdemeester ];
    license = lib.licenses.mit;
  };
}