Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / octave-modules / tsa / default.nix
bloba6320f0fc01c2d85e5283f6d020c7ba2de03f382
1 { buildOctavePackage
2 , lib
3 , fetchurl
4 , nan # > 3.0.0
5 }:
7 buildOctavePackage rec {
8   pname = "tsa";
9   version = "4.6.2";
11   src = fetchurl {
12     url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
13     sha256 = "0p2cjszzjwhp4ih3q3r67qnikgxc0fwxc12p3727jbdvzq2h10mn";
14   };
16   requiredOctavePackages = [
17     nan
18   ];
20   meta = with lib; {
21     homepage = "https://octave.sourceforge.io/tsa/index.html";
22     license = licenses.gpl3Plus;
23     maintainers = with maintainers; [ KarlJoad ];
24     description = "Stochastic concepts and maximum entropy methods for time series analysis";
25   };