Merge pull request #194952 from john-shaffer/csv2parquet

csv2parquet: init at 0.6.0
This commit is contained in:
Anderson Torres 2022-10-09 18:53:54 -03:00 committed by GitHub
commit c30848bad1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 30 additions and 0 deletions

View file

@ -6507,6 +6507,12 @@
githubId = 297653;
name = "Joe Salisbury";
};
john-shaffer = {
email = "jdsha@proton.me";
github = "john-shaffer";
githubId = 53870456;
name = "John Shaffer";
};
johanot = {
email = "write@ownrisk.dk";
github = "johanot";

View file

@ -0,0 +1,22 @@
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "csv2parquet";
version = "0.6.0";
src = fetchFromGitHub {
owner = "domoritz";
repo = pname;
rev = "v${version}";
sha256 = "sha256-kb5j7d5lhElbDuoDpsijaXy3Dxjs7nRCUorkg4vKQi8=";
};
cargoSha256 = "sha256-rfwqLWNl05GyIBCOv9PaaYmkHBa58x0ck8Jz1qZyeos=";
meta = with lib; {
description = "Convert CSV files to Apache Parquet";
homepage = "https://github.com/domoritz/csv2parquet";
license = licenses.mit;
maintainers = with maintainers; [ john-shaffer ];
};
}

View file

@ -3581,6 +3581,8 @@ with pkgs;
csv2odf = callPackage ../applications/office/csv2odf { };
csv2parquet = callPackage ../tools/misc/csv2parquet { };
csvdiff = callPackage ../tools/text/csvdiff { };
csview = callPackage ../tools/text/csview { };