nixpkgs/pkgs/development/python-modules/vmprof/default.nix

29 lines
500 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, requests
, six
}:
buildPythonPackage rec {
2018-11-04 10:35:20 +00:00
version = "0.4.12";
pname = "vmprof";
src = fetchPypi {
inherit pname version;
2018-11-04 10:35:20 +00:00
sha256 = "d6fa566512de1e17c9b585feae6e6997119e0d43c41c8461a9a2e8a8276618a4";
};
propagatedBuildInputs = [ requests six];
# No tests included
doCheck = false;
meta = with stdenv.lib; {
description = "A vmprof client";
license = licenses.mit;
homepage = https://vmprof.readthedocs.org/;
};
}