about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-12-07 02:14:49 +0100
committerGitHub <noreply@github.com>2023-12-07 02:14:49 +0100
commitb6f6533a40e83743e1d801715962a1f0832743c5 (patch)
treebb04c2e04b5dbd43a66b7acb216961f248cf1d2d /pkgs/development
parent7f9f00ff9cadaeaef6d5af15994ca8bef43c7c82 (diff)
parentf694323931316a916b4403cc2f32b0987b9a604a (diff)
Merge pull request #272568 from fabaff/memray-bump
memray: 1.10.0 -> 1.11.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/memray/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/memray/default.nix b/pkgs/development/tools/memray/default.nix
index 1a7fb2a91dcc0..8e0b2689984ef 100644
--- a/pkgs/development/tools/memray/default.nix
+++ b/pkgs/development/tools/memray/default.nix
@@ -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}";
   };
 }