mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
69 lines
1.2 KiB
Nix
69 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, cloudpickle
|
|
, dask
|
|
, distributed
|
|
, fetchPypi
|
|
, multipledispatch
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, scikit-learn
|
|
, scipy
|
|
, setuptools-scm
|
|
, sparse
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dask-glm";
|
|
version = "0.2.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-WLhs6/BP5bnlgJLhxGfjLmDQHhG3H9xii6qp/G0a3uU=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
cloudpickle
|
|
distributed
|
|
multipledispatch
|
|
scikit-learn
|
|
scipy
|
|
sparse
|
|
] ++ dask.optional-dependencies.array;
|
|
|
|
nativeCheckInputs = [
|
|
sparse
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"dask_glm"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# Circular dependency with dask-ml
|
|
"dask_glm/tests/test_estimators.py"
|
|
# Test tries to imort an obsolete method
|
|
"dask_glm/tests/test_utils.py"
|
|
];
|
|
|
|
disabledTests = [
|
|
# missing fixture with distributed>=2022.8.0
|
|
"test_determinism_distributed"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Generalized Linear Models with Dask";
|
|
homepage = "https://github.com/dask/dask-glm/";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ costrouc ];
|
|
};
|
|
}
|