mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
33 lines
614 B
Nix
33 lines
614 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, colorama
|
|
, libunwind
|
|
, pytz
|
|
, requests
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.4.15";
|
|
pname = "vmprof";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "a2d872a40196404386d1e0d960e97b37c86c3f72a4f9d5a2b5f9ca1adaff5b62";
|
|
};
|
|
|
|
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/";
|
|
};
|
|
}
|