python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / pup / default.nix
blob8cdfddb7f01633073d84fbcc159a63f98dad8f3f
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "pup";
5   version = "unstable-2019-09-19";
7   src = fetchFromGitHub {
8     owner = "ericchiang";
9     repo = "pup";
10     rev = "681d7bb639334bf485476f5872c5bdab10931f9a";
11     sha256 = "1hx1k0qlc1bq6gg5d4yprn4d7kvqzagg6mi5mvb39zdq6c4y17vr";
12   };
14   vendorSha256 = null;
16   meta = with lib; {
17     description = "Parsing HTML at the command line";
18     homepage = "https://github.com/ericchiang/pup";
19     license = licenses.mit;
20     maintainers = with maintainers; [ SuperSandro2000 yana ];
21   };