tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
pythonPackages.fastparquet: cleanup, add import check
Sandro Jäckel
5 years ago
05fe50b7
f14aa7ae
+4
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
fastparquet
default.nix
+4
-2
pkgs/development/python-modules/fastparquet/default.nix
reviewed
···
1
1
{ lib, buildPythonPackage, fetchFromGitHub, numba, numpy, pandas, pytestrunner,
2
2
-
thrift, pytest, python-snappy, lz4, zstd }:
2
2
+
thrift, pytestCheckHook, python-snappy, lz4, zstd }:
3
3
4
4
buildPythonPackage rec {
5
5
pname = "fastparquet";
···
20
20
21
21
nativeBuildInputs = [ pytestrunner ];
22
22
propagatedBuildInputs = [ numba numpy pandas thrift ];
23
23
-
checkInputs = [ pytest python-snappy lz4 zstd ];
23
23
+
checkInputs = [ pytestCheckHook python-snappy lz4 zstd ];
24
24
+
25
25
+
pythonImportsCheck = [ "fastparquet" ];
24
26
25
27
meta = with lib; {
26
28
description = "A python implementation of the parquet format";