python312Packages.hyppo: 0.5.0 -> 0.5.1
Diff: https://github.com/neurodata/hyppo/compare/refs/tags/v0.5.0...v0.5.1 Changelog: https://github.com/neurodata/hyppo/releases/tag/v0.5.1
This commit is contained in:
parent
c82b201d74
commit
5d1c122dc9
@ -1,31 +1,32 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
pythonOlder,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
pytestCheckHook,
|
||||
autograd,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
future,
|
||||
matplotlib,
|
||||
numba,
|
||||
numpy,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
scikit-learn,
|
||||
scipy,
|
||||
matplotlib,
|
||||
seaborn,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "hyppo";
|
||||
version = "0.5.0";
|
||||
version = "0.5.1";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "neurodata";
|
||||
repo = pname;
|
||||
repo = "hyppo";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-7ZDzmSnieXz6E0x7mOL4109+hyeEQ0AW0Qhc4IwBM18=";
|
||||
hash = "sha256-bYxqYSOOifQE3gbw8vNk/A13D5TPx7ERSgFvRHMXKGM=";
|
||||
};
|
||||
|
||||
# some of the doctests (4/21) are broken, e.g. unbound variables, nondeterministic with insufficient tolerance, etc.
|
||||
@ -36,8 +37,9 @@ buildPythonPackage rec {
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dependencies = [
|
||||
autograd
|
||||
future
|
||||
numba
|
||||
numpy
|
||||
scikit-learn
|
||||
|
Loading…
Reference in New Issue
Block a user