2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
pythonOlder,
|
|
|
|
fetchFromGitHub,
|
|
|
|
makefun,
|
|
|
|
multipledispatch,
|
|
|
|
numpy,
|
|
|
|
opt-einsum,
|
|
|
|
typing-extensions,
|
|
|
|
pyro-ppl,
|
|
|
|
torch,
|
|
|
|
pandas,
|
|
|
|
pillow,
|
|
|
|
pyro-api,
|
|
|
|
pytest,
|
|
|
|
pytest-xdist,
|
|
|
|
requests,
|
|
|
|
scipy,
|
|
|
|
torchvision,
|
2023-08-22 20:05:09 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "funsor";
|
2023-10-09 19:29:22 +00:00
|
|
|
version = "0.4.6";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2023-08-22 20:05:09 +00:00
|
|
|
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pyro-ppl";
|
|
|
|
repo = "funsor";
|
|
|
|
rev = "refs/tags/${version}";
|
2023-10-09 19:29:22 +00:00
|
|
|
hash = "sha256-Prj1saT0yoPAP8rDE0ipBEpR3QMk4PS12VSJlxc22p8=";
|
2023-08-22 20:05:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Disable the tests that rely on downloading assets from the internet as well as the linting checks.
|
2024-06-05 15:53:02 +00:00
|
|
|
patches = [ ./patch-makefile-for-tests.patch ];
|
2023-08-22 20:05:09 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
makefun
|
|
|
|
multipledispatch
|
|
|
|
numpy
|
|
|
|
opt-einsum
|
|
|
|
typing-extensions
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeCheckInputs = [
|
|
|
|
# Backend
|
|
|
|
pyro-ppl
|
|
|
|
torch
|
|
|
|
|
|
|
|
pandas
|
|
|
|
pillow
|
|
|
|
pyro-api
|
|
|
|
pytest
|
|
|
|
pytest-xdist
|
|
|
|
requests
|
|
|
|
scipy
|
|
|
|
torchvision
|
|
|
|
];
|
|
|
|
|
|
|
|
# Use the included Makefile to run the tests.
|
|
|
|
checkPhase = ''
|
|
|
|
export FUNSOR_BACKEND=torch
|
|
|
|
make test
|
|
|
|
'';
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "funsor" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Functional tensors for probabilistic programming";
|
|
|
|
homepage = "https://funsor.pyro.ai";
|
|
|
|
changelog = "https://github.com/pyro-ppl/funsor/releases/tag/${version}";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ GaetanLepage ];
|
|
|
|
};
|
|
|
|
}
|