python.pkgs.hmmlearn: init at 0.2.0
This commit is contained in:
parent
50ed470a50
commit
aa4d747ac9
1 changed files with 22 additions and 0 deletions
|
@ -11359,6 +11359,28 @@ in {
|
|||
propagatedBuildInputs = with self; [ requests webob ];
|
||||
};
|
||||
|
||||
hmmlearn = buildPythonPackage rec {
|
||||
name = "hmmlearn-${version}";
|
||||
version = "0.2.0";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/h/hmmlearn/${name}.tar.gz";
|
||||
sha256 = "0qc3fkdyrgfg31y1a8jzs83dxkjw78pqkdm44lll1iib63w4cik9";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ numpy ];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Hidden Markov Models in Python with scikit-learn like API";
|
||||
homepage = "https://github.com/hmmlearn/hmmlearn";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
};
|
||||
|
||||
hcs_utils = buildPythonPackage rec {
|
||||
name = "hcs_utils-1.5";
|
||||
|
||||
|
|
Loading…
Reference in a new issue