1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 toml, 6 setuptools, 7}: 8 9buildPythonPackage rec { 10 pname = "scikit-base"; 11 version = "0.12.6"; 12 pyproject = true; 13 14 src = fetchFromGitHub { 15 owner = "sktime"; 16 repo = "skbase"; 17 tag = "v${version}"; 18 hash = "sha256-c9hQBZV+PWI6ZViocUYqryhvDg0nJ6Qxdx6zwIV0fes="; 19 }; 20 21 build-system = [ setuptools ]; 22 23 dependencies = [ toml ]; 24 25 pythonImportsCheck = [ "skbase" ]; 26 27 meta = with lib; { 28 description = "Base classes for creating scikit-learn-like parametric objects, and tools for working with them"; 29 homepage = "https://github.com/sktime/skbase"; 30 license = licenses.bsd3; 31 maintainers = with maintainers; [ kirillrdy ]; 32 }; 33}