pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / by-name / bd / bdt / package.nix
blob997b15cee39fb02606c4e7a91815e386e22433c4
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
5 rustPlatform.buildRustPackage rec {
6   pname = "bdt";
7   version = "0.18.0";
9   src = fetchFromGitHub {
10     owner = "datafusion-contrib";
11     repo = "bdt";
12     rev = "5c6730a8e3cd43c7847aef76b499197730cded58";
13     hash = "sha256-gUKsJwbpMPSO+KPqyJRodrRLjUpTh/y6C2xhrgvJFKk=";
14   };
16   cargoHash = "sha256-4KrFhchoIB2N89m7HrL0xj2Z+u/6/6Onxa2wIAX18Io=";
18   meta = with lib; {
19     description = "boring data tool. A CLI tool to query parquet, json and avro files";
20     homepage = "https://github.com/datafusion-contrib/bdt";
21     license = licenses.asl20;
22     mainProgram = "bdt";
23     maintainers = with maintainers; [ matthiasq ];
24   };