summary refs log tree commit diff
path: root/pkgs/development/python-modules/nose-cprof/default.nix
blob: efafd6333dbb47c383f3491bd89ffe95e6e4fde1 (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
{ stdenv
, buildPythonPackage
, fetchPypi
, nose
}:


buildPythonPackage rec {
  pname = "nose-cprof";
  version = "0.1.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0ayy5mbjly9aa9dkgpz0l06flspnxmnj6wxdl6zr59byrrr8fqhw";
  };

  buildInputs = [ nose ];

  meta = with stdenv.lib; {
    description = "A python nose plugin to profile using cProfile rather than the default Hotshot profiler";
    homepage = https://github.com/msherry/nose-cprof;
    license = licenses.bsd0;
  };

}