18 buildPythonPackage rec {
21 format = "setuptools";
23 disabled = pythonOlder "3.7";
25 src = fetchFromGitHub {
26 owner = "alkaline-ml";
28 rev = "refs/tags/v${version}";
29 hash = "sha256-LHwPgQRB/vP3hBM8nqafoCrN3ZSRIMWLzqTqDOETOEc=";
32 nativeBuildInputs = [ cython ];
34 propagatedBuildInputs = [
44 # Make sure we're running the tests for the actually installed
45 # package, so that cython's compiled files are available.
47 cd $out/${python.sitePackages}
60 pythonImportsCheck = [ "pmdarima" ];
63 description = "A statistical library designed to fill the void in Python's time series analysis capabilities, including the equivalent of R's auto.arima function";
64 homepage = "https://github.com/alkaline-ml/pmdarima";
65 changelog = "https://github.com/alkaline-ml/pmdarima/releases/tag/v${version}";
66 license = licenses.mit;
67 maintainers = with maintainers; [ mbalatsko ];