20 buildPythonPackage rec {
23 disabled = pythonOlder "3.5";
26 inherit pname version;
27 sha256 = "0d35030a76fe1c7fa6480088cde932689960ed354a2539ffaf5f3c90c578c06f";
31 substituteInPlace requirements_test.txt \
32 --replace 'astropy<3.1;' 'astropy;' --replace 'astropy<3.0;' 'astropy;'
35 propagatedBuildInputs = [ h5py numpy dill ];
37 doCheck = false; # incompatible with latest astropy
39 pytest pytestcov pytestrunner coveralls scipy pandas astropy twine check-manifest codecov
42 pythonImportsCheck = [ "hickle" ];
45 description = "Serialize Python data to HDF5";
46 homepage = "https://github.com/telegraphic/hickle";
47 license = lib.licenses.mit;
48 maintainers = with lib.maintainers; [ bcdarwin ];