python.pkgs.hmmlearn: init at 0.2.0

This commit is contained in:
Nikolay Amiantov 2017-07-03 18:05:58 +03:00
parent 50ed470a50
commit aa4d747ac9

View file

@ -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";