linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / fastparquet / default.nix
blobdc25759afe3959309c7871b6a8228e63570cc0ee
1 { lib, buildPythonPackage, fetchFromGitHub, numba, numpy, pandas, pytestrunner
2 , thrift, pytestCheckHook, python-snappy, lz4, zstandard, zstd }:
4 buildPythonPackage rec {
5   pname = "fastparquet";
6   version = "0.5.0";
8   src = fetchFromGitHub {
9     owner = "dask";
10     repo = pname;
11     rev = version;
12     sha256 = "17i091kky34m2xivk29fqsyxxxa7v4352n79w01n7ni93za6wana";
13   };
15   nativeBuildInputs = [ pytestrunner ];
16   propagatedBuildInputs = [ numba numpy pandas thrift ];
17   checkInputs = [ pytestCheckHook python-snappy lz4 zstandard zstd ];
19   # E   ModuleNotFoundError: No module named 'fastparquet.speedups'
20   doCheck = false;
21   pythonImportsCheck = [ "fastparquet" ];
23   meta = with lib; {
24     description = "A python implementation of the parquet format";
25     homepage = "https://github.com/dask/fastparquet";
26     license = with licenses; [ asl20 ];
27     maintainers = with maintainers; [ veprbl ];
28   };