python3Packages.vmprof: fix build, mark not broken

This commit is contained in:
Jonathan Ringer 2020-06-12 13:53:22 -07:00
parent 529c2f192e
commit dd35d3b655

View file

@ -1,6 +1,9 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, colorama
, libunwind
, pytz
, requests
, six
}:
@ -14,16 +17,16 @@ buildPythonPackage rec {
sha256 = "a2d872a40196404386d1e0d960e97b37c86c3f72a4f9d5a2b5f9ca1adaff5b62";
};
propagatedBuildInputs = [ requests six];
buildInputs = [ libunwind ];
propagatedBuildInputs = [ colorama requests six pytz ];
# No tests included
doCheck = false;
pythonImportsCheck = [ "vmprof" ];
meta = with stdenv.lib; {
description = "A vmprof client";
license = licenses.mit;
homepage = "https://vmprof.readthedocs.org/";
broken = true;
};
}