13 buildPythonPackage rec {
18 src = fetchFromGitHub {
19 owner = "intive-DataScience";
22 hash = "sha256-f6QqDq/ffbnFBZRAT6KQRlqvZZSE+Pff2/o+htVabZI=";
25 nativeBuildInputs = [ setuptools ];
27 propagatedBuildInputs = [
34 nativeCheckInputs = [ pytestCheckHook ];
36 # test_R folder is just for comparison of results with R lib
37 # we need only test folder
40 # several tests has same name, so we use --deselect instead of disableTests
42 # Test execution is too long > 15 min
43 "--deselect=test/tbats/TBATS_test.py::TestTBATS::test_fit_predict_trigonometric_seasonal"
46 pythonImportsCheck = [ "tbats" ];
49 description = "BATS and TBATS forecasting methods";
50 homepage = "https://github.com/intive-DataScience/tbats";
51 changelog = "https://github.com/intive-DataScience/tbats/releases/tag/${src.rev}";
52 license = licenses.mit;
53 maintainers = with maintainers; [ mbalatsko ];