depot/third_party/nixpkgs/pkgs/development/python-modules/pomegranate/default.nix

60 lines
1 KiB
Nix
Raw Normal View History

{ stdenv
, lib
, buildPythonPackage
, fetchFromGitHub
# build-system
, setuptools
# dependencies
, apricot-select
, networkx
, numpy
, scikit-learn
, scipy
, torch
# tests
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pomegranate";
version = "1.0.0";
format = "pyproject";
src = fetchFromGitHub {
repo = pname;
owner = "jmschrei";
# no tags for recent versions: https://github.com/jmschrei/pomegranate/issues/974
rev = "refs/tags/v${version}";
sha256 = "sha256-EnxKlRRfsOIDLAhYOq7bUSbI/NvPoSyYCZ9D5VCXFGQ=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
apricot-select
networkx
numpy
scikit-learn
scipy
torch
];
nativeCheckInputs = [
pytestCheckHook
];
meta = with lib; {
broken = stdenv.isDarwin;
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 ];
};
}