python3Packages.hickle: init at 3.4.5

This commit is contained in:
Ben Darwin 2020-01-28 16:48:15 -05:00 committed by Jon
parent 29c5035e0f
commit 931f47304f
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{ buildPythonPackage
, fetchPypi
, h5py
, numpy
, dill
, astropy
, scipy
, pandas
, pytest
, pytestcov
, pytestrunner
, coveralls
, lib
}:
buildPythonPackage rec {
pname = "hickle";
version = "3.4.5";
src = fetchPypi {
inherit pname version;
sha256 = "1d1qj3yl7635lgkqacz9r8fyhv71396l748ww4wy05ibpignjm2x";
};
postPatch = ''
substituteInPlace requirements_test.txt \
--replace 'astropy<3.1;' 'astropy;' --replace 'astropy<3.0;' 'astropy;'
'';
propagatedBuildInputs = [ h5py numpy dill ];
checkInputs = [ pytest pytestcov pytestrunner coveralls scipy pandas astropy ];
meta = {
description = "Serialize Python data to HDF5";
homepage = "https://github.com/telegraphic/hickle";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ bcdarwin ];
};
}

View file

@ -2750,6 +2750,8 @@ in {
hbmqtt = callPackage ../development/python-modules/hbmqtt { };
hickle = callPackage ../development/python-modules/hickle { };
hiro = callPackage ../development/python-modules/hiro {};
hglib = callPackage ../development/python-modules/hglib {};