Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at r-updates 33 lines 711 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 toml, 6 setuptools, 7}: 8 9buildPythonPackage rec { 10 pname = "scikit-base"; 11 version = "0.12.4"; 12 pyproject = true; 13 14 src = fetchFromGitHub { 15 owner = "sktime"; 16 repo = "skbase"; 17 tag = "v${version}"; 18 hash = "sha256-gyI/UCPAIH3gtW/e93w0D5e/HDdLA7GpSml/IJE8ipM="; 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}