1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, requests
5, six
6}:
7
8buildPythonPackage rec {
9 version = "0.4.15";
10 pname = "vmprof";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "a2d872a40196404386d1e0d960e97b37c86c3f72a4f9d5a2b5f9ca1adaff5b62";
15 };
16
17 propagatedBuildInputs = [ requests six];
18
19 # No tests included
20 doCheck = false;
21
22 meta = with stdenv.lib; {
23 description = "A vmprof client";
24 license = licenses.mit;
25 homepage = https://vmprof.readthedocs.org/;
26 broken = true;
27 };
28
29}