python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / easyjson / default.nix
blob5fa4b183c2417c160256419b506765e43c0cb2cb
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "easyjson";
8   version = "0.7.7";
10   src = fetchFromGitHub {
11     owner = "mailru";
12     repo = "easyjson";
13     rev = "v${version}";
14     sha256 = "0clifkvvy8f45rv3cdyv58dglzagyvfcqb63wl6rij30c5j2pzc1";
15   };
16   vendorSha256 = "sha256-L8u7QQPE2SnskcRrSIwQ4KhsX9xncqDWXJ75ytjxLJ4=";
18   subPackages = [ "easyjson" ];
20   meta = with lib; {
21     homepage = "https://github.com/mailru/easyjson";
22     description = "Fast JSON serializer for Go";
23     license = licenses.mit;
24     maintainers = with maintainers; [ Madouura ];
25   };