2020-01-28 21:48:15 +00:00
|
|
|
{ buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-09-15 19:41:36 +01:00
|
|
|
, pythonOlder
|
2020-01-28 21:48:15 +00:00
|
|
|
, h5py
|
|
|
|
, numpy
|
|
|
|
, dill
|
|
|
|
, astropy
|
|
|
|
, scipy
|
|
|
|
, pandas
|
2020-03-13 16:50:35 +00:00
|
|
|
, codecov
|
2020-01-28 21:48:15 +00:00
|
|
|
, pytest
|
|
|
|
, pytestcov
|
|
|
|
, pytestrunner
|
|
|
|
, coveralls
|
2020-03-13 16:50:35 +00:00
|
|
|
, twine
|
|
|
|
, check-manifest
|
2020-01-28 21:48:15 +00:00
|
|
|
, lib
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "hickle";
|
2020-08-16 18:31:02 +01:00
|
|
|
version = "4.0.1";
|
2020-09-15 19:41:36 +01:00
|
|
|
disabled = pythonOlder "3.5";
|
2020-01-28 21:48:15 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-16 18:31:02 +01:00
|
|
|
sha256 = "fcf2c4f9e4b7f0d9dae7aa6c59a58473884017875d3b17898d56eaf8a9c1da96";
|
2020-01-28 21:48:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace requirements_test.txt \
|
|
|
|
--replace 'astropy<3.1;' 'astropy;' --replace 'astropy<3.0;' 'astropy;'
|
|
|
|
'';
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ h5py numpy dill ];
|
2020-09-15 19:28:51 +01:00
|
|
|
|
|
|
|
doCheck = false; # incompatible with latest astropy
|
2020-03-13 16:50:35 +00:00
|
|
|
checkInputs = [
|
|
|
|
pytest pytestcov pytestrunner coveralls scipy pandas astropy twine check-manifest codecov
|
|
|
|
];
|
2020-01-28 21:48:15 +00:00
|
|
|
|
2020-09-15 19:28:51 +01:00
|
|
|
pythonImportsCheck = [ "hickle" ];
|
|
|
|
|
2020-01-28 21:48:15 +00:00
|
|
|
meta = {
|
|
|
|
description = "Serialize Python data to HDF5";
|
|
|
|
homepage = "https://github.com/telegraphic/hickle";
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = with lib.maintainers; [ bcdarwin ];
|
|
|
|
};
|
|
|
|
}
|