1 { lib, buildPythonPackage, fetchFromGitHub, numpy, scipy, cython, networkx, joblib, nose, pyyaml }:
3 buildPythonPackage rec {
7 src = fetchFromGitHub {
11 sha256 = "070ciwww1lhjmfwd5n1kcwgxwbgdfvmhjs4l156bnf08z9dlrafl";
14 propagatedBuildInputs = [ numpy scipy cython networkx joblib pyyaml ];
16 checkInputs = [ nose ];
19 description = "Probabilistic and graphical models for Python, implemented in cython for speed";
20 homepage = "https://github.com/jmschrei/pomegranate";
21 license = licenses.mit;
22 maintainers = with maintainers; [ rybern ];