16 buildPythonPackage rec {
21 disabled = pythonOlder "3.5";
24 inherit pname version;
25 hash = "sha256-An5RzK0nnRaBI6JEUl5shLrA22RgWzEbC9NJiRvgxT4=";
29 substituteInPlace tox.ini \
30 --replace-fail "--cov=./hickle" ""
33 build-system = [ setuptools ];
48 pythonImportsCheck = [ "hickle" ];
51 # broken in 5.0.2 with recent NumPy
52 # see https://github.com/telegraphic/hickle/issues/174
53 "test_scalar_compression"
54 # broken in 5.0.2 with Python 3.11
55 # see https://github.com/telegraphic/hickle/issues/169
56 "test_H5NodeFilterProxy"
58 "test_slash_dict_keys"
62 description = "Serialize Python data to HDF5";
63 homepage = "https://github.com/telegraphic/hickle";
64 changelog = "https://github.com/telegraphic/hickle/releases/tag/v${version}";
65 license = licenses.mit;
66 maintainers = with maintainers; [ bcdarwin ];