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