nixpkgs/pkgs/development/tools/memray/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

72 lines
1.3 KiB
Nix

{ lib
, fetchFromGitHub
, libunwind
, lz4
, pkg-config
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "memray";
version = "1.6.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "bloomberg";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-iIbx8vK4xAFfTVO4oJ5ELNKn19Tw6LPgwEi6eFOA5yo=";
};
nativeBuildInputs = [
pkg-config
];
buildInputs = [
libunwind
lz4
] ++ (with python3.pkgs; [
cython
]);
propagatedBuildInputs = with python3.pkgs; [
jinja2
rich
];
nativeCheckInputs = with python3.pkgs; [
ipython
pytestCheckHook
] ++ lib.optionals (pythonOlder "3.11") [
greenlet
];
pythonImportsCheck = [
"memray"
];
pytestFlagsArray = [
"tests"
];
disabledTests = [
# Import issue
"test_header_allocator"
"test_hybrid_stack_of_allocations_inside_ceval"
];
disabledTestPaths = [
# Very time-consuming and some tests fails (performance-related?)
"tests/integration/test_main.py"
];
meta = with lib; {
description = "Memory profiler for Python";
homepage = "https://bloomberg.github.io/memray/";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
platforms = platforms.linux;
changelog = "https://github.com/bloomberg/memray/releases/tag/v${version}";
};
}