python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / networking / ipinfo / default.nix
blob0d6c2f617dd2bfe71e1b9cbc5cd48c2d756172b6
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "ipinfo";
8   version = "2.10.0";
10   src = fetchFromGitHub {
11     owner = pname;
12     repo = "cli";
13     rev = "${pname}-${version}";
14     hash = "sha256-oim234254qUWITfgBfB2theMgpVnGHNmrzwE5ULM2M4=";
15   };
17   vendorSha256 = null;
19   # Tests require network access
20   doCheck = false;
22   meta = with lib; {
23     description = "Command Line Interface for the IPinfo API";
24     homepage = "https://github.com/ipinfo/cli";
25     license = with licenses; [ asl20 ];
26     maintainers = with maintainers; [ fab ];
27   };