nixpkgs/pkgs/development/python-modules/hmmlearn/default.nix

25 lines
645 B
Nix
Raw Normal View History

{ lib, fetchurl, buildPythonPackage, numpy }:
buildPythonPackage rec {
pname = "hmmlearn";
2018-11-04 11:35:02 +01:00
version = "0.2.1";
name = pname + "-" + version;
src = fetchurl {
url = "mirror://pypi/h/hmmlearn/${name}.tar.gz";
2018-11-04 11:35:02 +01:00
sha256 = "d43f5b25f9019ef5d01914d0972a5fa0594e82ab75d2c6aec26d682e47bd553c";
};
propagatedBuildInputs = [ numpy ];
doCheck = false;
meta = with lib; {
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;
};
}