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