python311Packages.scikit-bio: format with nixfmt

This commit is contained in:
TomaSajt 2024-05-06 14:40:54 +02:00
parent 700b90e609
commit 5a9fabb4ec
No known key found for this signature in database
GPG Key ID: F011163C050122A1

View File

@ -1,22 +1,23 @@
{ lib
, buildPythonPackage
, fetchPypi
, cython
, lockfile
, cachecontrol
, decorator
, h5py
, ipython
, matplotlib
, natsort
, numpy
, pandas
, scipy
, hdmedians
, scikit-learn
, coverage
, python
, isPy3k
{
lib,
buildPythonPackage,
fetchPypi,
cython,
lockfile,
cachecontrol,
decorator,
h5py,
ipython,
matplotlib,
natsort,
numpy,
pandas,
scipy,
hdmedians,
scikit-learn,
coverage,
python,
isPy3k,
}:
buildPythonPackage rec {
@ -32,7 +33,20 @@ buildPythonPackage rec {
nativeBuildInputs = [ cython ];
nativeCheckInputs = [ coverage ];
propagatedBuildInputs = [ lockfile cachecontrol decorator ipython matplotlib natsort numpy pandas scipy h5py hdmedians scikit-learn ];
propagatedBuildInputs = [
lockfile
cachecontrol
decorator
ipython
matplotlib
natsort
numpy
pandas
scipy
h5py
hdmedians
scikit-learn
];
# cython package not included for tests
doCheck = false;
@ -47,7 +61,10 @@ buildPythonPackage rec {
homepage = "http://scikit-bio.org/";
description = "Data structures, algorithms and educational resources for bioinformatics";
license = licenses.bsd3;
platforms = [ "x86_64-linux" "x86_64-darwin" ];
platforms = [
"x86_64-linux"
"x86_64-darwin"
];
maintainers = [ ];
};
}