python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / toipe / default.nix
blob1b41f9ae53e92ec0ebd539b83a61045646bbe847
1 { lib, fetchCrate, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "toipe";
5   version = "0.4.1";
7   src = fetchCrate {
8     inherit pname version;
9     sha256 = "sha256-aunejitHVNIB/zIDgX3mlA1FzG7wIxlDCFdUvtuzQnc=";
10   };
12   cargoSha256 = "sha256-Nabc2lPpsUCcWEJzL6U84UoIJ5PCtYKVyLRhjhiqhpE=";
14   meta = with lib; {
15     description = "Trusty terminal typing tester";
16     homepage = "https://github.com/Samyak2/toipe";
17     license = licenses.mit;
18     maintainers = with maintainers; [ loicreynier samyak ];
19   };