python312Packages.yoda: 2.0.1 -> 2.0.2
[NixPkgs.git] / pkgs / development / octave-modules / tsa / default.nix
blob985612fa8c7af06b1da5782ffdf7e80503cab4c7
1 { buildOctavePackage
2 , lib
3 , fetchurl
4 , nan # > 3.0.0
5 }:
7 buildOctavePackage rec {
8   pname = "tsa";
9   version = "4.6.3";
11   src = fetchurl {
12     url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
13     sha256 = "1pbxq77xc7pn0ki6rpijlq9v7inn0hn2adkx1skgwffl7pivrwsl";
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   };