Merge pull request #301562 from r-ryantm/auto-update/python311Packages.hickle

python311Packages.hickle: 5.0.2 -> 5.0.3
This commit is contained in:
Fabian Affolter 2024-04-05 23:29:16 +02:00 committed by GitHub
commit eec2844f24
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 19 additions and 17 deletions

View File

@ -1,20 +1,22 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, h5py
, numpy
, dill
, astropy
, scipy
, pandas
, pytestCheckHook
{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
h5py,
numpy,
dill,
astropy,
scipy,
pandas,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "hickle";
version = "5.0.3";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.5";
@ -25,10 +27,12 @@ buildPythonPackage rec {
postPatch = ''
substituteInPlace tox.ini \
--replace "--cov=./hickle" ""
--replace-fail "--cov=./hickle" ""
'';
propagatedBuildInputs = [
build-system = [ setuptools ];
dependencies = [
dill
h5py
numpy
@ -41,9 +45,7 @@ buildPythonPackage rec {
scipy
];
pythonImportsCheck = [
"hickle"
];
pythonImportsCheck = [ "hickle" ];
disabledTests = [
# broken in 5.0.2 with recent NumPy