Skip to content

Commit

Permalink
pythonPackages.pomegranate: init at 0.7.7 (#29338)
Browse files Browse the repository at this point in the history
  • Loading branch information
rybern authored and fpletz committed Sep 18, 2017
1 parent 6d367ba commit 1d0c8f8
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pkgs/development/python-modules/pomegranate/default.nix
@@ -0,0 +1,23 @@
{ stdenv, buildPythonPackage, fetchPypi, numpy, scipy, cython, networkx, joblib, nose }:

buildPythonPackage rec {
pname = "pomegranate";
version = "0.7.7";
name = "${pname}-${version}";

src = fetchPypi {
inherit pname version;
sha256 = "b5b7a6256778fc4097ee77caec28ec845ec1fee3d701f3f26f83860b2d45c453";
};

propagatedBuildInputs = [ numpy scipy cython networkx joblib ];

checkInputs = [ nose ];

meta = with stdenv.lib; {
description = "Probabilistic and graphical models for Python, implemented in cython for speed";
homepage = https://github.com/jmschrei/pomegranate;
license = licenses.mit;
maintainers = with maintainers; [ rybern ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -7025,6 +7025,8 @@ in {

podcastparser = callPackage ../development/python-modules/podcastparser { };

pomegranate = callPackage ../development/python-modules/pomegranate { };

poppler-qt4 = buildPythonPackage rec {
name = "poppler-qt4-${version}";
version = "0.18.1";
Expand Down

0 comments on commit 1d0c8f8

Please sign in to comment.