Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 636 B view raw
1{ lib, fetchurl, buildPythonPackage, numpy, scikitlearn }: 2 3buildPythonPackage rec { 4 pname = "hmmlearn"; 5 version = "0.2.1"; 6 name = pname + "-" + version; 7 8 src = fetchurl { 9 url = "mirror://pypi/h/hmmlearn/${name}.tar.gz"; 10 sha256 = "d43f5b25f9019ef5d01914d0972a5fa0594e82ab75d2c6aec26d682e47bd553c"; 11 }; 12 13 propagatedBuildInputs = [ numpy scikitlearn ]; 14 15 doCheck = false; 16 17 meta = with lib; { 18 description = "Hidden Markov Models in Python with scikit-learn like API"; 19 homepage = https://github.com/hmmlearn/hmmlearn; 20 license = licenses.bsd3; 21 maintainers = with maintainers; [ abbradar ]; 22 }; 23}