pythonPackages.pomegranate: init at 0.7.7 (#29338)
This commit is contained in:
parent
6d367ba9f3
commit
1d0c8f8687
23
pkgs/development/python-modules/pomegranate/default.nix
Normal file
23
pkgs/development/python-modules/pomegranate/default.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user