about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/vmprof/default.nix
blob: a889613140da5fa89bb0d38b1823c731838bda99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv
, buildPythonPackage
, fetchPypi
, requests
, six
}:

buildPythonPackage rec {
  version = "0.4.12";
  pname = "vmprof";

  src = fetchPypi {
    inherit pname version;
    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/;
  };

}