python310Packages.finalfusion: fix build

This commit is contained in:
figsoda 2023-05-17 14:09:18 -04:00
parent 4376e41af0
commit e61d73c29f

View file

@ -36,6 +36,10 @@ buildPythonPackage rec {
postPatch = ''
patchShebangs tests/integration
# `np.float` was a deprecated alias of the builtin `float`
substituteInPlace tests/test_storage.py \
--replace 'dtype=np.float)' 'dtype=float)'
'';
checkPhase = ''