python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / toast / default.nix
blob1fd8392c957656ebf177be399f7be40bc82bbed3
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "toast";
8   version = "0.45.5";
10   src = fetchFromGitHub {
11     owner = "stepchowfun";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "sha256-7EF9DCT8Vg7aGOUlRG9c4Lv2EhCX/P9k4zQC6Ruqv0c=";
15   };
17   cargoSha256 = "sha256-tyZrNUT2i9i0yOqz1KqIuFSb4PO+fx1SNa+ZVNfIGfM=";
19   checkFlags = [ "--skip=format::tests::code_str_display" ]; # fails
21   meta = with lib; {
22     description = "Containerize your development and continuous integration environments";
23     homepage = "https://github.com/stepchowfun/toast";
24     license = licenses.mit;
25     maintainers = with maintainers; [ dit7ya ];
26   };