Revert "python3Packages.catboost: 1.0.5 -> 1.1.1"

This reverts commit 3626e3084a.
This commit is contained in:
Ben Darwin 2023-04-05 16:57:15 -04:00
parent 6ed024336b
commit 78dad85b64

View file

@ -5,7 +5,8 @@
buildPythonPackage rec {
pname = "catboost";
version = "1.1.1";
# nixpkgs-update: no auto update
version = "1.0.5";
disabled = pythonOlder "3.4";
@ -13,7 +14,7 @@ buildPythonPackage rec {
owner = "catboost";
repo = "catboost";
rev = "refs/tags/v${version}";
hash = "sha256-bqnUHTTRan/spA5y4LRt/sIUYpP3pxzdN/4wHjzgZVY=";
hash = "sha256-ILemeZUBI9jPb9G6F7QX/T1HaVhQ+g6y7YmsT6DFCJk";
};
nativeBuildInputs = [ clang_12 ];
@ -41,6 +42,11 @@ buildPythonPackage rec {
dontUseSetuptoolsCheck = true;
pythonImportsCheck = [ "catboost" ];
passthru = {
# Do not update to catboost 1.1.x because the patch doesn't apply cleanly
skipBulkUpdate = true;
};
meta = with lib; {
description = "High-performance library for gradient boosting on decision trees.";
longDescription = ''