My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/tools/goconvey/default.nix

26 lines
691 B

{ 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;
};
}