Files
2026-04-18 16:57:12 +10:00

99 lines
1.9 KiB
Nix

{
lib,
buildPythonPackage,
cython,
distutils,
fetchFromGitHub,
greenlet,
ipython,
jinja2,
pkg-config,
pkgconfig,
pkgs,
pytest-cov-stub,
pytest-textual-snapshot,
pytestCheckHook,
pythonOlder,
rich,
setuptools,
stdenv,
textual,
}:
buildPythonPackage (finalAttrs: {
pname = "memray";
version = "1.19.3";
pyproject = true;
src = fetchFromGitHub {
owner = "bloomberg";
repo = "memray";
tag = "v${finalAttrs.version}";
hash = "sha256-A9XbVpuW/MlMNdFq5bbpg90GFh5c1aEWQOvGAOXyUgc=";
};
build-system = [
distutils
setuptools
];
__darwinAllowLocalNetworking = true;
nativeBuildInputs = [ pkg-config ];
buildInputs = [
cython
pkgs.libunwind
pkgs.lz4
]
++ lib.optionals stdenv.hostPlatform.isLinux [
pkgs.elfutils # for `-ldebuginfod`
];
dependencies = [
pkgconfig
textual
jinja2
rich
];
nativeCheckInputs = [
ipython
pytest-cov-stub
pytest-textual-snapshot
pytestCheckHook
]
++ lib.optionals (pythonOlder "3.14") [ greenlet ];
pythonImportsCheck = [ "memray" ];
disabledTests = [
# Import issue
"test_header_allocator"
"test_hybrid_stack_of_allocations_inside_ceval"
# The following snapshot tests started failing since updating textual to 3.5.0
"TestTUILooks"
"test_merge_threads"
"test_tui_basic"
"test_tui_gradient"
"test_tui_pause"
"test_unmerge_threads"
];
disabledTestPaths = [
# Very time-consuming and some tests fails (performance-related?)
"tests/integration/test_main.py"
];
meta = {
description = "Memory profiler for Python";
homepage = "https://bloomberg.github.io/memray/";
changelog = "https://github.com/bloomberg/memray/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
platforms = lib.platforms.linux ++ lib.platforms.darwin;
mainProgram = "memray";
};
})