python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / protoc-gen-twirp_swagger / default.nix
blob3348759c0113b867692bb53bd7179a8ff859e826
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule {
4   pname = "protoc-gen-twirp_swagger";
5   version = "unstable-2021-03-29";
7   src = fetchFromGitHub {
8     owner = "elliots";
9     repo = "protoc-gen-twirp_swagger";
10     rev = "f21ef47d69e37c1602a7fb26146de05c092d30b6";
11     sha256 = "sha256-uHU15NbHK7SYgNS3VK21H/OqDo/JyyTZdXw3i9lsgLY=";
12   };
14   vendorSha256 = "sha256-g0+9l83Fc0XPzsZAKjLBrjD+tv2+Fot57hcilqAhOZk=";
16   subPackages = [ "." ];
18   meta = with lib; {
19     description = "Swagger generator for twirp";
20     homepage = "https://github.com/elliots/protoc-gen-twirp_swagger";
21     license = licenses.bsd3;
22     maintainers = with maintainers; [ jojosch ];
23   };