mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
Merge pull request #301562 from r-ryantm/auto-update/python311Packages.hickle
python311Packages.hickle: 5.0.2 -> 5.0.3
This commit is contained in:
commit
eec2844f24
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user