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