1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
62 lines
1.3 KiB
Nix
62 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
fetchpatch,
|
|
h5py,
|
|
numpy,
|
|
dill,
|
|
astropy,
|
|
scipy,
|
|
pandas,
|
|
pytestCheckHook,
|
|
pytest-cov-stub,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hickle";
|
|
version = "5.0.3";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-An5RzK0nnRaBI6JEUl5shLrA22RgWzEbC9NJiRvgxT4=";
|
|
};
|
|
|
|
patches = [
|
|
# fixes support for numpy 2.x, the PR is not yet merged https://github.com/telegraphic/hickle/pull/186
|
|
# FIXME: Remove this patch when the numpy 2.x support arrives
|
|
./numpy-2.x-support.patch
|
|
# fixes test failing with numpy 2.3 as ndarray.tostring was deleted
|
|
# FIXME: delete once https://github.com/telegraphic/hickle/pull/187 is merged
|
|
./numpy-2.3-ndarray-tostring.patch
|
|
];
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
dill
|
|
h5py
|
|
numpy
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
astropy
|
|
pandas
|
|
pytestCheckHook
|
|
pytest-cov-stub
|
|
scipy
|
|
];
|
|
|
|
pythonImportsCheck = [ "hickle" ];
|
|
|
|
meta = {
|
|
description = "Serialize Python data to HDF5";
|
|
homepage = "https://github.com/telegraphic/hickle";
|
|
changelog = "https://github.com/telegraphic/hickle/releases/tag/v${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ bcdarwin ];
|
|
};
|
|
}
|