python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / mongosh / default.nix
blobd251a3c3805ffe9bab89df332a77f7335f7d8432
1 { pkgs, stdenv, lib, testers, mongosh }:
3 let
4   nodePackages = import ./gen/composition.nix {
5     inherit pkgs;
6     inherit (stdenv.hostPlatform) system;
7   };
8 in
9 nodePackages.mongosh.override {
10   passthru.tests.version = testers.testVersion {
11     package = mongosh;
12   };
14   meta = with lib; {
15     homepage = "https://www.mongodb.com/try/download/shell";
16     description = "The MongoDB Shell";
17     maintainers = with maintainers; [ aaronjheng ];
18     license = licenses.asl20;
19     mainProgram = "mongosh";
20   };