python312Packages.hickle: refactor

This commit is contained in:
Fabian Affolter 2024-04-04 20:56:07 +02:00 committed by Weijia Wang
parent 2e0d671640
commit 96867fbe27
1 changed files with 8 additions and 3 deletions

View File

@ -9,12 +9,13 @@
, scipy
, pandas
, pytestCheckHook
, setuptools
}:
buildPythonPackage rec {
pname = "hickle";
version = "5.0.3";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.5";
@ -25,10 +26,14 @@ buildPythonPackage rec {
postPatch = ''
substituteInPlace tox.ini \
--replace "--cov=./hickle" ""
--replace-fail "--cov=./hickle" ""
'';
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
dill
h5py
numpy