{ lib, rustPlatform, fetchFromGitHub, }: rustPlatform.buildRustPackage rec { pname = "xan"; version = "0.53.0"; src = fetchFromGitHub { owner = "medialab"; repo = "xan"; tag = version; hash = "sha256-gQqZrN8v5edgTKMmNGS3Pp0xdWH1awSa+dZaBNX7EX4="; }; cargoHash = "sha256-CCCBF1ZvRZAtPNOfoU3Im7/wIpFakIbBFH0UjWb3tD0="; # FIXME: tests fail and I do not have the time to investigate. Temporarily disable # tests so that we can manually run and test the package for packaging purposes. doCheck = false; meta = { description = "Command line tool to process CSV files directly from the shell"; homepage = "https://github.com/medialab/xan"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ NotAShelf ]; mainProgram = "xan"; }; }