17 buildPythonPackage rec {
18 pname = "pomegranate";
22 src = fetchFromGitHub {
25 # no tags for recent versions: https://github.com/jmschrei/pomegranate/issues/974
26 rev = "refs/tags/v${version}";
27 hash = "sha256-PoDAtNm/snq4isotkoCTVYUuwr9AKKwiXIojUFMH/YE=";
34 propagatedBuildInputs = [
43 # https://github.com/etal/cnvkit/issues/815
44 passthru.skipBulkUpdate = true;
47 description = "Probabilistic and graphical models for Python, implemented in cython for speed";
48 homepage = "https://github.com/jmschrei/pomegranate";
49 license = licenses.mit;
50 maintainers = with maintainers; [ rybern ];