From 9fe93b8afdcf3149d19c05bf9077d5c38b4350b7 Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Tue, 27 Dec 2022 22:59:28 +0100 Subject: [PATCH 06/10] gnu: Add python-memory-profiler. * gnu/packages/python-xyz.scm (python-memory-profiler): New variable. diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d98a442fde..2e08e6cf2b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -17613,6 +17613,25 @@ (define-public python-memcached more, possibly remote, memcached servers.") (license license:psfl))) +(define-public python-memory-profiler + (package + (name "python-memory-profiler") + (version "0.61.0") + (source (origin + (method url-fetch) + (uri (pypi-uri "memory_profiler" version)) + (sha256 + (base32 + "1c3743d7dnnsv6caca38s0sgk3p7lf13x83nzf9147aahvbp6nsf")))) + (build-system python-build-system) + (propagated-inputs (list python-psutil)) + (home-page "https://github.com/pythonprofilers/memory_profiler") + (synopsis "Monitor memory usage of a python program") + (description + "This package provides a module for monitoring memory usage of a python +program") + (license license:bsd-3))) + (define-public python-mergedeep (package (name "python-mergedeep") -- 2.38.1