mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
Diff: https://github.com/pyro-ppl/funsor/compare/0.4.6...0.4.7 Changelog: https://github.com/pyro-ppl/funsor/releases/tag/0.4.7
89 lines
1.6 KiB
Nix
89 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
|
|
# build-system
|
|
setuptools,
|
|
|
|
# dependencies
|
|
makefun,
|
|
multipledispatch,
|
|
numpy,
|
|
opt-einsum,
|
|
typing-extensions,
|
|
|
|
# tests
|
|
pyro-ppl,
|
|
torch,
|
|
pandas,
|
|
pillow,
|
|
pyro-api,
|
|
pytestCheckHook,
|
|
pytest-xdist,
|
|
requests,
|
|
scipy,
|
|
torchvision,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "funsor";
|
|
version = "0.4.7";
|
|
pyproject = true;
|
|
__structuredAttrs = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pyro-ppl";
|
|
repo = "funsor";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-0STJv1OOliJaHdmYUXdnOnocH3hVXceH/Uw5nILvT+U=";
|
|
};
|
|
|
|
patches = [
|
|
# Compatibility with torch >= 2.5 (arg_constraints is now a property)
|
|
(fetchpatch {
|
|
url = "https://github.com/pyro-ppl/funsor/commit/c5e2a48d73cad4e98058147af4090171272a44e5.patch";
|
|
hash = "sha256-sTR+hbJtS0Th5sIqlvB2bReEC0wnEbnB7gAiZKiqjAQ=";
|
|
})
|
|
];
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
makefun
|
|
multipledispatch
|
|
numpy
|
|
opt-einsum
|
|
typing-extensions
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
# Backend
|
|
pyro-ppl
|
|
torch
|
|
|
|
pandas
|
|
pillow
|
|
pyro-api
|
|
pytestCheckHook
|
|
pytest-xdist
|
|
requests
|
|
scipy
|
|
torchvision
|
|
];
|
|
|
|
preCheck = ''
|
|
export FUNSOR_BACKEND=torch
|
|
'';
|
|
|
|
pythonImportsCheck = [ "funsor" ];
|
|
|
|
meta = {
|
|
description = "Functional tensors for probabilistic programming";
|
|
homepage = "https://funsor.pyro.ai";
|
|
changelog = "https://github.com/pyro-ppl/funsor/releases/tag/${finalAttrs.src.tag}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ GaetanLepage ];
|
|
};
|
|
})
|