pythonPackages.vmprof: init at 0.3.3

This commit is contained in:
Frederik Rietdijk 2016-08-10 11:13:53 +02:00
parent b9e009b5b5
commit 9a13e54cb3

View File

@ -24324,6 +24324,29 @@ in modules // {
}; };
}); });
vmprof = buildPythonPackage rec {
version = "0.3.3";
name = "vmprof-${version}";
# Url using old scheme doesn't seem to work
src = pkgs.fetchurl {
url = "https://files.pythonhosted.org/packages/c3/f3/f039ca77e727c5c2d3e61967a2a5c9ecc0ef6ca235012fd5559febb77cd0/vmprof-0.3.3.tar.gz";
sha256 = "991bc2f1dc824c63e9b399f9e8606deded92a52378d0e449f258807d7556b039";
};
propagatedBuildInputs = with self; [ requests2 six];
# No tests included
doCheck = false;
meta = {
description = "A vmprof client";
license = licenses.mit;
homepage = https://vmprof.readthedocs.org/;
};
};
vultr = buildPythonPackage rec { vultr = buildPythonPackage rec {
version = "0.1.2"; version = "0.1.2";
name = "vultr-${version}"; name = "vultr-${version}";