83627f9931
GitOrigin-RevId: 2893f56de08021cffd9b6b6dfc70fd9ccd51eb60
62 lines
1.1 KiB
Nix
62 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
python,
|
|
pythonOlder,
|
|
|
|
setuptools,
|
|
wheel,
|
|
cython,
|
|
|
|
numpy,
|
|
scipy,
|
|
scikit-learn,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "quantile-forest";
|
|
version = "1.3.7";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zillow";
|
|
repo = "quantile-forest";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-3EcluHUDtAYfaHycgyCAaolRcChecrPRnMaUFrpzMIQ=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
cython
|
|
wheel
|
|
numpy
|
|
scipy
|
|
scikit-learn
|
|
];
|
|
|
|
dependencies = [
|
|
numpy
|
|
scipy
|
|
scikit-learn
|
|
];
|
|
|
|
postInstall = ''
|
|
rm -rf $out/${python.sitePackages}/examples
|
|
'';
|
|
|
|
# need network connection
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "quantile_forest" ];
|
|
|
|
meta = with lib; {
|
|
description = "Quantile Regression Forests compatible with scikit-learn";
|
|
homepage = "https://github.com/zillow/quantile-forest";
|
|
changelog = "https://github.com/zillow/quantile-forest/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ vizid ];
|
|
};
|
|
}
|