111 lines
1.9 KiB
Nix
111 lines
1.9 KiB
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchFromGitHub,
|
||
|
|
||
|
# build-system
|
||
|
cython,
|
||
|
versioneer,
|
||
|
|
||
|
# dependencies
|
||
|
cons,
|
||
|
etuples,
|
||
|
filelock,
|
||
|
logical-unification,
|
||
|
minikanren,
|
||
|
numpy,
|
||
|
scipy,
|
||
|
|
||
|
# checks
|
||
|
jax,
|
||
|
jaxlib,
|
||
|
numba,
|
||
|
pytest-mock,
|
||
|
pytestCheckHook,
|
||
|
tensorflow-probability,
|
||
|
|
||
|
nix-update-script,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "pytensor";
|
||
|
version = "2.25.5";
|
||
|
pyproject = true;
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "pymc-devs";
|
||
|
repo = "pytensor";
|
||
|
rev = "refs/tags/rel-${version}";
|
||
|
hash = "sha256-tEIDuMAY+rMBqzHLnhbSqOoWzjIbZKCWWMx/uej2pOU=";
|
||
|
};
|
||
|
|
||
|
pythonRelaxDeps = [
|
||
|
"scipy"
|
||
|
];
|
||
|
|
||
|
build-system = [
|
||
|
cython
|
||
|
versioneer
|
||
|
];
|
||
|
|
||
|
dependencies = [
|
||
|
cons
|
||
|
etuples
|
||
|
filelock
|
||
|
logical-unification
|
||
|
minikanren
|
||
|
numpy
|
||
|
scipy
|
||
|
];
|
||
|
|
||
|
nativeCheckInputs = [
|
||
|
jax
|
||
|
jaxlib
|
||
|
numba
|
||
|
pytest-mock
|
||
|
pytestCheckHook
|
||
|
tensorflow-probability
|
||
|
];
|
||
|
|
||
|
preBuild = ''
|
||
|
export HOME=$(mktemp -d)
|
||
|
'';
|
||
|
|
||
|
pythonImportsCheck = [ "pytensor" ];
|
||
|
|
||
|
disabledTests = [
|
||
|
# benchmarks (require pytest-benchmark):
|
||
|
"test_elemwise_speed"
|
||
|
"test_fused_elemwise_benchmark"
|
||
|
"test_logsumexp_benchmark"
|
||
|
"test_scan_multiple_output"
|
||
|
"test_vector_taps_benchmark"
|
||
|
];
|
||
|
|
||
|
disabledTestPaths = [
|
||
|
# Don't run the most compute-intense tests
|
||
|
"tests/scan/"
|
||
|
"tests/tensor/"
|
||
|
"tests/sparse/sandbox/"
|
||
|
];
|
||
|
|
||
|
passthru.updateScript = nix-update-script {
|
||
|
extraArgs = [
|
||
|
"--version-regex"
|
||
|
"rel-(.+)"
|
||
|
];
|
||
|
};
|
||
|
|
||
|
meta = {
|
||
|
description = "Python library to define, optimize, and efficiently evaluate mathematical expressions involving multi-dimensional arrays";
|
||
|
mainProgram = "pytensor-cache";
|
||
|
homepage = "https://github.com/pymc-devs/pytensor";
|
||
|
changelog = "https://github.com/pymc-devs/pytensor/releases";
|
||
|
license = lib.licenses.bsd3;
|
||
|
maintainers = with lib.maintainers; [
|
||
|
bcdarwin
|
||
|
ferrine
|
||
|
];
|
||
|
};
|
||
|
}
|