pythonPackages.fastparquet: 0.6.3 -> 0.7.0

This commit is contained in:
Dmitry Kalinkin 2021-07-24 01:08:10 -04:00 committed by Frederik Rietdijk
parent 4ba0e32b78
commit 861f36d871
2 changed files with 13 additions and 2 deletions

View file

@ -14,13 +14,13 @@
buildPythonPackage rec {
pname = "fastparquet";
version = "0.6.3";
version = "0.7.0";
src = fetchFromGitHub {
owner = "dask";
repo = pname;
rev = version;
hash = "sha256-wSJ6PqW7c8DJCsGuPhXaVGM2s/1dZhLjG4C0JWPcjhY=";
hash = "sha256-08hanzRnt6WuMriNNtOd+ZHycr2XBeIRav+5sgvT7Do=";
};
nativeBuildInputs = [ pytest-runner ];

View file

@ -1,4 +1,5 @@
{ lib
, stdenv
, buildPythonPackage
, cryptography
, fetchFromGitHub
@ -32,6 +33,16 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = lib.optionals stdenv.isDarwin [
# https://github.com/jborean93/smbprotocol/issues/119
"test_copymode_local_to_local_symlink_dont_follow"
"test_copystat_local_to_local_symlink_dont_follow_fail"
# fail in sandbox due to networking
"test_small_recv"
"test_recv_"
];
pythonImportsCheck = [ "smbprotocol" ];
meta = with lib; {