python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / jmespath / default.nix
blob6224a2def078acc29551914caebeb6389f5bd284
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "jmespath";
5   version = "0.4.0";
7   src = fetchFromGitHub {
8     owner = "jmespath";
9     repo = "go-jmespath";
10     rev = "v${version}";
11     sha256 = "sha256-djA/7TCmAqCsht28b1itoiWd8Mtdsn/5uLxyT23K/qM=";
12   };
14   vendorSha256 = "sha256-Q12muprcKB7fCxemESb4sGPyYIdmgOt3YXVUln7oabw=";
16   excludedPackages = [
17     "./internal/testify"
18   ];
20   ldflags = [ "-s" "-w" ];
22   meta = with lib; {
23     description = "A JMESPath implementation in Go";
24     homepage = "https://github.com/jmespath/go-jmespath";
25     license = licenses.asl20;
26     maintainers = with maintainers; [ cransom ];
27     mainProgram = "jpgo";
28   };