pythonPackages.memory_profiler: 0.41 -> 0.54.0

This commit is contained in:
Chris Ostrouchov 2018-10-25 16:26:16 -04:00 committed by Frederik Rietdijk
parent 2f99da4ec8
commit ad43964627

View File

@ -1,19 +1,27 @@
{ stdenv { stdenv
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, psutil
, python
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "memory_profiler"; pname = "memory_profiler";
version = "0.41"; version = "0.54.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "dce6e931c281662a500b142595517d095267216472c2926e5ec8edab89898d10"; sha256 = "d64342a23f32e105f4929b408a8b89d9222c3ce8afbbb3359817555811448d1a";
}; };
propagatedBuildInputs = [ psutil ];
checkPhase = ''
make test PYTHON=${python.interpreter}
'';
# Tests don't import profile # Tests don't import profile
doCheck = false; # doCheck = false;
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A module for monitoring memory usage of a python program"; description = "A module for monitoring memory usage of a python program";