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
1 changed files with 6 additions and 3 deletions

View File

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