python3Packages.vmprof: fix build, mark not broken
This commit is contained in:
parent
529c2f192e
commit
dd35d3b655
1 changed files with 6 additions and 3 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue