Fabian Affolter 2023-12-06 23:46:47 +01:00
parent af19e31300
commit f694323931

View File

@ -8,13 +8,13 @@
python3.pkgs.buildPythonApplication rec {
pname = "memray";
version = "1.10.0";
version = "1.11.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "bloomberg";
repo = pname;
rev = "refs/tags/${version}";
repo = "memray";
rev = "refs/tags/v${version}";
hash = "sha256-DaJ1Hhg7q4ckA5feUx0twOsmy28v5aBBCTUAkn43xAo=";
};
@ -63,9 +63,9 @@ python3.pkgs.buildPythonApplication rec {
meta = with lib; {
description = "Memory profiler for Python";
homepage = "https://bloomberg.github.io/memray/";
changelog = "https://github.com/bloomberg/memray/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
platforms = platforms.linux;
changelog = "https://github.com/bloomberg/memray/releases/tag/${version}";
};
}