python312Packages.hickle: format with nixfmt
This commit is contained in:
parent
96867fbe27
commit
ed3d62c04c
1 changed files with 15 additions and 18 deletions
|
@ -1,15 +1,16 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, h5py
|
||||
, numpy
|
||||
, dill
|
||||
, astropy
|
||||
, scipy
|
||||
, pandas
|
||||
, pytestCheckHook
|
||||
, setuptools
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
pythonOlder,
|
||||
h5py,
|
||||
numpy,
|
||||
dill,
|
||||
astropy,
|
||||
scipy,
|
||||
pandas,
|
||||
pytestCheckHook,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -29,9 +30,7 @@ buildPythonPackage rec {
|
|||
--replace-fail "--cov=./hickle" ""
|
||||
'';
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
];
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
dill
|
||||
|
@ -46,9 +45,7 @@ buildPythonPackage rec {
|
|||
scipy
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"hickle"
|
||||
];
|
||||
pythonImportsCheck = [ "hickle" ];
|
||||
|
||||
disabledTests = [
|
||||
# broken in 5.0.2 with recent NumPy
|
||||
|
|
Loading…
Reference in a new issue